EditProjectWC.xib 261 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.Cocoa.XIB" version="3.0" toolsVersion="14460.31" targetRuntime="MacOSX.Cocoa" propertyAccessControl="none" useAutolayout="YES" customObjectInstantitationMethod="direct">
  3. <dependencies>
  4. <deployment identifier="macosx"/>
  5. <plugIn identifier="com.apple.InterfaceBuilder.CocoaPlugin" version="14460.31"/>
  6. <plugIn identifier="com.apple.automator.AutomatorPalette" version="14460.31"/>
  7. <capability name="System colors introduced in macOS 10.14" minToolsVersion="10.0"/>
  8. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  9. </dependencies>
  10. <objects>
  11. <customObject id="-2" userLabel="File's Owner" customClass="EditProjectWC">
  12. <connections>
  13. <outlet property="acPages" destination="HhN-Rw-e7c" id="vYk-Gc-4Z5"/>
  14. <outlet property="acXibAdIdArray" destination="4Q0-H4-GCj" id="xBT-Ww-s0M"/>
  15. <outlet property="configsController" destination="xif-Oj-YB3" id="Oud-Oq-Yt4"/>
  16. <outlet property="iconDropView" destination="8hd-4d-yH2" id="qPs-dm-QJh"/>
  17. <outlet property="screenShotDropView" destination="JYg-HL-gMc" id="uht-9d-C72"/>
  18. <outlet property="topDropView" destination="KeX-tH-zLP" id="Ano-ap-QNs"/>
  19. <outlet property="window" destination="F0z-JX-Cv5" id="gIp-Ho-8D9"/>
  20. </connections>
  21. </customObject>
  22. <customObject id="-1" userLabel="First Responder" customClass="FirstResponder"/>
  23. <customObject id="-3" userLabel="Application" customClass="NSObject"/>
  24. <window title="Window" allowsToolTipsWhenApplicationIsInactive="NO" autorecalculatesKeyViewLoop="NO" releasedWhenClosed="NO" animationBehavior="alertPanel" id="F0z-JX-Cv5">
  25. <windowStyleMask key="styleMask" titled="YES" closable="YES" miniaturizable="YES" resizable="YES"/>
  26. <windowPositionMask key="initialPositionMask" leftStrut="YES" rightStrut="YES" topStrut="YES" bottomStrut="YES"/>
  27. <rect key="contentRect" x="196" y="240" width="1416" height="746"/>
  28. <rect key="screenRect" x="0.0" y="0.0" width="1792" height="1097"/>
  29. <view key="contentView" wantsLayer="YES" id="se5-gp-TjO">
  30. <rect key="frame" x="0.0" y="0.0" width="1416" height="746"/>
  31. <autoresizingMask key="autoresizingMask"/>
  32. <subviews>
  33. <tabView fixedFrame="YES" initialItem="zrt-YO-LeJ" translatesAutoresizingMaskIntoConstraints="NO" id="Sgf-CY-tXn">
  34. <rect key="frame" x="13" y="59" width="1210" height="681"/>
  35. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  36. <font key="font" metaFont="system"/>
  37. <tabViewItems>
  38. <tabViewItem label="本地配置" identifier="" id="Y78-j3-UfK">
  39. <view key="view" id="ngD-3C-ACc">
  40. <rect key="frame" x="10" y="33" width="1190" height="635"/>
  41. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  42. <subviews>
  43. <box fixedFrame="YES" title="SDK配置ID" translatesAutoresizingMaskIntoConstraints="NO" id="JxN-RI-AhF">
  44. <rect key="frame" x="6" y="424" width="469" height="208"/>
  45. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  46. <view key="contentView" id="hGU-yO-NX7">
  47. <rect key="frame" x="3" y="3" width="463" height="190"/>
  48. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  49. <subviews>
  50. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Jqn-g8-8o3">
  51. <rect key="frame" x="154" y="154" width="292" height="22"/>
  52. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  53. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="B5U-e1-lDg">
  54. <font key="font" metaFont="system"/>
  55. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  56. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  57. </textFieldCell>
  58. <connections>
  59. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.sdkKeys.facebookKey" id="lew-vG-1Kb">
  60. <dictionary key="options">
  61. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  62. </dictionary>
  63. </binding>
  64. </connections>
  65. </textField>
  66. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZZ0-fR-j3W">
  67. <rect key="frame" x="154" y="124" width="292" height="22"/>
  68. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  69. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="O05-2T-Ph6">
  70. <font key="font" metaFont="system"/>
  71. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  72. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  73. </textFieldCell>
  74. <connections>
  75. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.sdkKeys.umengKey" id="ngh-6x-43c">
  76. <dictionary key="options">
  77. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  78. </dictionary>
  79. </binding>
  80. </connections>
  81. </textField>
  82. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="vWq-cg-7zA">
  83. <rect key="frame" x="154" y="94" width="292" height="22"/>
  84. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  85. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="B1K-Kl-bJJ">
  86. <font key="font" metaFont="system"/>
  87. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  88. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  89. </textFieldCell>
  90. <connections>
  91. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.sdkKeys.chartboostKey" id="Y64-m2-Vaq">
  92. <dictionary key="options">
  93. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  94. </dictionary>
  95. </binding>
  96. </connections>
  97. </textField>
  98. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="iHA-8d-83T">
  99. <rect key="frame" x="154" y="64" width="292" height="22"/>
  100. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  101. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="6xU-ne-XKH">
  102. <font key="font" metaFont="system"/>
  103. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  104. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  105. </textFieldCell>
  106. <connections>
  107. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.sdkKeys.chartboostSecret" id="ghQ-I1-bbf">
  108. <dictionary key="options">
  109. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  110. </dictionary>
  111. </binding>
  112. </connections>
  113. </textField>
  114. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="o6S-SJ-AVW">
  115. <rect key="frame" x="32" y="158" width="111" height="17"/>
  116. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  117. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Faceook App ID*" id="QOG-tY-Luo">
  118. <font key="font" usesAppearanceFont="YES"/>
  119. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  120. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  121. </textFieldCell>
  122. </textField>
  123. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="b1P-zv-hNh">
  124. <rect key="frame" x="60" y="128" width="83" height="17"/>
  125. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  126. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Umeng Key*" id="Qg0-bs-GXx">
  127. <font key="font" usesAppearanceFont="YES"/>
  128. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  129. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  130. </textFieldCell>
  131. </textField>
  132. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oFE-zq-zjh">
  133. <rect key="frame" x="41" y="98" width="102" height="17"/>
  134. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  135. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Chartboost Key" id="ZWV-g7-hqe">
  136. <font key="font" usesAppearanceFont="YES"/>
  137. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  138. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  139. </textFieldCell>
  140. </textField>
  141. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="DsZ-CJ-HYu">
  142. <rect key="frame" x="23" y="68" width="120" height="17"/>
  143. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  144. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Chartboost Secret" id="R2X-fH-78O">
  145. <font key="font" usesAppearanceFont="YES"/>
  146. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  147. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  148. </textFieldCell>
  149. </textField>
  150. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Iyb-jZ-iTV">
  151. <rect key="frame" x="154" y="34" width="292" height="22"/>
  152. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  153. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="5Ay-PZ-ge5">
  154. <font key="font" metaFont="system"/>
  155. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  156. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  157. </textFieldCell>
  158. <connections>
  159. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.sdkKeys.googleAppId" id="ta4-xy-iVL">
  160. <dictionary key="options">
  161. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  162. </dictionary>
  163. </binding>
  164. </connections>
  165. </textField>
  166. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="0UK-2X-t5u">
  167. <rect key="frame" x="48" y="38" width="95" height="17"/>
  168. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  169. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Google App ID" id="eiI-M1-3Jw">
  170. <font key="font" usesAppearanceFont="YES"/>
  171. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  172. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  173. </textFieldCell>
  174. </textField>
  175. </subviews>
  176. </view>
  177. </box>
  178. <box fixedFrame="YES" title="上传资源" translatesAutoresizingMaskIntoConstraints="NO" id="O5m-uv-etd">
  179. <rect key="frame" x="500" y="185" width="660" height="447"/>
  180. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  181. <view key="contentView" id="Dkx-fz-oKm">
  182. <rect key="frame" x="3" y="3" width="654" height="429"/>
  183. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  184. <subviews>
  185. <imageView fixedFrame="YES" tag="213" translatesAutoresizingMaskIntoConstraints="NO" id="8hd-4d-yH2" customClass="DropImageView">
  186. <rect key="frame" x="47" y="190" width="216" height="216"/>
  187. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  188. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="DropImageHere" id="mnF-Zy-p4p"/>
  189. <connections>
  190. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.upload.icon.image" id="qNt-jG-UiJ"/>
  191. </connections>
  192. </imageView>
  193. <imageView fixedFrame="YES" tag="214" translatesAutoresizingMaskIntoConstraints="NO" id="KeX-tH-zLP" customClass="DropImageView">
  194. <rect key="frame" x="20" y="22" width="270" height="135"/>
  195. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  196. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="DropImageHere" id="V0A-vc-RVJ"/>
  197. <connections>
  198. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.upload.top.image" id="NvW-oF-7H5"/>
  199. </connections>
  200. </imageView>
  201. <imageView fixedFrame="YES" tag="215" translatesAutoresizingMaskIntoConstraints="NO" id="JYg-HL-gMc" customClass="DropImageView">
  202. <rect key="frame" x="403" y="31" width="230" height="365"/>
  203. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  204. <imageCell key="cell" refusesFirstResponder="YES" alignment="left" imageScaling="axesIndependently" image="DropImageHere" id="G3I-O2-jzh"/>
  205. </imageView>
  206. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9qn-Ac-UJO">
  207. <rect key="frame" x="139" y="414" width="32" height="17"/>
  208. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  209. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Icon" id="CFO-PL-G1v">
  210. <font key="font" size="13" name="STHeitiSC-Light"/>
  211. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  212. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  213. </textFieldCell>
  214. </textField>
  215. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="SuX-6a-La6">
  216. <rect key="frame" x="142" y="165" width="27" height="17"/>
  217. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  218. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Top" id="lPZ-Kj-xiZ">
  219. <font key="font" size="13" name="STHeitiSC-Light"/>
  220. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  221. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  222. </textFieldCell>
  223. </textField>
  224. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3KV-Gs-usd">
  225. <rect key="frame" x="496" y="412" width="44" height="17"/>
  226. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  227. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="宣传图" id="NPM-Ao-pnP">
  228. <font key="font" size="13" name="STHeitiSC-Light"/>
  229. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  230. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  231. </textFieldCell>
  232. </textField>
  233. <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="102" horizontalPageScroll="10" verticalLineScroll="102" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TNA-k4-4XI">
  234. <rect key="frame" x="398" y="30" width="240" height="366"/>
  235. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  236. <clipView key="contentView" ambiguous="YES" id="jSR-t3-fTm">
  237. <rect key="frame" x="1" y="0.0" width="238" height="365"/>
  238. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  239. <subviews>
  240. <tableView verticalHuggingPriority="750" ambiguous="YES" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnReordering="NO" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" rowHeight="100" headerView="AdL-m2-0s3" id="uTo-q0-ERE">
  241. <rect key="frame" x="0.0" y="0.0" width="238" height="342"/>
  242. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  243. <size key="intercellSpacing" width="3" height="2"/>
  244. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  245. <tableViewGridLines key="gridStyleMask" vertical="YES" horizontal="YES"/>
  246. <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
  247. <tableColumns>
  248. <tableColumn width="234" minWidth="40" maxWidth="1000" id="dtr-mq-xcN">
  249. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="宣传图">
  250. <font key="font" metaFont="message" size="11"/>
  251. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  252. <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
  253. </tableHeaderCell>
  254. <imageCell key="dataCell" refusesFirstResponder="YES" alignment="left" imageScaling="proportionallyDown" id="oTS-mX-QBf"/>
  255. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  256. <connections>
  257. <binding destination="kRX-RV-Jsk" name="value" keyPath="arrangedObjects.image" id="kRl-v0-KPA"/>
  258. </connections>
  259. </tableColumn>
  260. </tableColumns>
  261. </tableView>
  262. </subviews>
  263. </clipView>
  264. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="oHB-9G-50c">
  265. <rect key="frame" x="1" y="-16" width="0.0" height="16"/>
  266. <autoresizingMask key="autoresizingMask"/>
  267. </scroller>
  268. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="NO" id="GTR-Ur-FcX">
  269. <rect key="frame" x="-15" y="0.0" width="16" height="0.0"/>
  270. <autoresizingMask key="autoresizingMask"/>
  271. </scroller>
  272. <tableHeaderView key="headerView" id="AdL-m2-0s3">
  273. <rect key="frame" x="0.0" y="0.0" width="238" height="23"/>
  274. <autoresizingMask key="autoresizingMask"/>
  275. </tableHeaderView>
  276. </scrollView>
  277. </subviews>
  278. </view>
  279. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  280. </box>
  281. <box fixedFrame="YES" title="翻译" translatesAutoresizingMaskIntoConstraints="NO" id="UfH-c8-ugM">
  282. <rect key="frame" x="6" y="123" width="469" height="274"/>
  283. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  284. <view key="contentView" id="bB0-5C-oCA">
  285. <rect key="frame" x="3" y="3" width="463" height="256"/>
  286. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  287. <subviews>
  288. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ena-YJ-JAS">
  289. <rect key="frame" x="164" y="221" width="223" height="22"/>
  290. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  291. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="EYe-x7-m6Y">
  292. <font key="font" metaFont="system"/>
  293. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  294. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  295. </textFieldCell>
  296. <connections>
  297. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.translate.appName" id="Xpu-Ds-9ep">
  298. <dictionary key="options">
  299. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  300. </dictionary>
  301. </binding>
  302. </connections>
  303. </textField>
  304. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="MSE-oR-PTd">
  305. <rect key="frame" x="164" y="191" width="223" height="22"/>
  306. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  307. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="Ia6-V3-WdZ">
  308. <font key="font" metaFont="system"/>
  309. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  310. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  311. </textFieldCell>
  312. <connections>
  313. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.translate.shortDesc" id="Jw6-PM-EtD">
  314. <dictionary key="options">
  315. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  316. </dictionary>
  317. </binding>
  318. </connections>
  319. </textField>
  320. <scrollView fixedFrame="YES" horizontalLineScroll="10" horizontalPageScroll="10" verticalLineScroll="10" verticalPageScroll="10" hasHorizontalScroller="NO" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EXU-ia-NKD">
  321. <rect key="frame" x="164" y="69" width="223" height="115"/>
  322. <autoresizingMask key="autoresizingMask"/>
  323. <clipView key="contentView" ambiguous="YES" drawsBackground="NO" id="yQz-FR-bbe">
  324. <rect key="frame" x="1" y="1" width="206" height="113"/>
  325. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  326. <subviews>
  327. <textView ambiguous="YES" importsGraphics="NO" richText="NO" verticallyResizable="YES" usesFontPanel="YES" findStyle="panel" continuousSpellChecking="YES" allowsUndo="YES" usesRuler="YES" allowsNonContiguousLayout="YES" quoteSubstitution="YES" dashSubstitution="YES" smartInsertDelete="YES" id="AxT-zj-oIG">
  328. <rect key="frame" x="0.0" y="0.0" width="206" height="113"/>
  329. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  330. <color key="textColor" name="textColor" catalog="System" colorSpace="catalog"/>
  331. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  332. <size key="minSize" width="206" height="113"/>
  333. <size key="maxSize" width="783" height="10000000"/>
  334. <color key="insertionPointColor" name="textColor" catalog="System" colorSpace="catalog"/>
  335. <connections>
  336. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.translate.desc" id="YbJ-xR-rGX">
  337. <dictionary key="options">
  338. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  339. </dictionary>
  340. </binding>
  341. </connections>
  342. </textView>
  343. </subviews>
  344. </clipView>
  345. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="YES" id="2sW-wr-Cf4">
  346. <rect key="frame" x="-100" y="-100" width="87" height="18"/>
  347. <autoresizingMask key="autoresizingMask"/>
  348. </scroller>
  349. <scroller key="verticalScroller" wantsLayer="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="NO" id="PKA-Dt-yIq">
  350. <rect key="frame" x="207" y="1" width="15" height="113"/>
  351. <autoresizingMask key="autoresizingMask"/>
  352. </scroller>
  353. </scrollView>
  354. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Xa4-2v-ShW">
  355. <rect key="frame" x="394" y="223" width="52" height="17"/>
  356. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  357. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" title="字数" id="rzW-Wb-yTA">
  358. <font key="font" usesAppearanceFont="YES"/>
  359. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  360. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  361. </textFieldCell>
  362. <connections>
  363. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.translate.appName.length" id="3bp-5k-DYe">
  364. <dictionary key="options">
  365. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  366. </dictionary>
  367. </binding>
  368. </connections>
  369. </textField>
  370. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="SYh-NA-ix7">
  371. <rect key="frame" x="394" y="192" width="52" height="20"/>
  372. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  373. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" title="字数" id="Vqn-FR-PCO">
  374. <font key="font" usesAppearanceFont="YES"/>
  375. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  376. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  377. </textFieldCell>
  378. <connections>
  379. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.translate.shortDesc.length" id="50c-PF-mDl">
  380. <dictionary key="options">
  381. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  382. </dictionary>
  383. </binding>
  384. </connections>
  385. </textField>
  386. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZQn-j8-bIE">
  387. <rect key="frame" x="394" y="166" width="53" height="17"/>
  388. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  389. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="left" title="字数" id="4jz-3G-wyM">
  390. <font key="font" usesAppearanceFont="YES"/>
  391. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  392. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  393. </textFieldCell>
  394. <connections>
  395. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.local.translate.desc.length" id="zGM-vE-u3g">
  396. <dictionary key="options">
  397. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  398. </dictionary>
  399. </binding>
  400. </connections>
  401. </textField>
  402. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="XcH-P2-pT6">
  403. <rect key="frame" x="199" y="10" width="206" height="36"/>
  404. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  405. <buttonCell key="cell" type="square" title="翻译" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="8Cc-Xg-ev1">
  406. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  407. <font key="font" usesAppearanceFont="YES"/>
  408. </buttonCell>
  409. <connections>
  410. <action selector="onTranslateBtn:" target="-2" id="N68-6Z-y86"/>
  411. <binding destination="FQm-5F-kMo" name="hidden" keyPath="selection.isTranslateFinished" id="9gW-sX-2j4"/>
  412. </connections>
  413. </button>
  414. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9aA-h5-wcK">
  415. <rect key="frame" x="35" y="17" width="167" height="27"/>
  416. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  417. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="翻译已完成" id="Vfm-bx-XqM">
  418. <font key="font" size="24" name=".PingFangSC-Regular"/>
  419. <color key="textColor" name="systemGreenColor" catalog="System" colorSpace="catalog"/>
  420. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  421. </textFieldCell>
  422. <connections>
  423. <binding destination="FQm-5F-kMo" name="hidden" keyPath="selection.isNotTranslateFinished" id="lj8-mq-noU"/>
  424. </connections>
  425. </textField>
  426. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="fRe-2B-TEF">
  427. <rect key="frame" x="88" y="225" width="64" height="17"/>
  428. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  429. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="游戏名称*" id="SOy-qJ-6ta">
  430. <font key="font" usesAppearanceFont="YES"/>
  431. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  432. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  433. </textFieldCell>
  434. </textField>
  435. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="eSG-p1-miJ">
  436. <rect key="frame" x="28" y="195" width="124" height="17"/>
  437. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  438. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="简短描述(&lt;80字符)*" id="tFM-hM-gVT">
  439. <font key="font" usesAppearanceFont="YES"/>
  440. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  441. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  442. </textFieldCell>
  443. </textField>
  444. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="HEB-Eh-tIx">
  445. <rect key="frame" x="88" y="165" width="64" height="17"/>
  446. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  447. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="详细描述*" id="XWz-zd-nfz">
  448. <font key="font" usesAppearanceFont="YES"/>
  449. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  450. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  451. </textFieldCell>
  452. </textField>
  453. </subviews>
  454. </view>
  455. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  456. </box>
  457. </subviews>
  458. </view>
  459. </tabViewItem>
  460. <tabViewItem label="广告网络配置" identifier="" id="zrt-YO-LeJ">
  461. <view key="view" ambiguous="YES" id="Owu-VQ-xEB">
  462. <rect key="frame" x="10" y="33" width="1190" height="635"/>
  463. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  464. <subviews>
  465. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hzL-6g-EiN">
  466. <rect key="frame" x="0.0" y="0.0" width="1190" height="635"/>
  467. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  468. <subviews>
  469. <box fixedFrame="YES" title="广告全局配置" translatesAutoresizingMaskIntoConstraints="NO" id="yyB-Im-6w8">
  470. <rect key="frame" x="891" y="519" width="282" height="83"/>
  471. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  472. <view key="contentView" id="BVs-3a-fZS">
  473. <rect key="frame" x="3" y="3" width="276" height="65"/>
  474. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  475. <subviews>
  476. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="99M-Wt-TTm">
  477. <rect key="frame" x="18" y="40" width="164" height="17"/>
  478. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  479. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="两次广告展示间隔(秒):" id="kab-TO-QHW">
  480. <font key="font" usesAppearanceFont="YES"/>
  481. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  482. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  483. </textFieldCell>
  484. </textField>
  485. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2qk-xU-n9V">
  486. <rect key="frame" x="194" y="37" width="58" height="22"/>
  487. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  488. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="YNQ-Jb-YkF">
  489. <font key="font" metaFont="system"/>
  490. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  491. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  492. </textFieldCell>
  493. <connections>
  494. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.global.showGap" id="aOI-Mw-Rai">
  495. <dictionary key="options">
  496. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  497. </dictionary>
  498. </binding>
  499. </connections>
  500. </textField>
  501. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="t0x-d9-mQ9">
  502. <rect key="frame" x="6" y="14" width="176" height="17"/>
  503. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  504. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Banner刷新时间(秒):" id="qx4-5L-RNs">
  505. <font key="font" metaFont="system"/>
  506. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  507. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  508. </textFieldCell>
  509. </textField>
  510. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="iNU-fF-x2n">
  511. <rect key="frame" x="150" y="-6" width="100" height="17"/>
  512. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  513. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="(不能少于30 默认50)" id="F8v-vf-R8S">
  514. <font key="font" metaFont="system" size="10"/>
  515. <color key="textColor" name="controlAccentColor" catalog="System" colorSpace="catalog"/>
  516. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  517. </textFieldCell>
  518. </textField>
  519. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="NXR-bw-rz0">
  520. <rect key="frame" x="194" y="10" width="58" height="22"/>
  521. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  522. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="B4N-WD-X9P">
  523. <font key="font" metaFont="system"/>
  524. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  525. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  526. </textFieldCell>
  527. <connections>
  528. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.global.bannerCheckInterval" id="IZp-qM-V8c">
  529. <dictionary key="options">
  530. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  531. </dictionary>
  532. </binding>
  533. </connections>
  534. </textField>
  535. </subviews>
  536. </view>
  537. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  538. </box>
  539. <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cfP-bU-EBa">
  540. <rect key="frame" x="20" y="40" width="115" height="185"/>
  541. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  542. <clipView key="contentView" ambiguous="YES" id="cWm-XT-HIC">
  543. <rect key="frame" x="1" y="0.0" width="113" height="184"/>
  544. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  545. <subviews>
  546. <tableView verticalHuggingPriority="750" ambiguous="YES" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" headerView="qW9-83-KQ6" viewBased="YES" id="Hkz-u1-EU0">
  547. <rect key="frame" x="0.0" y="0.0" width="113" height="161"/>
  548. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  549. <size key="intercellSpacing" width="3" height="2"/>
  550. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  551. <tableViewGridLines key="gridStyleMask" vertical="YES" horizontal="YES"/>
  552. <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
  553. <tableColumns>
  554. <tableColumn editable="NO" width="110" minWidth="40" maxWidth="1000" id="Git-cT-Czh">
  555. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="广告分类">
  556. <font key="font" metaFont="message" size="11"/>
  557. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  558. <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
  559. </tableHeaderCell>
  560. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="SDc-Qu-0Sn">
  561. <font key="font" metaFont="system"/>
  562. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  563. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  564. </textFieldCell>
  565. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  566. <connections>
  567. <binding destination="Amt-FH-qGn" name="value" keyPath="arrangedObjects.title" id="FE5-Jj-bZU">
  568. <dictionary key="options">
  569. <bool key="NSConditionallySetsEditable" value="YES"/>
  570. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  571. </dictionary>
  572. </binding>
  573. </connections>
  574. </tableColumn>
  575. </tableColumns>
  576. </tableView>
  577. </subviews>
  578. </clipView>
  579. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="NxS-PC-27g">
  580. <rect key="frame" x="1" y="7" width="0.0" height="16"/>
  581. <autoresizingMask key="autoresizingMask"/>
  582. </scroller>
  583. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="tEL-mA-qh9">
  584. <rect key="frame" x="-14" y="15" width="15" height="0.0"/>
  585. <autoresizingMask key="autoresizingMask"/>
  586. </scroller>
  587. <tableHeaderView key="headerView" id="qW9-83-KQ6">
  588. <rect key="frame" x="0.0" y="0.0" width="113" height="23"/>
  589. <autoresizingMask key="autoresizingMask"/>
  590. </tableHeaderView>
  591. </scrollView>
  592. <box fixedFrame="YES" title="Page控制条件" translatesAutoresizingMaskIntoConstraints="NO" id="83l-TI-yp9">
  593. <rect key="frame" x="150" y="-4" width="387" height="243"/>
  594. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  595. <view key="contentView" id="taC-6r-uyl">
  596. <rect key="frame" x="3" y="3" width="381" height="225"/>
  597. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  598. <subviews>
  599. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2Wb-AX-ip4">
  600. <rect key="frame" x="109" y="202" width="84" height="17"/>
  601. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  602. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="最小关卡数:" id="kzl-eK-lzz">
  603. <font key="font" usesAppearanceFont="YES"/>
  604. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  605. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  606. </textFieldCell>
  607. </textField>
  608. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="CyJ-Yp-hx3">
  609. <rect key="frame" x="205" y="199" width="58" height="22"/>
  610. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  611. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="ySg-qm-WH3">
  612. <font key="font" metaFont="system"/>
  613. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  614. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  615. </textFieldCell>
  616. <connections>
  617. <binding destination="HhN-Rw-e7c" name="value" keyPath="selection.condition.minUserMaxStage" id="hmh-Ly-AeL">
  618. <dictionary key="options">
  619. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  620. </dictionary>
  621. </binding>
  622. </connections>
  623. </textField>
  624. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="UxN-fR-KZy">
  625. <rect key="frame" x="122" y="175" width="71" height="17"/>
  626. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  627. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="登录天数:" id="Eqo-GA-ean">
  628. <font key="font" usesAppearanceFont="YES"/>
  629. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  630. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  631. </textFieldCell>
  632. </textField>
  633. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="dWd-Xx-wBq">
  634. <rect key="frame" x="205" y="172" width="58" height="22"/>
  635. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  636. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="nur-rd-fYH">
  637. <font key="font" metaFont="system"/>
  638. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  639. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  640. </textFieldCell>
  641. <connections>
  642. <binding destination="HhN-Rw-e7c" name="value" keyPath="selection.condition.minLoginDays" id="vq9-To-yy0">
  643. <dictionary key="options">
  644. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  645. </dictionary>
  646. </binding>
  647. </connections>
  648. </textField>
  649. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="6zr-jy-YoN">
  650. <rect key="frame" x="60" y="148" width="133" height="17"/>
  651. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  652. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="广告延时min(秒):" id="uLo-c3-m8b">
  653. <font key="font" usesAppearanceFont="YES"/>
  654. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  655. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  656. </textFieldCell>
  657. </textField>
  658. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="aWX-bl-qbj">
  659. <rect key="frame" x="205" y="145" width="58" height="22"/>
  660. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  661. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="NUd-qH-T6k">
  662. <font key="font" metaFont="system"/>
  663. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  664. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  665. </textFieldCell>
  666. <connections>
  667. <binding destination="HhN-Rw-e7c" name="value" keyPath="selection.condition.minAdShowDelayAfterCall" id="Wc7-Vu-Vag">
  668. <dictionary key="options">
  669. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  670. </dictionary>
  671. </binding>
  672. </connections>
  673. </textField>
  674. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="jce-4h-7f1">
  675. <rect key="frame" x="57" y="121" width="136" height="17"/>
  676. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  677. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="广告延时max(秒):" id="lSl-XS-ShY">
  678. <font key="font" usesAppearanceFont="YES"/>
  679. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  680. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  681. </textFieldCell>
  682. </textField>
  683. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="gzA-Ld-oJb">
  684. <rect key="frame" x="205" y="118" width="58" height="22"/>
  685. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  686. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="gz3-TL-D3M">
  687. <font key="font" metaFont="system"/>
  688. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  689. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  690. </textFieldCell>
  691. <connections>
  692. <binding destination="HhN-Rw-e7c" name="value" keyPath="selection.condition.maxAdShowDelayAfterCall" id="xmU-hr-Sd1">
  693. <dictionary key="options">
  694. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  695. </dictionary>
  696. </binding>
  697. </connections>
  698. </textField>
  699. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tra-GJ-foN">
  700. <rect key="frame" x="75" y="94" width="118" height="17"/>
  701. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  702. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="黑屏概率(0-100):" id="eRW-U2-F71">
  703. <font key="font" usesAppearanceFont="YES"/>
  704. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  705. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  706. </textFieldCell>
  707. </textField>
  708. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="pf8-zk-8IE">
  709. <rect key="frame" x="205" y="91" width="58" height="22"/>
  710. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  711. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="1q7-Ef-hgz">
  712. <font key="font" metaFont="system"/>
  713. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  714. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  715. </textFieldCell>
  716. <connections>
  717. <binding destination="HhN-Rw-e7c" name="value" keyPath="selection.condition.alphaScreenRate" id="40c-Gy-tVB">
  718. <dictionary key="options">
  719. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  720. </dictionary>
  721. </binding>
  722. </connections>
  723. </textField>
  724. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mlH-xf-E0n">
  725. <rect key="frame" x="43" y="67" width="150" height="17"/>
  726. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  727. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="黑屏持续时间(毫秒):" id="shT-Bh-oEs">
  728. <font key="font" usesAppearanceFont="YES"/>
  729. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  730. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  731. </textFieldCell>
  732. </textField>
  733. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2IG-1s-lRc">
  734. <rect key="frame" x="205" y="64" width="58" height="22"/>
  735. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  736. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="0dD-UA-BPw">
  737. <font key="font" metaFont="system"/>
  738. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  739. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  740. </textFieldCell>
  741. <connections>
  742. <binding destination="HhN-Rw-e7c" name="value" keyPath="selection.condition.alphaScreenDuration" id="27I-mL-tsV">
  743. <dictionary key="options">
  744. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  745. </dictionary>
  746. </binding>
  747. </connections>
  748. </textField>
  749. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="whg-Z2-lkG">
  750. <rect key="frame" x="3" y="40" width="190" height="17"/>
  751. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  752. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="两次广告展示最小间隔(秒):" id="3aa-mA-Y9s">
  753. <font key="font" usesAppearanceFont="YES"/>
  754. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  755. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  756. </textFieldCell>
  757. </textField>
  758. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cZQ-Hd-ydY">
  759. <rect key="frame" x="205" y="37" width="58" height="22"/>
  760. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  761. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="Yvg-Zd-UfC">
  762. <font key="font" metaFont="system"/>
  763. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  764. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  765. </textFieldCell>
  766. <connections>
  767. <binding destination="HhN-Rw-e7c" name="value" keyPath="selection.condition.minShowGap" id="M17-EQ-5Uv">
  768. <dictionary key="options">
  769. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  770. </dictionary>
  771. </binding>
  772. </connections>
  773. </textField>
  774. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="16W-Hy-NuI">
  775. <rect key="frame" x="25" y="13" width="168" height="17"/>
  776. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  777. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Banner自刷新时间(秒):" id="hMA-qo-ctB">
  778. <font key="font" usesAppearanceFont="YES"/>
  779. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  780. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  781. </textFieldCell>
  782. <connections>
  783. <binding destination="Amt-FH-qGn" name="hidden" keyPath="selection.isBannerConditionsHidden" id="4IG-ns-Em4"/>
  784. </connections>
  785. </textField>
  786. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="YdP-ug-NBZ">
  787. <rect key="frame" x="205" y="10" width="58" height="22"/>
  788. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  789. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="6KS-x5-fYA">
  790. <font key="font" metaFont="system"/>
  791. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  792. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  793. </textFieldCell>
  794. <connections>
  795. <binding destination="HhN-Rw-e7c" name="value" keyPath="selection.condition.bannerSelfRefreshInterval" id="1ff-oz-RS2">
  796. <dictionary key="options">
  797. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  798. </dictionary>
  799. </binding>
  800. <binding destination="Amt-FH-qGn" name="hidden" keyPath="selection.isBannerConditionsHidden" id="d0R-au-eMk"/>
  801. </connections>
  802. </textField>
  803. <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="t2U-1f-fsG">
  804. <rect key="frame" x="279" y="10" width="97" height="157"/>
  805. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  806. <clipView key="contentView" ambiguous="YES" id="6A0-ko-W6J">
  807. <rect key="frame" x="1" y="0.0" width="95" height="156"/>
  808. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  809. <subviews>
  810. <tableView verticalHuggingPriority="750" ambiguous="YES" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" headerView="9mR-ci-2Zh" id="yg1-ei-vYI">
  811. <rect key="frame" x="0.0" y="0.0" width="95" height="133"/>
  812. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  813. <size key="intercellSpacing" width="3" height="2"/>
  814. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  815. <tableViewGridLines key="gridStyleMask" vertical="YES" horizontal="YES"/>
  816. <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
  817. <tableColumns>
  818. <tableColumn width="92" minWidth="40" maxWidth="1000" id="LAS-Sg-Xsg">
  819. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="类型">
  820. <font key="font" metaFont="message" size="11"/>
  821. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  822. <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
  823. </tableHeaderCell>
  824. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="Fx8-aa-SSE">
  825. <font key="font" metaFont="system"/>
  826. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  827. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  828. </textFieldCell>
  829. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  830. <connections>
  831. <binding destination="HhN-Rw-e7c" name="value" keyPath="arrangedObjects.pageId" id="rm0-aM-DKa"/>
  832. </connections>
  833. </tableColumn>
  834. </tableColumns>
  835. </tableView>
  836. </subviews>
  837. </clipView>
  838. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="m4g-mv-D1l">
  839. <rect key="frame" x="1" y="7" width="0.0" height="16"/>
  840. <autoresizingMask key="autoresizingMask"/>
  841. </scroller>
  842. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" doubleValue="1" horizontal="NO" id="aPy-nG-Slc">
  843. <rect key="frame" x="-15" y="23" width="16" height="0.0"/>
  844. <autoresizingMask key="autoresizingMask"/>
  845. </scroller>
  846. <tableHeaderView key="headerView" id="9mR-ci-2Zh">
  847. <rect key="frame" x="0.0" y="0.0" width="95" height="23"/>
  848. <autoresizingMask key="autoresizingMask"/>
  849. </tableHeaderView>
  850. </scrollView>
  851. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="U4M-Wl-vtf">
  852. <rect key="frame" x="279" y="197" width="45" height="25"/>
  853. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  854. <buttonCell key="cell" type="square" title="+" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="1rq-We-wDd">
  855. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  856. <font key="font" metaFont="system"/>
  857. </buttonCell>
  858. <connections>
  859. <action selector="add:" target="HhN-Rw-e7c" id="OQQ-Qe-E6Q"/>
  860. <binding destination="Amt-FH-qGn" name="hidden" keyPath="selection.isAddBtnUsable" id="tYP-tt-jWl"/>
  861. </connections>
  862. </button>
  863. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="JVR-gd-U5b">
  864. <rect key="frame" x="331" y="197" width="45" height="25"/>
  865. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  866. <buttonCell key="cell" type="square" title="-" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="cou-rV-7CX">
  867. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  868. <font key="font" metaFont="system"/>
  869. </buttonCell>
  870. <connections>
  871. <action selector="remove:" target="HhN-Rw-e7c" id="OQO-w1-CUx"/>
  872. <binding destination="Amt-FH-qGn" name="hidden" keyPath="selection.isAddBtnUsable" id="rHs-of-66a"/>
  873. </connections>
  874. </button>
  875. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="sxa-yH-9NU">
  876. <rect key="frame" x="292" y="170" width="71" height="25"/>
  877. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  878. <buttonCell key="cell" type="square" title="拷贝" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="IIW-OS-fQf">
  879. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  880. <font key="font" metaFont="system"/>
  881. </buttonCell>
  882. <connections>
  883. <action selector="onAdPageCopy:" target="-2" id="nuo-UH-1rX"/>
  884. <binding destination="Amt-FH-qGn" name="hidden" keyPath="selection.isAddBtnUsable" id="qYs-Dk-YLj"/>
  885. </connections>
  886. </button>
  887. </subviews>
  888. </view>
  889. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  890. </box>
  891. <box fixedFrame="YES" title="广告控制条件" translatesAutoresizingMaskIntoConstraints="NO" id="bwD-MT-Uc5">
  892. <rect key="frame" x="546" y="-4" width="634" height="251"/>
  893. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  894. <view key="contentView" id="7YA-58-k96">
  895. <rect key="frame" x="3" y="3" width="628" height="233"/>
  896. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  897. <subviews>
  898. <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Lrs-wo-h2d">
  899. <rect key="frame" x="105" y="108" width="511" height="119"/>
  900. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  901. <clipView key="contentView" ambiguous="YES" id="4mh-8z-IGh">
  902. <rect key="frame" x="1" y="0.0" width="509" height="118"/>
  903. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  904. <subviews>
  905. <tableView verticalHuggingPriority="750" ambiguous="YES" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" headerView="edj-pZ-8iP" id="bdE-Gt-BB9">
  906. <rect key="frame" x="0.0" y="0.0" width="509" height="95"/>
  907. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  908. <size key="intercellSpacing" width="3" height="2"/>
  909. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  910. <tableViewGridLines key="gridStyleMask" vertical="YES" horizontal="YES"/>
  911. <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
  912. <tableColumns>
  913. <tableColumn width="58" minWidth="40" maxWidth="1000" id="NSY-wN-2vw">
  914. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" title="优先级">
  915. <font key="font" metaFont="message" size="11"/>
  916. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  917. <color key="backgroundColor" name="headerColor" catalog="System" colorSpace="catalog"/>
  918. </tableHeaderCell>
  919. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" title="Text Cell" id="udQ-V0-0o1">
  920. <font key="font" metaFont="system"/>
  921. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  922. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  923. </textFieldCell>
  924. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  925. <connections>
  926. <binding destination="xif-Oj-YB3" name="value" keyPath="arrangedObjects.priority" id="vmS-nV-jWS">
  927. <dictionary key="options">
  928. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  929. </dictionary>
  930. </binding>
  931. </connections>
  932. </tableColumn>
  933. <tableColumn width="163.5" minWidth="10" maxWidth="3.4028234663852886e+38" id="fYH-OE-lfN">
  934. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="ID索引">
  935. <font key="font" metaFont="message" size="11"/>
  936. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  937. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  938. </tableHeaderCell>
  939. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="I1z-VI-Pyb">
  940. <font key="font" metaFont="system"/>
  941. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  942. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  943. </textFieldCell>
  944. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  945. <connections>
  946. <binding destination="xif-Oj-YB3" name="value" keyPath="arrangedObjects.idIndex" id="WXM-0Y-Wos">
  947. <dictionary key="options">
  948. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  949. </dictionary>
  950. </binding>
  951. </connections>
  952. </tableColumn>
  953. <tableColumn editable="NO" width="277.5" minWidth="10" maxWidth="3.4028234663852886e+38" id="zrs-q6-GoX">
  954. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="广告名字">
  955. <font key="font" metaFont="message" size="11"/>
  956. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  957. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  958. </tableHeaderCell>
  959. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="36L-Zc-Ncl">
  960. <font key="font" metaFont="system"/>
  961. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  962. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  963. </textFieldCell>
  964. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  965. <connections>
  966. <binding destination="xif-Oj-YB3" name="value" keyPath="arrangedObjects.adName" id="e7S-UF-6mh">
  967. <dictionary key="options">
  968. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  969. </dictionary>
  970. </binding>
  971. </connections>
  972. </tableColumn>
  973. </tableColumns>
  974. </tableView>
  975. </subviews>
  976. </clipView>
  977. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="FWa-ft-gfw">
  978. <rect key="frame" x="1" y="7" width="0.0" height="16"/>
  979. <autoresizingMask key="autoresizingMask"/>
  980. </scroller>
  981. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="gfh-eo-VQc">
  982. <rect key="frame" x="-15" y="23" width="16" height="0.0"/>
  983. <autoresizingMask key="autoresizingMask"/>
  984. </scroller>
  985. <tableHeaderView key="headerView" id="edj-pZ-8iP">
  986. <rect key="frame" x="0.0" y="0.0" width="509" height="23"/>
  987. <autoresizingMask key="autoresizingMask"/>
  988. </tableHeaderView>
  989. </scrollView>
  990. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4F8-Xt-2cK">
  991. <rect key="frame" x="6" y="151" width="92" height="25"/>
  992. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  993. <buttonCell key="cell" type="square" title="-" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="dja-SN-aR3">
  994. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  995. <font key="font" metaFont="system"/>
  996. </buttonCell>
  997. <connections>
  998. <action selector="remove:" target="xif-Oj-YB3" id="aH9-8d-nlZ"/>
  999. </connections>
  1000. </button>
  1001. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lem-1w-PiN">
  1002. <rect key="frame" x="6" y="189" width="91" height="25"/>
  1003. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1004. <buttonCell key="cell" type="square" title="+" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="JjV-BF-4WI">
  1005. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1006. <font key="font" metaFont="system"/>
  1007. </buttonCell>
  1008. <connections>
  1009. <action selector="add:" target="xif-Oj-YB3" id="A3G-sE-Ufd"/>
  1010. </connections>
  1011. </button>
  1012. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tD3-UH-tSz">
  1013. <rect key="frame" x="64" y="86" width="84" height="17"/>
  1014. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1015. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="最小关卡数:" id="bdB-Zl-Uhj">
  1016. <font key="font" usesAppearanceFont="YES"/>
  1017. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1018. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1019. </textFieldCell>
  1020. </textField>
  1021. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="lmM-G7-f1M">
  1022. <rect key="frame" x="160" y="83" width="58" height="22"/>
  1023. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1024. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="ipf-RK-dHs">
  1025. <font key="font" metaFont="system"/>
  1026. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1027. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1028. </textFieldCell>
  1029. <connections>
  1030. <binding destination="xif-Oj-YB3" name="value" keyPath="selection.condition.minUserMaxStage" id="nFd-dM-lqa">
  1031. <dictionary key="options">
  1032. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1033. </dictionary>
  1034. </binding>
  1035. </connections>
  1036. </textField>
  1037. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="HJT-3u-kCw">
  1038. <rect key="frame" x="77" y="58" width="71" height="17"/>
  1039. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1040. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="登录天数:" id="LoF-gA-KfI">
  1041. <font key="font" usesAppearanceFont="YES"/>
  1042. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1043. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1044. </textFieldCell>
  1045. </textField>
  1046. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4qc-D7-wER">
  1047. <rect key="frame" x="160" y="55" width="58" height="22"/>
  1048. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1049. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="p6A-S0-zLO">
  1050. <font key="font" metaFont="system"/>
  1051. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1052. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1053. </textFieldCell>
  1054. <connections>
  1055. <binding destination="xif-Oj-YB3" name="value" keyPath="selection.condition.minLoginDays" id="q9v-Vf-qkD">
  1056. <dictionary key="options">
  1057. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1058. </dictionary>
  1059. </binding>
  1060. </connections>
  1061. </textField>
  1062. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ubs-2p-2D8">
  1063. <rect key="frame" x="15" y="30" width="133" height="17"/>
  1064. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1065. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="广告延时min(秒):" id="mhN-oC-HGD">
  1066. <font key="font" usesAppearanceFont="YES"/>
  1067. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1068. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1069. </textFieldCell>
  1070. </textField>
  1071. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="t3m-mx-Yuu">
  1072. <rect key="frame" x="160" y="27" width="58" height="22"/>
  1073. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1074. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="NDr-pv-ReZ">
  1075. <font key="font" metaFont="system"/>
  1076. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1077. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1078. </textFieldCell>
  1079. <connections>
  1080. <binding destination="xif-Oj-YB3" name="value" keyPath="selection.condition.minAdShowDelayAfterCall" id="2GE-Go-vtU">
  1081. <dictionary key="options">
  1082. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1083. </dictionary>
  1084. </binding>
  1085. </connections>
  1086. </textField>
  1087. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="YHN-ea-HbF">
  1088. <rect key="frame" x="12" y="4" width="136" height="17"/>
  1089. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1090. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="广告延时max(秒):" id="fvc-aU-2LF">
  1091. <font key="font" usesAppearanceFont="YES"/>
  1092. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1093. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1094. </textFieldCell>
  1095. </textField>
  1096. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="DmB-eZ-TIz">
  1097. <rect key="frame" x="160" y="1" width="58" height="22"/>
  1098. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1099. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="g60-0e-rwX">
  1100. <font key="font" metaFont="system"/>
  1101. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1102. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1103. </textFieldCell>
  1104. <connections>
  1105. <binding destination="xif-Oj-YB3" name="value" keyPath="selection.condition.maxAdShowDelayAfterCall" id="rSb-UO-AJ6">
  1106. <dictionary key="options">
  1107. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1108. </dictionary>
  1109. </binding>
  1110. </connections>
  1111. </textField>
  1112. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Dd3-3Q-bbh">
  1113. <rect key="frame" x="337" y="88" width="118" height="17"/>
  1114. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1115. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="黑屏概率(0-100):" id="mZu-bW-myz">
  1116. <font key="font" usesAppearanceFont="YES"/>
  1117. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1118. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1119. </textFieldCell>
  1120. </textField>
  1121. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Q6S-9j-e53">
  1122. <rect key="frame" x="467" y="85" width="58" height="22"/>
  1123. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1124. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="rc2-NB-3oo">
  1125. <font key="font" metaFont="system"/>
  1126. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1127. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1128. </textFieldCell>
  1129. <connections>
  1130. <binding destination="xif-Oj-YB3" name="value" keyPath="selection.condition.alphaScreenRate" id="gY8-En-xQV">
  1131. <dictionary key="options">
  1132. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1133. </dictionary>
  1134. </binding>
  1135. </connections>
  1136. </textField>
  1137. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4Wa-cE-xB7">
  1138. <rect key="frame" x="318" y="60" width="137" height="17"/>
  1139. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1140. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="黑屏持续时间(毫秒):" id="4NU-01-zYu">
  1141. <font key="font" usesAppearanceFont="YES"/>
  1142. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1143. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1144. </textFieldCell>
  1145. </textField>
  1146. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="jix-uG-yoI">
  1147. <rect key="frame" x="467" y="57" width="58" height="22"/>
  1148. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1149. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="c6W-K8-p2V">
  1150. <font key="font" metaFont="system"/>
  1151. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1152. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1153. </textFieldCell>
  1154. <connections>
  1155. <binding destination="xif-Oj-YB3" name="value" keyPath="selection.condition.alphaScreenDuration" id="23h-Hu-nNH">
  1156. <dictionary key="options">
  1157. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1158. </dictionary>
  1159. </binding>
  1160. </connections>
  1161. </textField>
  1162. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="SVI-Vo-GLk">
  1163. <rect key="frame" x="265" y="32" width="190" height="17"/>
  1164. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1165. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="两次广告展示最小间隔(秒):" id="Fl9-sD-sfN">
  1166. <font key="font" usesAppearanceFont="YES"/>
  1167. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1168. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1169. </textFieldCell>
  1170. </textField>
  1171. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Nh8-Lp-WHq">
  1172. <rect key="frame" x="467" y="29" width="58" height="22"/>
  1173. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1174. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="DP7-fS-D9F">
  1175. <font key="font" metaFont="system"/>
  1176. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1177. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1178. </textFieldCell>
  1179. <connections>
  1180. <binding destination="xif-Oj-YB3" name="value" keyPath="selection.condition.minShowGap" id="CEC-DH-oCz">
  1181. <dictionary key="options">
  1182. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1183. </dictionary>
  1184. </binding>
  1185. </connections>
  1186. </textField>
  1187. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="AGP-C2-ZAQ">
  1188. <rect key="frame" x="287" y="4" width="168" height="17"/>
  1189. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1190. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="Banner自刷新时间(秒):" id="iyE-V0-pSr">
  1191. <font key="font" usesAppearanceFont="YES"/>
  1192. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1193. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1194. </textFieldCell>
  1195. <connections>
  1196. <binding destination="Amt-FH-qGn" name="hidden" keyPath="selection.isBannerConditionsHidden" id="t5d-Cu-d7D"/>
  1197. </connections>
  1198. </textField>
  1199. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="EDB-aB-EVE">
  1200. <rect key="frame" x="467" y="1" width="58" height="22"/>
  1201. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1202. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="Mq4-hK-6cu">
  1203. <font key="font" metaFont="system"/>
  1204. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1205. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1206. </textFieldCell>
  1207. <connections>
  1208. <binding destination="xif-Oj-YB3" name="value" keyPath="selection.condition.bannerSelfRefreshInterval" id="oYl-wq-vpw">
  1209. <dictionary key="options">
  1210. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1211. </dictionary>
  1212. </binding>
  1213. <binding destination="Amt-FH-qGn" name="hidden" keyPath="selection.isBannerConditionsHidden" id="uc9-Dj-sFz"/>
  1214. </connections>
  1215. </textField>
  1216. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nZK-FL-VZ7">
  1217. <rect key="frame" x="5" y="116" width="92" height="25"/>
  1218. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1219. <buttonCell key="cell" type="square" title="拷贝" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="AdJ-az-Tyb">
  1220. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1221. <font key="font" metaFont="system"/>
  1222. <connections>
  1223. <action selector="onAcConfigsCopy:" target="-2" id="TMs-1Q-5gl"/>
  1224. </connections>
  1225. </buttonCell>
  1226. </button>
  1227. </subviews>
  1228. </view>
  1229. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  1230. </box>
  1231. <box fixedFrame="YES" title="id配置" translatesAutoresizingMaskIntoConstraints="NO" id="PKk-Vd-Yg4">
  1232. <rect key="frame" x="17" y="243" width="1163" height="244"/>
  1233. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1234. <view key="contentView" id="Cfa-Ev-Ddi">
  1235. <rect key="frame" x="3" y="3" width="1157" height="226"/>
  1236. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1237. <subviews>
  1238. <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DRK-Gu-sWS">
  1239. <rect key="frame" x="119" y="12" width="800" height="214"/>
  1240. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1241. <clipView key="contentView" ambiguous="YES" id="H3n-l1-K4q">
  1242. <rect key="frame" x="1" y="0.0" width="798" height="198"/>
  1243. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1244. <subviews>
  1245. <tableView verticalHuggingPriority="750" ambiguous="YES" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" headerView="Wzh-dD-qPQ" id="iNK-xf-5lc">
  1246. <rect key="frame" x="0.0" y="0.0" width="836" height="175"/>
  1247. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1248. <size key="intercellSpacing" width="3" height="2"/>
  1249. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  1250. <tableViewGridLines key="gridStyleMask" vertical="YES" horizontal="YES"/>
  1251. <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
  1252. <tableColumns>
  1253. <tableColumn width="128" minWidth="10" maxWidth="3.4028234663852886e+38" id="PUn-qI-HS1">
  1254. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="ID索引">
  1255. <font key="font" metaFont="message" size="11"/>
  1256. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  1257. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1258. </tableHeaderCell>
  1259. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="ZkZ-M5-vHj">
  1260. <font key="font" metaFont="system"/>
  1261. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1262. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  1263. </textFieldCell>
  1264. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  1265. <connections>
  1266. <binding destination="4Q0-H4-GCj" name="value" keyPath="arrangedObjects.idIndex" id="shZ-LW-hIC">
  1267. <dictionary key="options">
  1268. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1269. </dictionary>
  1270. </binding>
  1271. </connections>
  1272. </tableColumn>
  1273. <tableColumn editable="NO" width="127.5" minWidth="10" maxWidth="3.4028234663852886e+38" id="ZU0-5C-7Kj">
  1274. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="ID类型">
  1275. <font key="font" metaFont="message" size="11"/>
  1276. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  1277. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1278. </tableHeaderCell>
  1279. <popUpButtonCell key="dataCell" type="bevel" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="bezel" imageScaling="proportionallyDown" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" selectedItem="VYO-7x-D2r" id="DbW-2x-hHM">
  1280. <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
  1281. <font key="font" metaFont="system"/>
  1282. <menu key="menu" id="Z1m-S3-nR1">
  1283. <items>
  1284. <menuItem title="Item 1" state="on" id="VYO-7x-D2r"/>
  1285. <menuItem title="Item 2" id="Pcb-hW-Pw9"/>
  1286. <menuItem title="Item 3" id="1UP-dt-D6U"/>
  1287. </items>
  1288. </menu>
  1289. </popUpButtonCell>
  1290. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  1291. <connections>
  1292. <binding destination="4Q0-H4-GCj" name="contentValues" keyPath="arrangedObjects.getAdTypeNameArray" id="nNW-TW-ols"/>
  1293. <binding destination="4Q0-H4-GCj" name="selectedValue" keyPath="arrangedObjects.idTypeDes" previousBinding="nNW-TW-ols" id="BZ5-wp-ZFf"/>
  1294. </connections>
  1295. </tableColumn>
  1296. <tableColumn width="377" minWidth="10" maxWidth="3.4028234663852886e+38" id="z4B-aV-0m8">
  1297. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="ID">
  1298. <font key="font" metaFont="message" size="11"/>
  1299. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  1300. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1301. </tableHeaderCell>
  1302. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="DBm-fZ-ctb">
  1303. <font key="font" metaFont="system"/>
  1304. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1305. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  1306. </textFieldCell>
  1307. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  1308. <connections>
  1309. <binding destination="4Q0-H4-GCj" name="value" keyPath="arrangedObjects.adId" id="JDb-lR-GZT">
  1310. <dictionary key="options">
  1311. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1312. </dictionary>
  1313. </binding>
  1314. </connections>
  1315. </tableColumn>
  1316. <tableColumn width="34" minWidth="10" maxWidth="3.4028234663852886e+38" id="5F2-zb-fF6" userLabel="倍数">
  1317. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="倍数">
  1318. <font key="font" metaFont="message" size="11"/>
  1319. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  1320. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1321. </tableHeaderCell>
  1322. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="Uzq-QV-mKn">
  1323. <font key="font" metaFont="system"/>
  1324. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1325. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  1326. </textFieldCell>
  1327. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  1328. <connections>
  1329. <binding destination="4Q0-H4-GCj" name="value" keyPath="arrangedObjects.worthMul" id="YzB-EY-2CU">
  1330. <dictionary key="options">
  1331. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1332. </dictionary>
  1333. </binding>
  1334. </connections>
  1335. </tableColumn>
  1336. <tableColumn width="153.5" minWidth="10" maxWidth="3.4028234663852886e+38" id="Llc-c4-PEn">
  1337. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="名字">
  1338. <font key="font" metaFont="message" size="11"/>
  1339. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  1340. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1341. </tableHeaderCell>
  1342. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="DmG-Fx-1Nl">
  1343. <font key="font" metaFont="system"/>
  1344. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1345. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  1346. </textFieldCell>
  1347. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  1348. <connections>
  1349. <binding destination="4Q0-H4-GCj" name="value" keyPath="arrangedObjects.adName" id="JZo-d8-Iim">
  1350. <dictionary key="options">
  1351. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1352. </dictionary>
  1353. </binding>
  1354. </connections>
  1355. </tableColumn>
  1356. </tableColumns>
  1357. </tableView>
  1358. </subviews>
  1359. </clipView>
  1360. <scroller key="horizontalScroller" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="fcN-nL-2NL">
  1361. <rect key="frame" x="1" y="198" width="798" height="15"/>
  1362. <autoresizingMask key="autoresizingMask"/>
  1363. </scroller>
  1364. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="BuI-n1-cIb">
  1365. <rect key="frame" x="-15" y="23" width="16" height="0.0"/>
  1366. <autoresizingMask key="autoresizingMask"/>
  1367. </scroller>
  1368. <tableHeaderView key="headerView" id="Wzh-dD-qPQ">
  1369. <rect key="frame" x="0.0" y="0.0" width="836" height="23"/>
  1370. <autoresizingMask key="autoresizingMask"/>
  1371. </tableHeaderView>
  1372. </scrollView>
  1373. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZcY-zl-Pok">
  1374. <rect key="frame" x="12" y="181" width="91" height="25"/>
  1375. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1376. <buttonCell key="cell" type="square" title="+" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="bSV-nV-6Et">
  1377. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1378. <font key="font" metaFont="system"/>
  1379. </buttonCell>
  1380. <connections>
  1381. <action selector="add:" target="4Q0-H4-GCj" id="zfJ-FB-ebl"/>
  1382. </connections>
  1383. </button>
  1384. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="H1r-Q1-PtF">
  1385. <rect key="frame" x="12" y="129" width="92" height="25"/>
  1386. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1387. <buttonCell key="cell" type="square" title="-" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="fpo-LJ-9q2">
  1388. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1389. <font key="font" metaFont="system"/>
  1390. </buttonCell>
  1391. <connections>
  1392. <action selector="remove:" target="4Q0-H4-GCj" id="sqZ-CW-N84"/>
  1393. </connections>
  1394. </button>
  1395. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="WJ5-Ea-C9I">
  1396. <rect key="frame" x="12" y="80" width="92" height="25"/>
  1397. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1398. <buttonCell key="cell" type="square" title="拷贝" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="ejG-el-Wwi">
  1399. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1400. <font key="font" metaFont="system"/>
  1401. <connections>
  1402. <action selector="onAdIdCopy:" target="-2" id="awF-Q6-YEH"/>
  1403. </connections>
  1404. </buttonCell>
  1405. </button>
  1406. </subviews>
  1407. </view>
  1408. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  1409. </box>
  1410. <box fixedFrame="YES" title="平台配置(PlatformID#号分割)" translatesAutoresizingMaskIntoConstraints="NO" id="Mmm-rh-czP">
  1411. <rect key="frame" x="17" y="491" width="1163" height="140"/>
  1412. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1413. <view key="contentView" id="5co-ex-Ha7">
  1414. <rect key="frame" x="3" y="3" width="1157" height="122"/>
  1415. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1416. <subviews>
  1417. <scrollView fixedFrame="YES" autohidesScrollers="YES" horizontalLineScroll="19" horizontalPageScroll="10" verticalLineScroll="19" verticalPageScroll="10" usesPredominantAxisScrolling="NO" translatesAutoresizingMaskIntoConstraints="NO" id="r7H-SF-yav">
  1418. <rect key="frame" x="119" y="1" width="744" height="119"/>
  1419. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1420. <clipView key="contentView" ambiguous="YES" id="NuZ-oz-HUQ">
  1421. <rect key="frame" x="1" y="0.0" width="742" height="118"/>
  1422. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1423. <subviews>
  1424. <tableView verticalHuggingPriority="750" ambiguous="YES" allowsExpansionToolTips="YES" columnAutoresizingStyle="lastColumnOnly" columnSelection="YES" multipleSelection="NO" autosaveColumns="NO" headerView="syj-q0-v5W" id="LWa-RA-rcb">
  1425. <rect key="frame" x="0.0" y="0.0" width="742" height="95"/>
  1426. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1427. <size key="intercellSpacing" width="3" height="2"/>
  1428. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  1429. <tableViewGridLines key="gridStyleMask" vertical="YES" horizontal="YES"/>
  1430. <color key="gridColor" name="gridColor" catalog="System" colorSpace="catalog"/>
  1431. <tableColumns>
  1432. <tableColumn editable="NO" width="127.5" minWidth="10" maxWidth="3.4028234663852886e+38" id="zKA-vB-HGJ">
  1433. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="平台类型">
  1434. <font key="font" metaFont="message" size="11"/>
  1435. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  1436. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1437. </tableHeaderCell>
  1438. <popUpButtonCell key="dataCell" type="bevel" title="Item 1" bezelStyle="rounded" alignment="left" lineBreakMode="truncatingTail" state="on" borderStyle="bezel" imageScaling="proportionallyDown" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" selectedItem="jnu-lq-iSH" id="Nbw-Yj-9bc">
  1439. <behavior key="behavior" lightByBackground="YES" lightByGray="YES"/>
  1440. <font key="font" metaFont="system"/>
  1441. <menu key="menu" id="TdA-6c-kuA">
  1442. <items>
  1443. <menuItem title="Item 1" state="on" id="jnu-lq-iSH"/>
  1444. <menuItem title="Item 2" id="5Qc-zg-d9M"/>
  1445. <menuItem title="Item 3" id="Tet-OL-m8L"/>
  1446. </items>
  1447. </menu>
  1448. </popUpButtonCell>
  1449. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  1450. <connections>
  1451. <binding destination="FiA-Dc-rFd" name="selectedValue" keyPath="arrangedObjects.adPlatformDes" previousBinding="A6s-Id-lCr" id="9KL-mZ-ape"/>
  1452. <binding destination="FiA-Dc-rFd" name="contentValues" keyPath="arrangedObjects.getAdPlatformNameArray" id="A6s-Id-lCr"/>
  1453. </connections>
  1454. </tableColumn>
  1455. <tableColumn width="607.5" minWidth="10" maxWidth="3.4028234663852886e+38" id="x1v-cQ-Q2D">
  1456. <tableHeaderCell key="headerCell" lineBreakMode="truncatingTail" borderStyle="border" alignment="left" title="PlatformID">
  1457. <font key="font" metaFont="message" size="11"/>
  1458. <color key="textColor" name="headerTextColor" catalog="System" colorSpace="catalog"/>
  1459. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  1460. </tableHeaderCell>
  1461. <textFieldCell key="dataCell" lineBreakMode="truncatingTail" selectable="YES" editable="YES" alignment="left" title="Text Cell" id="81n-Tz-Yja">
  1462. <font key="font" metaFont="system"/>
  1463. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1464. <color key="backgroundColor" name="controlBackgroundColor" catalog="System" colorSpace="catalog"/>
  1465. </textFieldCell>
  1466. <tableColumnResizingMask key="resizingMask" resizeWithTable="YES" userResizable="YES"/>
  1467. <connections>
  1468. <binding destination="FiA-Dc-rFd" name="value" keyPath="arrangedObjects.adPlatformId" id="99b-9b-fkX">
  1469. <dictionary key="options">
  1470. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1471. </dictionary>
  1472. </binding>
  1473. </connections>
  1474. </tableColumn>
  1475. </tableColumns>
  1476. </tableView>
  1477. </subviews>
  1478. </clipView>
  1479. <scroller key="horizontalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="YES" id="s3E-U6-u6a">
  1480. <rect key="frame" x="1" y="7" width="0.0" height="16"/>
  1481. <autoresizingMask key="autoresizingMask"/>
  1482. </scroller>
  1483. <scroller key="verticalScroller" hidden="YES" wantsLayer="YES" verticalHuggingPriority="750" horizontal="NO" id="ft1-vX-wxX">
  1484. <rect key="frame" x="-15" y="23" width="16" height="0.0"/>
  1485. <autoresizingMask key="autoresizingMask"/>
  1486. </scroller>
  1487. <tableHeaderView key="headerView" id="syj-q0-v5W">
  1488. <rect key="frame" x="0.0" y="0.0" width="742" height="23"/>
  1489. <autoresizingMask key="autoresizingMask"/>
  1490. </tableHeaderView>
  1491. </scrollView>
  1492. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nvM-Qx-0qX">
  1493. <rect key="frame" x="12" y="19" width="92" height="25"/>
  1494. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1495. <buttonCell key="cell" type="square" title="-" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="D9F-3e-CPY">
  1496. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1497. <font key="font" metaFont="system"/>
  1498. </buttonCell>
  1499. <connections>
  1500. <action selector="remove:" target="FiA-Dc-rFd" id="heC-yQ-PDh"/>
  1501. </connections>
  1502. </button>
  1503. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="RDd-Og-xvF">
  1504. <rect key="frame" x="13" y="77" width="91" height="25"/>
  1505. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1506. <buttonCell key="cell" type="square" title="+" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="zIx-8X-wQP">
  1507. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1508. <font key="font" metaFont="system"/>
  1509. </buttonCell>
  1510. <connections>
  1511. <action selector="add:" target="FiA-Dc-rFd" id="6F7-Kv-Z8S"/>
  1512. </connections>
  1513. </button>
  1514. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2Bv-C7-3bt">
  1515. <rect key="frame" x="840" y="1" width="355" height="20"/>
  1516. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1517. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="Banner必须分层!选择不自动刷新!" drawsBackground="YES" id="Uno-Kg-6eD">
  1518. <font key="font" metaFont="system" size="18"/>
  1519. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  1520. <color key="backgroundColor" red="1" green="1" blue="1" alpha="0.0" colorSpace="calibratedRGB"/>
  1521. </textFieldCell>
  1522. <connections>
  1523. <binding destination="FQm-5F-kMo" name="displayPatternValue1" keyPath="selection" id="iCN-Co-TVZ">
  1524. <dictionary key="options">
  1525. <string key="NSDisplayPattern">%{value1}@</string>
  1526. </dictionary>
  1527. </binding>
  1528. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.sdkBannerInfo" id="Qa8-v3-QYq"/>
  1529. </connections>
  1530. </textField>
  1531. </subviews>
  1532. </view>
  1533. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  1534. </box>
  1535. </subviews>
  1536. <connections>
  1537. <binding destination="FQm-5F-kMo" name="hidden" keyPath="selection.server.isLoadingData" id="7uj-8o-QoC"/>
  1538. </connections>
  1539. </customView>
  1540. </subviews>
  1541. </view>
  1542. </tabViewItem>
  1543. <tabViewItem label="数据网络配置" identifier="" id="S1Q-N2-mFh">
  1544. <view key="view" id="J0k-ql-YfM">
  1545. <rect key="frame" x="10" y="33" width="1190" height="635"/>
  1546. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1547. <subviews>
  1548. <customView fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4vX-Ja-cyI">
  1549. <rect key="frame" x="0.0" y="0.0" width="1190" height="635"/>
  1550. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1551. <subviews>
  1552. <box fixedFrame="YES" title="版本和强制更新配置" translatesAutoresizingMaskIntoConstraints="NO" id="5Ld-uc-XGS">
  1553. <rect key="frame" x="17" y="463" width="411" height="152"/>
  1554. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1555. <view key="contentView" id="ILO-MP-mU5">
  1556. <rect key="frame" x="3" y="3" width="405" height="134"/>
  1557. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1558. <subviews>
  1559. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="kPK-xM-5Sr">
  1560. <rect key="frame" x="71" y="106" width="111" height="17"/>
  1561. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1562. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="最新游戏的版本号" id="kdW-fT-Rji">
  1563. <font key="font" usesAppearanceFont="YES"/>
  1564. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1565. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1566. </textFieldCell>
  1567. </textField>
  1568. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zBA-0s-NYC">
  1569. <rect key="frame" x="194" y="103" width="193" height="22"/>
  1570. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1571. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="liC-aM-qM1">
  1572. <font key="font" metaFont="system"/>
  1573. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1574. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1575. </textFieldCell>
  1576. <connections>
  1577. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.update.gameVersion" id="GXR-zp-0jg">
  1578. <dictionary key="options">
  1579. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1580. </dictionary>
  1581. </binding>
  1582. </connections>
  1583. </textField>
  1584. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="jdR-C3-UBn">
  1585. <rect key="frame" x="45" y="76" width="137" height="17"/>
  1586. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1587. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="更新到包名(非强制)" id="u5W-mI-FKr">
  1588. <font key="font" usesAppearanceFont="YES"/>
  1589. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1590. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1591. </textFieldCell>
  1592. </textField>
  1593. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KE1-F6-y89">
  1594. <rect key="frame" x="194" y="73" width="193" height="22"/>
  1595. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1596. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="QAn-ao-cB1">
  1597. <font key="font" metaFont="system"/>
  1598. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1599. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1600. </textFieldCell>
  1601. <connections>
  1602. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.update.updateTargetPackageName" id="bQG-mD-OMt">
  1603. <dictionary key="options">
  1604. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1605. </dictionary>
  1606. </binding>
  1607. </connections>
  1608. </textField>
  1609. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="XFH-Zb-WfQ">
  1610. <rect key="frame" x="98" y="46" width="84" height="17"/>
  1611. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1612. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="是否强制更新" id="TTt-1y-G37">
  1613. <font key="font" usesAppearanceFont="YES"/>
  1614. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1615. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1616. </textFieldCell>
  1617. </textField>
  1618. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="WKP-GC-wUZ">
  1619. <rect key="frame" x="85" y="17" width="97" height="17"/>
  1620. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1621. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="强制更新到包名" id="sxQ-Js-wh5">
  1622. <font key="font" usesAppearanceFont="YES"/>
  1623. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1624. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1625. </textFieldCell>
  1626. </textField>
  1627. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="trY-ng-4YS">
  1628. <rect key="frame" x="194" y="13" width="193" height="22"/>
  1629. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1630. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="at6-w9-HN9">
  1631. <font key="font" metaFont="system"/>
  1632. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1633. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1634. </textFieldCell>
  1635. <connections>
  1636. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.update.forceUpdateTargetPackageName" id="oyQ-q6-DHz">
  1637. <dictionary key="options">
  1638. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1639. </dictionary>
  1640. </binding>
  1641. </connections>
  1642. </textField>
  1643. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="6mt-L5-BBW">
  1644. <rect key="frame" x="207" y="44" width="176" height="18"/>
  1645. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1646. <buttonCell key="cell" type="check" bezelStyle="regularSquare" imagePosition="left" state="on" inset="2" id="5YN-G1-7GH">
  1647. <behavior key="behavior" changeContents="YES" doesNotDimImage="YES" lightByContents="YES"/>
  1648. <font key="font" metaFont="system"/>
  1649. </buttonCell>
  1650. <connections>
  1651. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.update.isForceUpdate" id="Z9N-Tw-C3T"/>
  1652. </connections>
  1653. </button>
  1654. </subviews>
  1655. </view>
  1656. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  1657. </box>
  1658. <box fixedFrame="YES" title="各SDK的Keys" translatesAutoresizingMaskIntoConstraints="NO" id="dRe-ab-Cf1">
  1659. <rect key="frame" x="736" y="515" width="411" height="118"/>
  1660. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1661. <view key="contentView" id="cTw-vE-5Oa">
  1662. <rect key="frame" x="3" y="3" width="405" height="100"/>
  1663. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1664. <subviews>
  1665. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ZCF-h8-iYD">
  1666. <rect key="frame" x="97" y="69" width="290" height="22"/>
  1667. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1668. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="v6d-nH-0J3">
  1669. <font key="font" metaFont="system"/>
  1670. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1671. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1672. </textFieldCell>
  1673. <connections>
  1674. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.sdkKeys.tapjoyKey" id="cqY-jG-xFa">
  1675. <dictionary key="options">
  1676. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1677. </dictionary>
  1678. </binding>
  1679. </connections>
  1680. </textField>
  1681. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3xV-Ce-ErL">
  1682. <rect key="frame" x="97" y="39" width="290" height="22"/>
  1683. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1684. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="KCy-VM-en3">
  1685. <font key="font" metaFont="system"/>
  1686. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1687. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1688. </textFieldCell>
  1689. <connections>
  1690. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.sdkKeys.fyberKey" id="WXM-zz-QiO">
  1691. <dictionary key="options">
  1692. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1693. </dictionary>
  1694. </binding>
  1695. </connections>
  1696. </textField>
  1697. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="bIZ-FC-g1k">
  1698. <rect key="frame" x="97" y="9" width="290" height="22"/>
  1699. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1700. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="BqV-Jk-SiR">
  1701. <font key="font" metaFont="system"/>
  1702. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1703. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1704. </textFieldCell>
  1705. <connections>
  1706. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.sdkKeys.fyberUrl" id="yEM-XT-eKx">
  1707. <dictionary key="options">
  1708. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1709. </dictionary>
  1710. </binding>
  1711. </connections>
  1712. </textField>
  1713. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tD7-NN-pJu">
  1714. <rect key="frame" x="18" y="73" width="69" height="17"/>
  1715. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1716. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="tapjoy key" id="zBY-oq-SK4">
  1717. <font key="font" usesAppearanceFont="YES"/>
  1718. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1719. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1720. </textFieldCell>
  1721. </textField>
  1722. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="iOp-bp-dKS">
  1723. <rect key="frame" x="24" y="43" width="63" height="17"/>
  1724. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1725. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="fyber key" id="G3C-dq-eN5">
  1726. <font key="font" usesAppearanceFont="YES"/>
  1727. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1728. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1729. </textFieldCell>
  1730. </textField>
  1731. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="O7P-Hf-lqd">
  1732. <rect key="frame" x="30" y="14" width="57" height="17"/>
  1733. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1734. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="fyber url" id="7JY-NH-cdc">
  1735. <font key="font" usesAppearanceFont="YES"/>
  1736. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1737. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1738. </textFieldCell>
  1739. </textField>
  1740. </subviews>
  1741. </view>
  1742. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  1743. </box>
  1744. <box fixedFrame="YES" title="游戏配置" translatesAutoresizingMaskIntoConstraints="NO" id="bKY-wA-b7c">
  1745. <rect key="frame" x="17" y="307" width="700" height="133"/>
  1746. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1747. <view key="contentView" id="C6B-4Z-4SB">
  1748. <rect key="frame" x="3" y="3" width="694" height="115"/>
  1749. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1750. <subviews>
  1751. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="CjM-of-ZDZ">
  1752. <rect key="frame" x="123" y="90" width="71" height="17"/>
  1753. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1754. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="积分墙配置" id="SQF-OS-FN6">
  1755. <font key="font" usesAppearanceFont="YES"/>
  1756. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1757. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1758. </textFieldCell>
  1759. </textField>
  1760. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tvc-kL-1Fw">
  1761. <rect key="frame" x="194" y="87" width="492" height="22"/>
  1762. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1763. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="ips-UP-umU">
  1764. <font key="font" metaFont="system"/>
  1765. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1766. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1767. </textFieldCell>
  1768. <connections>
  1769. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.gameConfig.offwallConfig" id="kpb-32-5Du">
  1770. <dictionary key="options">
  1771. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1772. </dictionary>
  1773. </binding>
  1774. </connections>
  1775. </textField>
  1776. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Qlc-Oh-E5S">
  1777. <rect key="frame" x="5" y="63" width="196" height="17"/>
  1778. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1779. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="关卡上传服务器比例【0-1000】" id="Xae-t7-OYA">
  1780. <font key="font" usesAppearanceFont="YES"/>
  1781. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1782. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1783. </textFieldCell>
  1784. </textField>
  1785. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Vmh-TF-zXW">
  1786. <rect key="frame" x="194" y="60" width="492" height="22"/>
  1787. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1788. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="JNx-wC-xCb">
  1789. <font key="font" metaFont="system"/>
  1790. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1791. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1792. </textFieldCell>
  1793. <connections>
  1794. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.gameConfig.levelStatisticsRate" id="m5I-cm-Gts">
  1795. <dictionary key="options">
  1796. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1797. </dictionary>
  1798. </binding>
  1799. </connections>
  1800. </textField>
  1801. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="nLH-y7-HXV">
  1802. <rect key="frame" x="5" y="35" width="196" height="17"/>
  1803. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1804. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="right" title="统计上传服务器比例【0-1000】" id="FKO-ow-qCg">
  1805. <font key="font" usesAppearanceFont="YES"/>
  1806. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1807. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1808. </textFieldCell>
  1809. </textField>
  1810. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zW0-2B-shj">
  1811. <rect key="frame" x="194" y="33" width="492" height="22"/>
  1812. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1813. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="Veh-RL-wne">
  1814. <font key="font" metaFont="system"/>
  1815. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1816. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1817. </textFieldCell>
  1818. <connections>
  1819. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.gameConfig.dataStatisticsRate" id="ELt-pD-cdH">
  1820. <dictionary key="options">
  1821. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1822. </dictionary>
  1823. </binding>
  1824. </connections>
  1825. </textField>
  1826. </subviews>
  1827. </view>
  1828. <font key="titleFont" size="11" name=".PingFangSC-Regular"/>
  1829. </box>
  1830. </subviews>
  1831. <connections>
  1832. <binding destination="FQm-5F-kMo" name="hidden" keyPath="selection.server.isLoadingData" id="DNK-Bl-5h5"/>
  1833. </connections>
  1834. </customView>
  1835. </subviews>
  1836. </view>
  1837. </tabViewItem>
  1838. <tabViewItem label="发包操作" identifier="" id="Zdv-H0-dlc">
  1839. <view key="view" id="tmu-Re-F2f">
  1840. <rect key="frame" x="10" y="33" width="1190" height="635"/>
  1841. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1842. <subviews>
  1843. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="17Z-0x-jcH">
  1844. <rect key="frame" x="100" y="608" width="854" height="17"/>
  1845. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1846. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="Uhn-We-o10">
  1847. <font key="font" metaFont="system"/>
  1848. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1849. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1850. </textFieldCell>
  1851. <connections>
  1852. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.path.config.keystore" id="wtJ-yR-fq7">
  1853. <dictionary key="options">
  1854. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1855. </dictionary>
  1856. </binding>
  1857. </connections>
  1858. </textField>
  1859. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="yVq-Iq-U3F">
  1860. <rect key="frame" x="100" y="576" width="854" height="17"/>
  1861. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1862. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="8C0-dk-WUh">
  1863. <font key="font" metaFont="system"/>
  1864. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1865. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1866. </textFieldCell>
  1867. <connections>
  1868. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.upload.oriApkPath" id="dIw-qn-Bku">
  1869. <dictionary key="options">
  1870. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1871. </dictionary>
  1872. </binding>
  1873. </connections>
  1874. </textField>
  1875. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="JPG-Re-XJ1">
  1876. <rect key="frame" x="38" y="608" width="58" height="17"/>
  1877. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1878. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="签名文件" id="VIQ-V9-Eb1">
  1879. <font key="font" usesAppearanceFont="YES"/>
  1880. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1881. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1882. </textFieldCell>
  1883. </textField>
  1884. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="eQD-ff-zq8">
  1885. <rect key="frame" x="38" y="576" width="58" height="17"/>
  1886. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1887. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="原始APK" id="75u-7a-wDd">
  1888. <font key="font" usesAppearanceFont="YES"/>
  1889. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1890. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1891. </textFieldCell>
  1892. </textField>
  1893. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Vde-XQ-WoZ">
  1894. <rect key="frame" x="38" y="504" width="71" height="17"/>
  1895. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1896. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="游戏版本号" id="Hxb-q2-TNU">
  1897. <font key="font" usesAppearanceFont="YES"/>
  1898. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1899. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1900. </textFieldCell>
  1901. </textField>
  1902. <amPathPopUpButton fixedFrame="YES" imageHugsTitle="YES" canChooseFiles="YES" canChooseNewPaths="YES" canChooseExistingPaths="YES" displayPanelAsSheet="YES" showStandardPaths="YES" showPathComponents="YES" showPlaceholder="YES" placeholder="No Selection" translatesAutoresizingMaskIntoConstraints="NO" id="fgc-CD-uPl">
  1903. <rect key="frame" x="102" y="543" width="257" height="25"/>
  1904. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1905. <amVariablePopUpButtonCell key="cell" type="square" title="Desktop" bezelStyle="shadowlessSquare" imagePosition="left" lineBreakMode="truncatingTail" borderStyle="border" tag="1004" inset="2" arrowPosition="arrowAtCenter" preferredEdge="maxY" altersStateOfSelectedItem="NO" id="Ddd-VB-Y8G">
  1906. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1907. <font key="font" metaFont="system"/>
  1908. <menu key="menu" title="OtherViews" id="jqi-BQ-kSU"/>
  1909. </amVariablePopUpButtonCell>
  1910. <connections>
  1911. <binding destination="FQm-5F-kMo" name="path" keyPath="selection.upload.oriApkPath" id="YyB-TU-m8V"/>
  1912. </connections>
  1913. </amPathPopUpButton>
  1914. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ujo-3H-8po">
  1915. <rect key="frame" x="115" y="501" width="244" height="22"/>
  1916. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1917. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="on5-YN-ccj">
  1918. <font key="font" metaFont="system"/>
  1919. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1920. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1921. </textFieldCell>
  1922. <connections>
  1923. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.apk.yml.versionCode" id="eox-74-UUE">
  1924. <dictionary key="options">
  1925. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1926. </dictionary>
  1927. </binding>
  1928. </connections>
  1929. </textField>
  1930. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="GEg-PH-2FI">
  1931. <rect key="frame" x="718" y="31" width="438" height="36"/>
  1932. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1933. <buttonCell key="cell" type="square" title="安装运行" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="0Y5-BH-xtz">
  1934. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1935. <font key="font" usesAppearanceFont="YES"/>
  1936. </buttonCell>
  1937. <connections>
  1938. <action selector="onInstallRunBtn:" target="-2" id="7Qa-4M-SDz"/>
  1939. </connections>
  1940. </button>
  1941. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Fxn-TZ-ZBI">
  1942. <rect key="frame" x="369" y="543" width="200" height="25"/>
  1943. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1944. <buttonCell key="cell" type="square" title="解包原始Apk" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="ZwE-TU-NHu">
  1945. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1946. <font key="font" usesAppearanceFont="YES"/>
  1947. </buttonCell>
  1948. <connections>
  1949. <action selector="onUnpackOriApkBtn:" target="-2" id="Qnv-b0-rja"/>
  1950. </connections>
  1951. </button>
  1952. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="xFK-1F-Ada">
  1953. <rect key="frame" x="367" y="505" width="71" height="17"/>
  1954. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1955. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="游戏版本名" id="ebI-t1-JpV">
  1956. <font key="font" usesAppearanceFont="YES"/>
  1957. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  1958. <color key="backgroundColor" name="controlColor" catalog="System" colorSpace="catalog"/>
  1959. </textFieldCell>
  1960. </textField>
  1961. <textField verticalHuggingPriority="750" fixedFrame="YES" allowsCharacterPickerTouchBarItem="YES" translatesAutoresizingMaskIntoConstraints="NO" id="YOO-Q7-gAH">
  1962. <rect key="frame" x="444" y="502" width="244" height="22"/>
  1963. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1964. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="TR9-ax-S0K">
  1965. <font key="font" metaFont="system"/>
  1966. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  1967. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  1968. </textFieldCell>
  1969. <connections>
  1970. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.apk.yml.versionName" id="P4N-cW-yMn">
  1971. <dictionary key="options">
  1972. <bool key="NSContinuouslyUpdatesValue" value="YES"/>
  1973. </dictionary>
  1974. </binding>
  1975. </connections>
  1976. </textField>
  1977. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="tKh-h7-6Iw">
  1978. <rect key="frame" x="153" y="31" width="438" height="36"/>
  1979. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  1980. <buttonCell key="cell" type="square" title="打包 (⌘R)" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="PlZ-1O-BSM">
  1981. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  1982. <font key="font" usesAppearanceFont="YES"/>
  1983. <string key="keyEquivalent">r</string>
  1984. <modifierMask key="keyEquivalentModifierMask" command="YES"/>
  1985. </buttonCell>
  1986. <connections>
  1987. <action selector="onPackBtn:" target="-2" id="5Fa-ZU-8uv"/>
  1988. </connections>
  1989. </button>
  1990. </subviews>
  1991. </view>
  1992. </tabViewItem>
  1993. <tabViewItem label="服务器上传" identifier="" id="3hf-Ro-dW4">
  1994. <view key="view" id="Orf-q3-dPd">
  1995. <rect key="frame" x="10" y="33" width="1190" height="635"/>
  1996. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1997. </view>
  1998. </tabViewItem>
  1999. </tabViewItems>
  2000. </tabView>
  2001. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="5hT-Iq-uAz">
  2002. <rect key="frame" x="418" y="20" width="438" height="36"/>
  2003. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2004. <buttonCell key="cell" type="square" title="保存 (⌘S)" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="kcU-cB-rjc">
  2005. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  2006. <font key="font" usesAppearanceFont="YES"/>
  2007. <string key="keyEquivalent">s</string>
  2008. <modifierMask key="keyEquivalentModifierMask" command="YES"/>
  2009. </buttonCell>
  2010. <connections>
  2011. <action selector="onSaveBtn:" target="-2" id="nQc-m0-F9u"/>
  2012. </connections>
  2013. </button>
  2014. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Yef-3C-3VC">
  2015. <rect key="frame" x="1091" y="20" width="125" height="36"/>
  2016. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2017. <buttonCell key="cell" type="square" title="Finder" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="u5C-HU-5MM">
  2018. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  2019. <font key="font" usesAppearanceFont="YES"/>
  2020. <string key="keyEquivalent">s</string>
  2021. <modifierMask key="keyEquivalentModifierMask" command="YES"/>
  2022. </buttonCell>
  2023. <connections>
  2024. <action selector="onOpenInFinderBtn:" target="-2" id="wwj-Rn-tEt"/>
  2025. </connections>
  2026. </button>
  2027. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="zz1-cE-vOh">
  2028. <rect key="frame" x="20" y="20" width="138" height="36"/>
  2029. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2030. <buttonCell key="cell" type="square" title="上传(⌘R)" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="dXo-bi-lwc">
  2031. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  2032. <font key="font" usesAppearanceFont="YES"/>
  2033. <string key="keyEquivalent">r</string>
  2034. <modifierMask key="keyEquivalentModifierMask" command="YES"/>
  2035. </buttonCell>
  2036. <connections>
  2037. <action selector="onSendBtn:" target="-2" id="wOm-EU-qYI"/>
  2038. </connections>
  2039. </button>
  2040. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4e2-9J-mvH">
  2041. <rect key="frame" x="26" y="715" width="355" height="20"/>
  2042. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2043. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="当前在线参数" drawsBackground="YES" id="6ZV-vn-nfi">
  2044. <font key="font" metaFont="system"/>
  2045. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  2046. <color key="backgroundColor" red="1" green="1" blue="1" alpha="0.0" colorSpace="calibratedRGB"/>
  2047. </textFieldCell>
  2048. <connections>
  2049. <binding destination="FQm-5F-kMo" name="displayPatternValue1" keyPath="selection" id="cBk-uL-bwF">
  2050. <dictionary key="options">
  2051. <string key="NSDisplayPattern">%{value1}@</string>
  2052. </dictionary>
  2053. </binding>
  2054. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.sdkInfo" id="NqR-HP-7J7"/>
  2055. </connections>
  2056. </textField>
  2057. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hZb-Fj-0Yn">
  2058. <rect key="frame" x="861" y="715" width="355" height="20"/>
  2059. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2060. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" alignment="center" title="网络获取失败,使用本地数据!" drawsBackground="YES" id="xoC-iA-Shr">
  2061. <font key="font" metaFont="system"/>
  2062. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  2063. <color key="backgroundColor" red="1" green="1" blue="1" alpha="0.0" colorSpace="calibratedRGB"/>
  2064. </textFieldCell>
  2065. <connections>
  2066. <binding destination="FQm-5F-kMo" name="displayPatternValue1" keyPath="selection" id="kWA-ac-R7m">
  2067. <dictionary key="options">
  2068. <string key="NSDisplayPattern">%{value1}@</string>
  2069. </dictionary>
  2070. </binding>
  2071. <binding destination="FQm-5F-kMo" name="value" keyPath="selection.server.loadingInfo" id="GFc-an-f0c"/>
  2072. </connections>
  2073. </textField>
  2074. <button verticalHuggingPriority="750" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Axo-ev-tbx">
  2075. <rect key="frame" x="172" y="20" width="143" height="36"/>
  2076. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2077. <buttonCell key="cell" type="square" title="导出广告价值统计字典" bezelStyle="shadowlessSquare" alignment="center" borderStyle="border" imageScaling="proportionallyDown" inset="2" id="jSv-F8-vFi">
  2078. <behavior key="behavior" pushIn="YES" lightByBackground="YES" lightByGray="YES"/>
  2079. <font key="font" usesAppearanceFont="YES"/>
  2080. </buttonCell>
  2081. <connections>
  2082. <action selector="onExportAdWorthDic:" target="-2" id="2FV-tR-nwm"/>
  2083. </connections>
  2084. </button>
  2085. </subviews>
  2086. </view>
  2087. <connections>
  2088. <outlet property="delegate" destination="-2" id="0bl-1N-AYu"/>
  2089. </connections>
  2090. <point key="canvasLocation" x="63" y="218"/>
  2091. </window>
  2092. <objectController objectClassName="ProjectInfo" id="FQm-5F-kMo" userLabel="ocBean">
  2093. <connections>
  2094. <binding destination="-2" name="contentObject" keyPath="self.ocBean.content" id="yrC-QE-8NL"/>
  2095. </connections>
  2096. </objectController>
  2097. <arrayController objectClassName="ProjectInfo_Server_AdConfigPageArray" id="Amt-FH-qGn" userLabel="acPageArrs">
  2098. <connections>
  2099. <binding destination="FQm-5F-kMo" name="contentArray" keyPath="selection.server.maPageArr" id="vBK-1l-TDt"/>
  2100. </connections>
  2101. </arrayController>
  2102. <arrayController objectClassName="ProjectInfo_Server_AdConfigPage" id="HhN-Rw-e7c" userLabel="acPages">
  2103. <connections>
  2104. <binding destination="Amt-FH-qGn" name="contentArray" keyPath="selection.maPages" id="y2q-YX-J5Y"/>
  2105. </connections>
  2106. </arrayController>
  2107. <arrayController objectClassName="ProjectInfo_Server_AdConfig" id="xif-Oj-YB3" userLabel="acConfigs">
  2108. <connections>
  2109. <binding destination="HhN-Rw-e7c" name="contentArray" keyPath="selection.maConfigs" id="rVJ-qI-lez"/>
  2110. </connections>
  2111. </arrayController>
  2112. <arrayController objectClassName="ProjectInfo_Apk_Image" id="kRX-RV-Jsk" userLabel="acScreenshots">
  2113. <connections>
  2114. <binding destination="FQm-5F-kMo" name="contentArray" keyPath="selection.upload.maScreenShots" id="vEZ-IE-oqL"/>
  2115. </connections>
  2116. </arrayController>
  2117. <textField horizontalHuggingPriority="251" verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" id="phB-ZP-Q0k">
  2118. <rect key="frame" x="0.0" y="0.0" width="280" height="45"/>
  2119. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2120. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" sendsActionOnEndEditing="YES" title="Label" id="77d-ga-v12">
  2121. <font key="font" metaFont="system"/>
  2122. <color key="textColor" name="labelColor" catalog="System" colorSpace="catalog"/>
  2123. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  2124. </textFieldCell>
  2125. <point key="canvasLocation" x="104" y="689"/>
  2126. </textField>
  2127. <textField verticalHuggingPriority="750" allowsCharacterPickerTouchBarItem="YES" id="5lx-wC-4j3">
  2128. <rect key="frame" x="0.0" y="0.0" width="193" height="73"/>
  2129. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMinY="YES"/>
  2130. <textFieldCell key="cell" scrollable="YES" lineBreakMode="clipping" selectable="YES" editable="YES" sendsActionOnEndEditing="YES" state="on" borderStyle="bezel" drawsBackground="YES" id="AJX-eP-Dcp">
  2131. <font key="font" metaFont="system"/>
  2132. <color key="textColor" name="controlTextColor" catalog="System" colorSpace="catalog"/>
  2133. <color key="backgroundColor" name="textBackgroundColor" catalog="System" colorSpace="catalog"/>
  2134. </textFieldCell>
  2135. <point key="canvasLocation" x="394" y="689"/>
  2136. </textField>
  2137. <arrayController objectClassName="ProjectInfo_Server_AdPlatform" id="FiA-Dc-rFd" userLabel="xibAdPlatformArray">
  2138. <connections>
  2139. <binding destination="FQm-5F-kMo" name="contentArray" keyPath="selection.server.xibAdPlatformArray" id="JHv-NK-xEs"/>
  2140. </connections>
  2141. </arrayController>
  2142. <arrayController objectClassName="ProjectInfo_Server_AdId" id="4Q0-H4-GCj" userLabel="xibAdIdArray">
  2143. <connections>
  2144. <binding destination="FQm-5F-kMo" name="contentArray" keyPath="selection.server.xibAdIdArray" id="zyl-qc-R4C"/>
  2145. </connections>
  2146. </arrayController>
  2147. </objects>
  2148. <resources>
  2149. <image name="DropImageHere" width="92.160003662109375" height="92.160003662109375"/>
  2150. </resources>
  2151. </document>