HomeMember.storyboard 201 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="8191" systemVersion="15B22c" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
  3. <dependencies>
  4. <deployment identifier="iOS"/>
  5. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="8154"/>
  6. </dependencies>
  7. <scenes>
  8. <!--Home Member View Controller-->
  9. <scene sceneID="XOs-w7-MYy">
  10. <objects>
  11. <viewController storyboardIdentifier="HomeMemberViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="rMi-z4-kw5" customClass="HomeMemberViewController" sceneMemberID="viewController">
  12. <layoutGuides>
  13. <viewControllerLayoutGuide type="top" id="FRX-jq-RY9"/>
  14. <viewControllerLayoutGuide type="bottom" id="uin-sv-GXR"/>
  15. </layoutGuides>
  16. <view key="view" contentMode="scaleToFill" id="bEt-FP-UIs" userLabel="View - ViewController">
  17. <rect key="frame" x="0.0" y="64" width="320" height="568"/>
  18. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  19. <subviews>
  20. <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cgw-Um-cGw" userLabel="View - Main">
  21. <rect key="frame" x="0.0" y="80" width="320" height="488"/>
  22. <subviews>
  23. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="l0a-wm-olW" userLabel="View - header">
  24. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  25. <subviews>
  26. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="참여 2 / 초대 2" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BQC-jo-sr2">
  27. <rect key="frame" x="-42" y="-21" width="42" height="21"/>
  28. <animations/>
  29. <constraints>
  30. <constraint firstAttribute="width" constant="56" id="grY-gr-1NS">
  31. <variation key="heightClass=regular-widthClass=compact" constant="200"/>
  32. </constraint>
  33. </constraints>
  34. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  35. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  36. <nil key="highlightedColor"/>
  37. <variation key="default">
  38. <mask key="constraints">
  39. <exclude reference="grY-gr-1NS"/>
  40. </mask>
  41. </variation>
  42. <variation key="heightClass=regular-widthClass=compact">
  43. <mask key="constraints">
  44. <include reference="grY-gr-1NS"/>
  45. </mask>
  46. </variation>
  47. </label>
  48. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="EJS-zY-9Mn">
  49. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  50. <animations/>
  51. <constraints>
  52. <constraint firstAttribute="width" constant="46" id="y8g-AQ-MNj"/>
  53. </constraints>
  54. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  55. <state key="normal" title="option"/>
  56. <variation key="default">
  57. <mask key="constraints">
  58. <exclude reference="y8g-AQ-MNj"/>
  59. </mask>
  60. </variation>
  61. <variation key="heightClass=regular-widthClass=compact">
  62. <mask key="constraints">
  63. <include reference="y8g-AQ-MNj"/>
  64. </mask>
  65. </variation>
  66. <connections>
  67. <action selector="btnOptionTouched:" destination="rMi-z4-kw5" eventType="touchUpInside" id="wmM-4a-Qv8"/>
  68. </connections>
  69. </button>
  70. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JFO-nI-N8s" userLabel="View - EditMode">
  71. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  72. <subviews>
  73. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="D4W-8c-ano">
  74. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  75. <animations/>
  76. <constraints>
  77. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="46" id="l8a-Fk-weA"/>
  78. <constraint firstAttribute="width" constant="46" id="nV9-1S-ahd"/>
  79. </constraints>
  80. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  81. <state key="normal" title="삭제"/>
  82. <variation key="default">
  83. <mask key="constraints">
  84. <exclude reference="l8a-Fk-weA"/>
  85. <exclude reference="nV9-1S-ahd"/>
  86. </mask>
  87. </variation>
  88. <variation key="heightClass=regular-widthClass=compact">
  89. <mask key="constraints">
  90. <include reference="l8a-Fk-weA"/>
  91. <include reference="nV9-1S-ahd"/>
  92. </mask>
  93. </variation>
  94. <connections>
  95. <action selector="btnDeleteOnEditModeTouched:" destination="rMi-z4-kw5" eventType="touchUpInside" id="N04-Dr-MwO"/>
  96. </connections>
  97. </button>
  98. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="uLj-Rv-Fp1">
  99. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  100. <animations/>
  101. <constraints>
  102. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="46" id="FXR-pw-v1e"/>
  103. <constraint firstAttribute="width" constant="46" id="hlG-Lv-IV6"/>
  104. </constraints>
  105. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  106. <state key="normal" title="닫기"/>
  107. <variation key="default">
  108. <mask key="constraints">
  109. <exclude reference="FXR-pw-v1e"/>
  110. <exclude reference="hlG-Lv-IV6"/>
  111. </mask>
  112. </variation>
  113. <variation key="heightClass=regular-widthClass=compact">
  114. <mask key="constraints">
  115. <include reference="FXR-pw-v1e"/>
  116. <include reference="hlG-Lv-IV6"/>
  117. </mask>
  118. </variation>
  119. <connections>
  120. <action selector="btnCloseOnEditModeTouched:" destination="rMi-z4-kw5" eventType="touchUpInside" id="hnn-N9-2LA"/>
  121. </connections>
  122. </button>
  123. </subviews>
  124. <animations/>
  125. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  126. <constraints>
  127. <constraint firstAttribute="trailing" secondItem="uLj-Rv-Fp1" secondAttribute="trailing" id="9hY-di-bbB"/>
  128. <constraint firstItem="D4W-8c-ano" firstAttribute="top" secondItem="JFO-nI-N8s" secondAttribute="top" constant="5" id="IMf-TE-5jU"/>
  129. <constraint firstItem="D4W-8c-ano" firstAttribute="leading" secondItem="JFO-nI-N8s" secondAttribute="leading" id="J60-Xr-gYg"/>
  130. <constraint firstAttribute="bottom" secondItem="uLj-Rv-Fp1" secondAttribute="bottom" constant="5" id="JNY-Ed-6uY"/>
  131. <constraint firstAttribute="width" constant="140" id="Q5V-nH-Bi1"/>
  132. <constraint firstAttribute="bottom" secondItem="D4W-8c-ano" secondAttribute="bottom" constant="5" id="p31-AB-ZmA"/>
  133. <constraint firstItem="uLj-Rv-Fp1" firstAttribute="top" secondItem="JFO-nI-N8s" secondAttribute="top" constant="5" id="vAr-N5-gJQ"/>
  134. </constraints>
  135. <variation key="default">
  136. <mask key="subviews">
  137. <exclude reference="D4W-8c-ano"/>
  138. <exclude reference="uLj-Rv-Fp1"/>
  139. </mask>
  140. <mask key="constraints">
  141. <exclude reference="Q5V-nH-Bi1"/>
  142. <exclude reference="IMf-TE-5jU"/>
  143. <exclude reference="J60-Xr-gYg"/>
  144. <exclude reference="p31-AB-ZmA"/>
  145. <exclude reference="9hY-di-bbB"/>
  146. <exclude reference="JNY-Ed-6uY"/>
  147. <exclude reference="vAr-N5-gJQ"/>
  148. </mask>
  149. </variation>
  150. <variation key="heightClass=regular-widthClass=compact">
  151. <mask key="subviews">
  152. <include reference="D4W-8c-ano"/>
  153. <include reference="uLj-Rv-Fp1"/>
  154. </mask>
  155. <mask key="constraints">
  156. <include reference="Q5V-nH-Bi1"/>
  157. <include reference="IMf-TE-5jU"/>
  158. <include reference="J60-Xr-gYg"/>
  159. <include reference="p31-AB-ZmA"/>
  160. <include reference="9hY-di-bbB"/>
  161. <include reference="JNY-Ed-6uY"/>
  162. <include reference="vAr-N5-gJQ"/>
  163. </mask>
  164. </variation>
  165. </view>
  166. </subviews>
  167. <animations/>
  168. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
  169. <constraints>
  170. <constraint firstItem="EJS-zY-9Mn" firstAttribute="top" secondItem="l0a-wm-olW" secondAttribute="top" constant="30" id="8Kr-Ye-Ttx"/>
  171. <constraint firstAttribute="trailing" secondItem="JFO-nI-N8s" secondAttribute="trailing" constant="-140" id="8Ps-j5-gDq"/>
  172. <constraint firstAttribute="height" constant="80" id="Als-Mn-bZC"/>
  173. <constraint firstAttribute="trailing" secondItem="EJS-zY-9Mn" secondAttribute="trailing" constant="8" id="Ap2-pP-n4L"/>
  174. <constraint firstAttribute="bottom" secondItem="EJS-zY-9Mn" secondAttribute="bottom" constant="20" id="b0Q-zv-ftG"/>
  175. <constraint firstItem="BQC-jo-sr2" firstAttribute="leading" secondItem="l0a-wm-olW" secondAttribute="leading" constant="10" id="dUs-G2-CGC"/>
  176. <constraint firstAttribute="bottom" secondItem="BQC-jo-sr2" secondAttribute="bottom" constant="22" id="nij-DS-7AU">
  177. <variation key="heightClass=regular-widthClass=compact" constant="20"/>
  178. </constraint>
  179. <constraint firstItem="JFO-nI-N8s" firstAttribute="top" secondItem="l0a-wm-olW" secondAttribute="top" constant="25" id="rrB-kh-VXy"/>
  180. <constraint firstAttribute="bottom" secondItem="JFO-nI-N8s" secondAttribute="bottom" constant="15" id="vxI-xh-7AZ"/>
  181. <constraint firstItem="BQC-jo-sr2" firstAttribute="top" secondItem="l0a-wm-olW" secondAttribute="top" constant="43" id="xYt-i8-NIf">
  182. <variation key="heightClass=regular-widthClass=compact" constant="30"/>
  183. </constraint>
  184. </constraints>
  185. <variation key="default">
  186. <mask key="subviews">
  187. <exclude reference="BQC-jo-sr2"/>
  188. <exclude reference="EJS-zY-9Mn"/>
  189. <exclude reference="JFO-nI-N8s"/>
  190. </mask>
  191. <mask key="constraints">
  192. <exclude reference="Als-Mn-bZC"/>
  193. <exclude reference="8Kr-Ye-Ttx"/>
  194. <exclude reference="Ap2-pP-n4L"/>
  195. <exclude reference="b0Q-zv-ftG"/>
  196. <exclude reference="dUs-G2-CGC"/>
  197. <exclude reference="nij-DS-7AU"/>
  198. <exclude reference="xYt-i8-NIf"/>
  199. <exclude reference="8Ps-j5-gDq"/>
  200. <exclude reference="rrB-kh-VXy"/>
  201. <exclude reference="vxI-xh-7AZ"/>
  202. </mask>
  203. </variation>
  204. <variation key="heightClass=regular-widthClass=compact">
  205. <mask key="subviews">
  206. <include reference="BQC-jo-sr2"/>
  207. <include reference="EJS-zY-9Mn"/>
  208. <include reference="JFO-nI-N8s"/>
  209. </mask>
  210. <mask key="constraints">
  211. <include reference="Als-Mn-bZC"/>
  212. <include reference="8Kr-Ye-Ttx"/>
  213. <include reference="Ap2-pP-n4L"/>
  214. <include reference="b0Q-zv-ftG"/>
  215. <include reference="dUs-G2-CGC"/>
  216. <include reference="nij-DS-7AU"/>
  217. <include reference="xYt-i8-NIf"/>
  218. <include reference="8Ps-j5-gDq"/>
  219. <include reference="rrB-kh-VXy"/>
  220. <include reference="vxI-xh-7AZ"/>
  221. </mask>
  222. </variation>
  223. </view>
  224. <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="1BG-fl-tMC">
  225. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  226. <animations/>
  227. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  228. <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="Eqr-ob-qGR">
  229. <size key="itemSize" width="160" height="160"/>
  230. <size key="headerReferenceSize" width="0.0" height="0.0"/>
  231. <size key="footerReferenceSize" width="320" height="160"/>
  232. <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
  233. </collectionViewFlowLayout>
  234. <cells>
  235. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="160" reuseIdentifier="CollectionCellIdentifier" id="Y48-UA-qPE" customClass="HomeMemberCollectionCell">
  236. <rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
  237. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  238. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  239. <rect key="frame" x="0.0" y="0.0" width="160" height="160"/>
  240. <autoresizingMask key="autoresizingMask"/>
  241. <subviews>
  242. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="457-Hm-o4g" userLabel="View - Container">
  243. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  244. <subviews>
  245. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="100" placeholderIntrinsicHeight="100" translatesAutoresizingMaskIntoConstraints="NO" id="oC4-o4-zpd" customClass="CustomImageView">
  246. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  247. <animations/>
  248. <constraints>
  249. <constraint firstAttribute="height" constant="100" id="ZQd-JY-p3J"/>
  250. <constraint firstAttribute="width" constant="100" id="fnR-h1-KKP"/>
  251. </constraints>
  252. <variation key="default">
  253. <mask key="constraints">
  254. <exclude reference="ZQd-JY-p3J"/>
  255. <exclude reference="fnR-h1-KKP"/>
  256. </mask>
  257. </variation>
  258. <variation key="heightClass=regular-widthClass=compact">
  259. <mask key="constraints">
  260. <include reference="ZQd-JY-p3J"/>
  261. <include reference="fnR-h1-KKP"/>
  262. </mask>
  263. </variation>
  264. </imageView>
  265. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="21" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sRI-jF-TYZ" customClass="CustomLabel">
  266. <rect key="frame" x="-42" y="-21" width="42" height="21"/>
  267. <animations/>
  268. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  269. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  270. <nil key="highlightedColor"/>
  271. </label>
  272. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="21" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7q2-vA-IXJ" customClass="CustomLabel">
  273. <rect key="frame" x="-42" y="-21" width="42" height="21"/>
  274. <animations/>
  275. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  276. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  277. <nil key="highlightedColor"/>
  278. </label>
  279. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xF6-7A-VxO" customClass="CustomCheckBox">
  280. <rect key="frame" x="80" y="415" width="200" height="25"/>
  281. <animations/>
  282. <constraints>
  283. <constraint firstAttribute="height" constant="25" id="VeB-rn-Ocl"/>
  284. <constraint firstAttribute="width" constant="25" id="aKk-8Q-m2b"/>
  285. </constraints>
  286. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  287. <inset key="titleEdgeInsets" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  288. <state key="normal" image="common_checkbox_default">
  289. <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
  290. <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
  291. </state>
  292. <state key="highlighted" image="common_checkbox_checked"/>
  293. <variation key="default">
  294. <mask key="constraints">
  295. <exclude reference="VeB-rn-Ocl"/>
  296. <exclude reference="aKk-8Q-m2b"/>
  297. </mask>
  298. </variation>
  299. <variation key="heightClass=regular-widthClass=compact">
  300. <mask key="constraints">
  301. <include reference="VeB-rn-Ocl"/>
  302. <include reference="aKk-8Q-m2b"/>
  303. </mask>
  304. </variation>
  305. </button>
  306. </subviews>
  307. <animations/>
  308. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  309. <constraints>
  310. <constraint firstItem="7q2-vA-IXJ" firstAttribute="leading" secondItem="457-Hm-o4g" secondAttribute="leading" id="6CP-hN-A5K"/>
  311. <constraint firstItem="oC4-o4-zpd" firstAttribute="centerX" secondItem="457-Hm-o4g" secondAttribute="centerX" id="FLa-C3-6pe"/>
  312. <constraint firstItem="xF6-7A-VxO" firstAttribute="leading" secondItem="457-Hm-o4g" secondAttribute="leading" constant="8" id="FNl-WE-8Mm"/>
  313. <constraint firstItem="xF6-7A-VxO" firstAttribute="top" secondItem="457-Hm-o4g" secondAttribute="top" constant="8" id="LcM-6D-83H"/>
  314. <constraint firstAttribute="bottom" secondItem="7q2-vA-IXJ" secondAttribute="bottom" id="OE3-PE-P0d"/>
  315. <constraint firstItem="sRI-jF-TYZ" firstAttribute="leading" secondItem="457-Hm-o4g" secondAttribute="leading" id="Rly-oF-CvL"/>
  316. <constraint firstItem="sRI-jF-TYZ" firstAttribute="top" secondItem="oC4-o4-zpd" secondAttribute="bottom" constant="8" id="eR5-bP-5xO"/>
  317. <constraint firstAttribute="trailing" secondItem="sRI-jF-TYZ" secondAttribute="trailing" id="gQ6-fb-LKR"/>
  318. <constraint firstItem="7q2-vA-IXJ" firstAttribute="top" secondItem="sRI-jF-TYZ" secondAttribute="bottom" constant="2" id="jdW-Yg-lXi"/>
  319. <constraint firstAttribute="trailing" secondItem="7q2-vA-IXJ" secondAttribute="trailing" id="tcv-jI-NVP"/>
  320. <constraint firstItem="oC4-o4-zpd" firstAttribute="top" secondItem="457-Hm-o4g" secondAttribute="top" constant="8" id="wIJ-y7-Kcu"/>
  321. </constraints>
  322. <variation key="default">
  323. <mask key="subviews">
  324. <exclude reference="oC4-o4-zpd"/>
  325. <exclude reference="sRI-jF-TYZ"/>
  326. <exclude reference="7q2-vA-IXJ"/>
  327. <exclude reference="xF6-7A-VxO"/>
  328. </mask>
  329. <mask key="constraints">
  330. <exclude reference="6CP-hN-A5K"/>
  331. <exclude reference="OE3-PE-P0d"/>
  332. <exclude reference="jdW-Yg-lXi"/>
  333. <exclude reference="tcv-jI-NVP"/>
  334. <exclude reference="Rly-oF-CvL"/>
  335. <exclude reference="eR5-bP-5xO"/>
  336. <exclude reference="gQ6-fb-LKR"/>
  337. <exclude reference="FLa-C3-6pe"/>
  338. <exclude reference="wIJ-y7-Kcu"/>
  339. <exclude reference="FNl-WE-8Mm"/>
  340. <exclude reference="LcM-6D-83H"/>
  341. </mask>
  342. </variation>
  343. <variation key="heightClass=regular-widthClass=compact">
  344. <mask key="subviews">
  345. <include reference="oC4-o4-zpd"/>
  346. <include reference="sRI-jF-TYZ"/>
  347. <include reference="7q2-vA-IXJ"/>
  348. <include reference="xF6-7A-VxO"/>
  349. </mask>
  350. <mask key="constraints">
  351. <include reference="6CP-hN-A5K"/>
  352. <include reference="OE3-PE-P0d"/>
  353. <include reference="jdW-Yg-lXi"/>
  354. <include reference="tcv-jI-NVP"/>
  355. <include reference="Rly-oF-CvL"/>
  356. <exclude reference="eR5-bP-5xO"/>
  357. <include reference="gQ6-fb-LKR"/>
  358. <include reference="FLa-C3-6pe"/>
  359. <include reference="wIJ-y7-Kcu"/>
  360. <include reference="FNl-WE-8Mm"/>
  361. <include reference="LcM-6D-83H"/>
  362. </mask>
  363. </variation>
  364. </view>
  365. </subviews>
  366. <animations/>
  367. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  368. </view>
  369. <animations/>
  370. <constraints>
  371. <constraint firstAttribute="trailing" secondItem="457-Hm-o4g" secondAttribute="trailing" id="R4w-mF-uR7"/>
  372. <constraint firstItem="457-Hm-o4g" firstAttribute="top" secondItem="Y48-UA-qPE" secondAttribute="top" id="YOk-kw-Ffz"/>
  373. <constraint firstItem="457-Hm-o4g" firstAttribute="leading" secondItem="Y48-UA-qPE" secondAttribute="leading" id="ho5-FX-xHT"/>
  374. <constraint firstAttribute="bottom" secondItem="457-Hm-o4g" secondAttribute="bottom" id="m8l-N2-YvC"/>
  375. </constraints>
  376. <size key="customSize" width="160" height="160"/>
  377. <variation key="default">
  378. <mask key="subviews">
  379. <exclude reference="457-Hm-o4g"/>
  380. </mask>
  381. <mask key="constraints">
  382. <exclude reference="R4w-mF-uR7"/>
  383. <exclude reference="YOk-kw-Ffz"/>
  384. <exclude reference="ho5-FX-xHT"/>
  385. <exclude reference="m8l-N2-YvC"/>
  386. </mask>
  387. </variation>
  388. <variation key="heightClass=regular-widthClass=compact">
  389. <mask key="subviews">
  390. <include reference="457-Hm-o4g"/>
  391. </mask>
  392. <mask key="constraints">
  393. <include reference="R4w-mF-uR7"/>
  394. <include reference="YOk-kw-Ffz"/>
  395. <include reference="ho5-FX-xHT"/>
  396. <include reference="m8l-N2-YvC"/>
  397. </mask>
  398. </variation>
  399. <connections>
  400. <outlet property="chkSelect" destination="xF6-7A-VxO" id="ANP-on-79a"/>
  401. <outlet property="imgvMemberIcon" destination="oC4-o4-zpd" id="uHQ-qO-irL"/>
  402. <outlet property="lblNickname" destination="sRI-jF-TYZ" id="bL6-n2-te5"/>
  403. <outlet property="lblStatus" destination="7q2-vA-IXJ" id="84e-09-MUx"/>
  404. </connections>
  405. </collectionViewCell>
  406. <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="160" reuseIdentifier="AddCollectionCellIdentifier" id="E0q-3h-aZh" customClass="HomeMemberAddCollectionCell">
  407. <rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
  408. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  409. <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
  410. <rect key="frame" x="0.0" y="0.0" width="160" height="160"/>
  411. <autoresizingMask key="autoresizingMask"/>
  412. <subviews>
  413. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rPe-eM-rB6" userLabel="View - Container">
  414. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  415. <subviews>
  416. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nSa-kA-74w" customClass="CustomButton">
  417. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  418. <animations/>
  419. <constraints>
  420. <constraint firstAttribute="width" constant="46" id="9Fv-kD-t0r"/>
  421. <constraint firstAttribute="height" constant="30" id="TUL-Ft-H6m"/>
  422. </constraints>
  423. <state key="normal" title="초대"/>
  424. <variation key="default">
  425. <mask key="constraints">
  426. <exclude reference="9Fv-kD-t0r"/>
  427. <exclude reference="TUL-Ft-H6m"/>
  428. </mask>
  429. </variation>
  430. <variation key="heightClass=regular-widthClass=compact">
  431. <mask key="constraints">
  432. <include reference="9Fv-kD-t0r"/>
  433. <include reference="TUL-Ft-H6m"/>
  434. </mask>
  435. </variation>
  436. </button>
  437. </subviews>
  438. <animations/>
  439. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  440. <constraints>
  441. <constraint firstItem="nSa-kA-74w" firstAttribute="centerX" secondItem="rPe-eM-rB6" secondAttribute="centerX" id="reS-fL-FaN"/>
  442. <constraint firstItem="nSa-kA-74w" firstAttribute="centerY" secondItem="rPe-eM-rB6" secondAttribute="centerY" id="tLJ-Mu-r3i"/>
  443. </constraints>
  444. <variation key="default">
  445. <mask key="subviews">
  446. <exclude reference="nSa-kA-74w"/>
  447. </mask>
  448. <mask key="constraints">
  449. <exclude reference="reS-fL-FaN"/>
  450. <exclude reference="tLJ-Mu-r3i"/>
  451. </mask>
  452. </variation>
  453. <variation key="heightClass=regular-widthClass=compact">
  454. <mask key="subviews">
  455. <include reference="nSa-kA-74w"/>
  456. </mask>
  457. <mask key="constraints">
  458. <include reference="reS-fL-FaN"/>
  459. <include reference="tLJ-Mu-r3i"/>
  460. </mask>
  461. </variation>
  462. </view>
  463. </subviews>
  464. <animations/>
  465. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  466. </view>
  467. <animations/>
  468. <constraints>
  469. <constraint firstAttribute="bottom" secondItem="rPe-eM-rB6" secondAttribute="bottom" id="7Nd-O3-7Pg"/>
  470. <constraint firstAttribute="trailing" secondItem="rPe-eM-rB6" secondAttribute="trailing" id="DGI-3A-7pU"/>
  471. <constraint firstItem="rPe-eM-rB6" firstAttribute="leading" secondItem="E0q-3h-aZh" secondAttribute="leading" id="KWX-mB-InB"/>
  472. <constraint firstItem="rPe-eM-rB6" firstAttribute="top" secondItem="E0q-3h-aZh" secondAttribute="top" id="h9w-UV-qUA"/>
  473. </constraints>
  474. <size key="customSize" width="160" height="160"/>
  475. <variation key="default">
  476. <mask key="subviews">
  477. <exclude reference="rPe-eM-rB6"/>
  478. </mask>
  479. <mask key="constraints">
  480. <exclude reference="7Nd-O3-7Pg"/>
  481. <exclude reference="DGI-3A-7pU"/>
  482. <exclude reference="KWX-mB-InB"/>
  483. <exclude reference="h9w-UV-qUA"/>
  484. </mask>
  485. </variation>
  486. <variation key="heightClass=regular-widthClass=compact">
  487. <mask key="subviews">
  488. <include reference="rPe-eM-rB6"/>
  489. </mask>
  490. <mask key="constraints">
  491. <include reference="7Nd-O3-7Pg"/>
  492. <include reference="DGI-3A-7pU"/>
  493. <include reference="KWX-mB-InB"/>
  494. <include reference="h9w-UV-qUA"/>
  495. </mask>
  496. </variation>
  497. <connections>
  498. <outlet property="btnAdd" destination="nSa-kA-74w" id="xG6-NI-7Yi"/>
  499. </connections>
  500. </collectionViewCell>
  501. </cells>
  502. <collectionReusableView key="sectionFooterView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="FooterIdentifier" id="41f-mD-her" customClass="HomeMemberCollectionFooterView">
  503. <autoresizingMask key="autoresizingMask"/>
  504. <subviews>
  505. <view contentMode="scaleToFill" placeholderIntrinsicWidth="320" placeholderIntrinsicHeight="160" translatesAutoresizingMaskIntoConstraints="NO" id="ikh-Ij-LRr">
  506. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  507. <subviews>
  508. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yyT-zs-yCX" customClass="CustomButton">
  509. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  510. <animations/>
  511. <constraints>
  512. <constraint firstAttribute="width" constant="46" id="Y6u-GF-1uX"/>
  513. <constraint firstAttribute="height" constant="30" id="bFK-5V-jJe"/>
  514. </constraints>
  515. <state key="normal" title="초대"/>
  516. <variation key="default">
  517. <mask key="constraints">
  518. <exclude reference="Y6u-GF-1uX"/>
  519. <exclude reference="bFK-5V-jJe"/>
  520. </mask>
  521. </variation>
  522. <variation key="heightClass=regular-widthClass=compact" misplaced="YES">
  523. <rect key="frame" x="97" y="65" width="46" height="30"/>
  524. <mask key="constraints">
  525. <include reference="Y6u-GF-1uX"/>
  526. <include reference="bFK-5V-jJe"/>
  527. </mask>
  528. </variation>
  529. </button>
  530. </subviews>
  531. <animations/>
  532. <color key="backgroundColor" red="1" green="0.50196081400000003" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  533. <constraints>
  534. <constraint firstItem="yyT-zs-yCX" firstAttribute="centerX" secondItem="ikh-Ij-LRr" secondAttribute="centerX" id="7AL-Ep-QJU"/>
  535. <constraint firstItem="yyT-zs-yCX" firstAttribute="centerY" secondItem="ikh-Ij-LRr" secondAttribute="centerY" id="td9-H0-IkR"/>
  536. </constraints>
  537. <variation key="default">
  538. <mask key="subviews">
  539. <exclude reference="yyT-zs-yCX"/>
  540. </mask>
  541. <mask key="constraints">
  542. <exclude reference="7AL-Ep-QJU"/>
  543. <exclude reference="td9-H0-IkR"/>
  544. </mask>
  545. </variation>
  546. <variation key="heightClass=regular-widthClass=compact" misplaced="YES">
  547. <rect key="frame" x="0.0" y="0.0" width="240" height="160"/>
  548. <mask key="subviews">
  549. <include reference="yyT-zs-yCX"/>
  550. </mask>
  551. <mask key="constraints">
  552. <include reference="7AL-Ep-QJU"/>
  553. <include reference="td9-H0-IkR"/>
  554. </mask>
  555. </variation>
  556. </view>
  557. </subviews>
  558. <animations/>
  559. <constraints>
  560. <constraint firstItem="ikh-Ij-LRr" firstAttribute="leading" secondItem="41f-mD-her" secondAttribute="leading" id="Fcf-0o-M2p"/>
  561. <constraint firstAttribute="trailing" secondItem="ikh-Ij-LRr" secondAttribute="trailing" id="K5z-SR-QUg"/>
  562. <constraint firstAttribute="bottom" secondItem="ikh-Ij-LRr" secondAttribute="bottom" id="ZqE-Qm-ydz"/>
  563. <constraint firstItem="ikh-Ij-LRr" firstAttribute="top" secondItem="41f-mD-her" secondAttribute="top" id="uJl-xp-0eh"/>
  564. </constraints>
  565. <variation key="default">
  566. <mask key="subviews">
  567. <exclude reference="ikh-Ij-LRr"/>
  568. </mask>
  569. <mask key="constraints">
  570. <exclude reference="Fcf-0o-M2p"/>
  571. <exclude reference="K5z-SR-QUg"/>
  572. <exclude reference="ZqE-Qm-ydz"/>
  573. <exclude reference="uJl-xp-0eh"/>
  574. </mask>
  575. </variation>
  576. <variation key="heightClass=regular-widthClass=compact">
  577. <mask key="subviews">
  578. <include reference="ikh-Ij-LRr"/>
  579. </mask>
  580. <mask key="constraints">
  581. <include reference="Fcf-0o-M2p"/>
  582. <include reference="K5z-SR-QUg"/>
  583. <include reference="ZqE-Qm-ydz"/>
  584. <include reference="uJl-xp-0eh"/>
  585. </mask>
  586. </variation>
  587. <connections>
  588. <outlet property="btnAdd" destination="yyT-zs-yCX" id="eGX-mK-D32"/>
  589. </connections>
  590. </collectionReusableView>
  591. </collectionView>
  592. </subviews>
  593. <animations/>
  594. <constraints>
  595. <constraint firstAttribute="trailing" secondItem="l0a-wm-olW" secondAttribute="trailing" id="Db1-FS-mYm"/>
  596. <constraint firstAttribute="bottom" secondItem="1BG-fl-tMC" secondAttribute="bottom" constant="70" id="O5p-VA-klX"/>
  597. <constraint firstItem="1BG-fl-tMC" firstAttribute="leading" secondItem="cgw-Um-cGw" secondAttribute="leading" id="XdC-zV-cUI"/>
  598. <constraint firstAttribute="trailing" secondItem="1BG-fl-tMC" secondAttribute="trailing" id="YHl-t1-60r"/>
  599. <constraint firstItem="1BG-fl-tMC" firstAttribute="top" secondItem="l0a-wm-olW" secondAttribute="bottom" id="bKl-6r-OUv"/>
  600. <constraint firstItem="l0a-wm-olW" firstAttribute="top" secondItem="cgw-Um-cGw" secondAttribute="top" id="hyE-w4-aQ9"/>
  601. <constraint firstItem="l0a-wm-olW" firstAttribute="leading" secondItem="cgw-Um-cGw" secondAttribute="leading" id="tth-uM-k5b"/>
  602. </constraints>
  603. <variation key="default">
  604. <mask key="subviews">
  605. <exclude reference="l0a-wm-olW"/>
  606. <exclude reference="1BG-fl-tMC"/>
  607. </mask>
  608. <mask key="constraints">
  609. <exclude reference="O5p-VA-klX"/>
  610. <exclude reference="XdC-zV-cUI"/>
  611. <exclude reference="YHl-t1-60r"/>
  612. <exclude reference="bKl-6r-OUv"/>
  613. <exclude reference="Db1-FS-mYm"/>
  614. <exclude reference="hyE-w4-aQ9"/>
  615. <exclude reference="tth-uM-k5b"/>
  616. </mask>
  617. </variation>
  618. <variation key="heightClass=regular-widthClass=compact">
  619. <mask key="subviews">
  620. <include reference="l0a-wm-olW"/>
  621. <include reference="1BG-fl-tMC"/>
  622. </mask>
  623. <mask key="constraints">
  624. <include reference="O5p-VA-klX"/>
  625. <include reference="XdC-zV-cUI"/>
  626. <include reference="YHl-t1-60r"/>
  627. <include reference="bKl-6r-OUv"/>
  628. <include reference="Db1-FS-mYm"/>
  629. <include reference="hyE-w4-aQ9"/>
  630. <include reference="tth-uM-k5b"/>
  631. </mask>
  632. </variation>
  633. </view>
  634. </subviews>
  635. <animations/>
  636. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  637. <constraints>
  638. <constraint firstItem="cgw-Um-cGw" firstAttribute="top" secondItem="FRX-jq-RY9" secondAttribute="bottom" constant="-20" id="3gE-oH-Ndo"/>
  639. <constraint firstItem="uin-sv-GXR" firstAttribute="top" secondItem="cgw-Um-cGw" secondAttribute="bottom" id="Rbk-2o-wXs"/>
  640. <constraint firstItem="cgw-Um-cGw" firstAttribute="leading" secondItem="bEt-FP-UIs" secondAttribute="leading" id="XCL-yV-xkb"/>
  641. <constraint firstAttribute="trailing" secondItem="cgw-Um-cGw" secondAttribute="trailing" id="sVd-K5-zWy"/>
  642. </constraints>
  643. </view>
  644. <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
  645. <connections>
  646. <outlet property="collectionView" destination="1BG-fl-tMC" id="fqb-pb-riZ"/>
  647. <outlet property="constraintEditModeRight" destination="8Ps-j5-gDq" id="fIl-dq-Oc9"/>
  648. <outlet property="editModeView" destination="JFO-nI-N8s" id="8r6-TC-62M"/>
  649. </connections>
  650. </viewController>
  651. <placeholder placeholderIdentifier="IBFirstResponder" id="36W-bX-YKt" userLabel="First Responder" sceneMemberID="firstResponder"/>
  652. </objects>
  653. <point key="canvasLocation" x="-100.5" y="139.5"/>
  654. </scene>
  655. <!--Home Member Add View Controller-->
  656. <scene sceneID="oTq-tr-syh">
  657. <objects>
  658. <viewController storyboardIdentifier="HomeMemberAddViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Yr1-gT-mtB" customClass="HomeMemberAddViewController" sceneMemberID="viewController">
  659. <layoutGuides>
  660. <viewControllerLayoutGuide type="top" id="KQQ-5O-lRe"/>
  661. <viewControllerLayoutGuide type="bottom" id="s4X-OA-DAN"/>
  662. </layoutGuides>
  663. <view key="view" contentMode="scaleToFill" id="yfE-Vt-LnN" userLabel="View - ViewController">
  664. <rect key="frame" x="0.0" y="64" width="320" height="568"/>
  665. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  666. <subviews>
  667. <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="v4R-Kt-fEY" userLabel="View - Main">
  668. <rect key="frame" x="0.0" y="80" width="320" height="488"/>
  669. <subviews>
  670. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rVW-0w-j5T" userLabel="View - header">
  671. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  672. <subviews>
  673. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="멤버초대" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5gJ-ZB-9vs">
  674. <rect key="frame" x="-42" y="-21" width="42" height="21"/>
  675. <animations/>
  676. <constraints>
  677. <constraint firstAttribute="width" constant="56" id="haG-mL-8OC">
  678. <variation key="heightClass=regular-widthClass=compact" constant="200"/>
  679. </constraint>
  680. </constraints>
  681. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  682. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  683. <nil key="highlightedColor"/>
  684. <variation key="default">
  685. <mask key="constraints">
  686. <exclude reference="haG-mL-8OC"/>
  687. </mask>
  688. </variation>
  689. <variation key="heightClass=regular-widthClass=compact">
  690. <mask key="constraints">
  691. <include reference="haG-mL-8OC"/>
  692. </mask>
  693. </variation>
  694. </label>
  695. </subviews>
  696. <animations/>
  697. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
  698. <constraints>
  699. <constraint firstItem="5gJ-ZB-9vs" firstAttribute="leading" secondItem="rVW-0w-j5T" secondAttribute="leading" constant="10" id="1RT-bZ-4fG"/>
  700. <constraint firstAttribute="bottom" secondItem="5gJ-ZB-9vs" secondAttribute="bottom" constant="22" id="63G-d9-5cp">
  701. <variation key="heightClass=regular-widthClass=compact" constant="20"/>
  702. </constraint>
  703. <constraint firstItem="5gJ-ZB-9vs" firstAttribute="top" secondItem="rVW-0w-j5T" secondAttribute="top" constant="43" id="8Qg-7d-EGY">
  704. <variation key="heightClass=regular-widthClass=compact" constant="30"/>
  705. </constraint>
  706. <constraint firstAttribute="height" constant="80" id="Ypy-tj-dbY"/>
  707. </constraints>
  708. <variation key="default">
  709. <mask key="subviews">
  710. <exclude reference="5gJ-ZB-9vs"/>
  711. </mask>
  712. <mask key="constraints">
  713. <exclude reference="Ypy-tj-dbY"/>
  714. <exclude reference="1RT-bZ-4fG"/>
  715. <exclude reference="63G-d9-5cp"/>
  716. <exclude reference="8Qg-7d-EGY"/>
  717. </mask>
  718. </variation>
  719. <variation key="heightClass=regular-widthClass=compact">
  720. <mask key="subviews">
  721. <include reference="5gJ-ZB-9vs"/>
  722. </mask>
  723. <mask key="constraints">
  724. <include reference="Ypy-tj-dbY"/>
  725. <include reference="1RT-bZ-4fG"/>
  726. <include reference="63G-d9-5cp"/>
  727. <include reference="8Qg-7d-EGY"/>
  728. </mask>
  729. </variation>
  730. </view>
  731. <tableView clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="Noq-07-mBH">
  732. <rect key="frame" x="0.0" y="0.0" width="320" height="488"/>
  733. <animations/>
  734. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  735. <prototypes>
  736. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="AddedCellIdentifier" rowHeight="50" id="oQJ-JP-VX5" customClass="MemberAddedTableViewCell">
  737. <rect key="frame" x="0.0" y="22" width="320" height="50"/>
  738. <autoresizingMask key="autoresizingMask"/>
  739. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oQJ-JP-VX5" id="Wlf-qL-3oo">
  740. <rect key="frame" x="0.0" y="0.0" width="320" height="49"/>
  741. <autoresizingMask key="autoresizingMask"/>
  742. <subviews>
  743. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" horizontalHuggingPriority="249" placeholderIntrinsicWidth="230" placeholderIntrinsicHeight="30" enabled="NO" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="Ekh-ig-KOo" customClass="CustomTextField">
  744. <rect key="frame" x="-25" y="-30" width="97" height="30"/>
  745. <animations/>
  746. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  747. <textInputTraits key="textInputTraits"/>
  748. </textField>
  749. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="50" placeholderIntrinsicHeight="30" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="F3b-CM-Zq7" customClass="CustomButton">
  750. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  751. <animations/>
  752. <state key="normal" title="삭제"/>
  753. </button>
  754. </subviews>
  755. <animations/>
  756. <constraints>
  757. <constraint firstAttribute="bottom" secondItem="F3b-CM-Zq7" secondAttribute="bottom" constant="9" id="3oK-Ba-C20"/>
  758. <constraint firstAttribute="trailing" secondItem="F3b-CM-Zq7" secondAttribute="trailing" constant="15" id="BnN-H6-Qno"/>
  759. <constraint firstItem="F3b-CM-Zq7" firstAttribute="leading" secondItem="Ekh-ig-KOo" secondAttribute="trailing" constant="5" id="MRQ-Pg-GMZ"/>
  760. <constraint firstItem="Ekh-ig-KOo" firstAttribute="top" secondItem="Wlf-qL-3oo" secondAttribute="top" constant="10" id="VgY-NX-8Dq"/>
  761. <constraint firstItem="F3b-CM-Zq7" firstAttribute="top" secondItem="Wlf-qL-3oo" secondAttribute="top" constant="10" id="hwX-t1-xQv"/>
  762. <constraint firstItem="Ekh-ig-KOo" firstAttribute="leading" secondItem="Wlf-qL-3oo" secondAttribute="leading" constant="20" id="k9W-Hj-GY1"/>
  763. <constraint firstAttribute="bottom" secondItem="Ekh-ig-KOo" secondAttribute="bottom" constant="9" id="lp8-mf-5KN"/>
  764. </constraints>
  765. <variation key="default">
  766. <mask key="subviews">
  767. <exclude reference="Ekh-ig-KOo"/>
  768. <exclude reference="F3b-CM-Zq7"/>
  769. </mask>
  770. <mask key="constraints">
  771. <exclude reference="VgY-NX-8Dq"/>
  772. <exclude reference="k9W-Hj-GY1"/>
  773. <exclude reference="lp8-mf-5KN"/>
  774. <exclude reference="3oK-Ba-C20"/>
  775. <exclude reference="BnN-H6-Qno"/>
  776. <exclude reference="MRQ-Pg-GMZ"/>
  777. <exclude reference="hwX-t1-xQv"/>
  778. </mask>
  779. </variation>
  780. <variation key="heightClass=regular-widthClass=compact">
  781. <mask key="subviews">
  782. <include reference="Ekh-ig-KOo"/>
  783. <include reference="F3b-CM-Zq7"/>
  784. </mask>
  785. <mask key="constraints">
  786. <include reference="VgY-NX-8Dq"/>
  787. <include reference="k9W-Hj-GY1"/>
  788. <include reference="lp8-mf-5KN"/>
  789. <include reference="3oK-Ba-C20"/>
  790. <include reference="BnN-H6-Qno"/>
  791. <include reference="MRQ-Pg-GMZ"/>
  792. <include reference="hwX-t1-xQv"/>
  793. </mask>
  794. </variation>
  795. </tableViewCellContentView>
  796. <animations/>
  797. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  798. <connections>
  799. <outlet property="btnRemove" destination="F3b-CM-Zq7" id="BEw-WW-dfu"/>
  800. <outlet property="txtEmail" destination="Ekh-ig-KOo" id="FZR-qP-ahY"/>
  801. </connections>
  802. </tableViewCell>
  803. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="InputCellIdentifier" rowHeight="50" id="bi8-hy-Fsl" customClass="MemberInputTableViewCell">
  804. <rect key="frame" x="0.0" y="72" width="320" height="50"/>
  805. <autoresizingMask key="autoresizingMask"/>
  806. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bi8-hy-Fsl" id="hII-gY-f50">
  807. <rect key="frame" x="0.0" y="0.0" width="320" height="49"/>
  808. <autoresizingMask key="autoresizingMask"/>
  809. <subviews>
  810. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" horizontalHuggingPriority="249" placeholderIntrinsicWidth="230" placeholderIntrinsicHeight="30" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="YLj-Xv-EHC" customClass="CustomTextField">
  811. <rect key="frame" x="-25" y="-30" width="97" height="30"/>
  812. <animations/>
  813. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  814. <textInputTraits key="textInputTraits"/>
  815. </textField>
  816. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="50" placeholderIntrinsicHeight="30" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="N42-x4-aJH" customClass="CustomButton">
  817. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  818. <animations/>
  819. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  820. <state key="normal" title="추가"/>
  821. </button>
  822. </subviews>
  823. <animations/>
  824. <constraints>
  825. <constraint firstAttribute="bottom" secondItem="N42-x4-aJH" secondAttribute="bottom" constant="9" id="bbl-mD-TSF"/>
  826. <constraint firstItem="N42-x4-aJH" firstAttribute="top" secondItem="hII-gY-f50" secondAttribute="top" constant="10" id="nnb-10-oT8"/>
  827. <constraint firstAttribute="trailing" secondItem="N42-x4-aJH" secondAttribute="trailing" constant="15" id="ntn-nB-WOI"/>
  828. <constraint firstAttribute="bottom" secondItem="YLj-Xv-EHC" secondAttribute="bottom" constant="9" id="ovZ-ls-okk"/>
  829. <constraint firstItem="YLj-Xv-EHC" firstAttribute="top" secondItem="hII-gY-f50" secondAttribute="top" constant="10" id="rM6-CP-DHX"/>
  830. <constraint firstItem="YLj-Xv-EHC" firstAttribute="leading" secondItem="hII-gY-f50" secondAttribute="leading" constant="20" id="rMw-hA-5SV"/>
  831. <constraint firstItem="N42-x4-aJH" firstAttribute="leading" secondItem="YLj-Xv-EHC" secondAttribute="trailing" constant="5" id="yr2-E1-fHd"/>
  832. </constraints>
  833. <variation key="default">
  834. <mask key="subviews">
  835. <exclude reference="YLj-Xv-EHC"/>
  836. <exclude reference="N42-x4-aJH"/>
  837. </mask>
  838. <mask key="constraints">
  839. <exclude reference="ovZ-ls-okk"/>
  840. <exclude reference="rM6-CP-DHX"/>
  841. <exclude reference="rMw-hA-5SV"/>
  842. <exclude reference="bbl-mD-TSF"/>
  843. <exclude reference="nnb-10-oT8"/>
  844. <exclude reference="ntn-nB-WOI"/>
  845. <exclude reference="yr2-E1-fHd"/>
  846. </mask>
  847. </variation>
  848. <variation key="heightClass=regular-widthClass=compact">
  849. <mask key="subviews">
  850. <include reference="YLj-Xv-EHC"/>
  851. <include reference="N42-x4-aJH"/>
  852. </mask>
  853. <mask key="constraints">
  854. <include reference="ovZ-ls-okk"/>
  855. <include reference="rM6-CP-DHX"/>
  856. <include reference="rMw-hA-5SV"/>
  857. <include reference="bbl-mD-TSF"/>
  858. <include reference="nnb-10-oT8"/>
  859. <include reference="ntn-nB-WOI"/>
  860. <include reference="yr2-E1-fHd"/>
  861. </mask>
  862. </variation>
  863. </tableViewCellContentView>
  864. <animations/>
  865. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  866. <connections>
  867. <outlet property="btnAdd" destination="N42-x4-aJH" id="0se-C5-dQd"/>
  868. <outlet property="txtEmail" destination="YLj-Xv-EHC" id="oFe-VP-YPD"/>
  869. </connections>
  870. </tableViewCell>
  871. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="QuizCellIdentifier" rowHeight="200" id="QV3-qo-Sdi" customClass="MemberQuizTableViewCell">
  872. <rect key="frame" x="0.0" y="122" width="320" height="200"/>
  873. <autoresizingMask key="autoresizingMask"/>
  874. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QV3-qo-Sdi" id="jji-K5-hVN">
  875. <rect key="frame" x="0.0" y="0.0" width="320" height="199"/>
  876. <autoresizingMask key="autoresizingMask"/>
  877. <subviews>
  878. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="gCx-L4-VII" customClass="CustomLabel">
  879. <rect key="frame" x="80" y="20" width="220" height="28"/>
  880. <animations/>
  881. <constraints>
  882. <constraint firstAttribute="height" constant="28" id="80E-EU-FCi">
  883. <variation key="heightClass=regular-widthClass=compact" constant="36"/>
  884. </constraint>
  885. </constraints>
  886. <string key="text">우리만 아는 특별한 날을 물어보세요
  887. 진짜 멤버라면 바로 맞출 수 있을거예요</string>
  888. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  889. <nil key="highlightedColor"/>
  890. <userDefinedRuntimeAttributes>
  891. <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
  892. </userDefinedRuntimeAttributes>
  893. </label>
  894. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" borderStyle="roundedRect" placeholder="ex) 우리집 강아지 뽀삐의 생일은?" textAlignment="center" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="qjH-n0-28n" userLabel="txt - Home" customClass="CustomTextField2">
  895. <rect key="frame" x="40" y="205" width="200" height="32"/>
  896. <animations/>
  897. <constraints>
  898. <constraint firstAttribute="height" constant="32" id="LOY-00-yU3">
  899. <variation key="heightClass=regular-widthClass=compact" constant="30"/>
  900. </constraint>
  901. <constraint firstAttribute="width" constant="200" id="veg-8O-JCm">
  902. <variation key="heightClass=regular-widthClass=compact" constant="280"/>
  903. </constraint>
  904. </constraints>
  905. <color key="textColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
  906. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  907. <textInputTraits key="textInputTraits"/>
  908. <userDefinedRuntimeAttributes>
  909. <userDefinedRuntimeAttribute type="boolean" keyPath="autoScrollUp" value="YES"/>
  910. </userDefinedRuntimeAttributes>
  911. <variation key="default">
  912. <mask key="constraints">
  913. <exclude reference="LOY-00-yU3"/>
  914. <exclude reference="veg-8O-JCm"/>
  915. </mask>
  916. </variation>
  917. <variation key="heightClass=regular-widthClass=compact">
  918. <mask key="constraints">
  919. <include reference="LOY-00-yU3"/>
  920. <exclude reference="veg-8O-JCm"/>
  921. </mask>
  922. </variation>
  923. </textField>
  924. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="198" placeholderIntrinsicHeight="32" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="tailTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="KQz-0v-ME4" customClass="DatePickerButton">
  925. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  926. <animations/>
  927. <constraints>
  928. <constraint firstAttribute="height" constant="32" id="1Ig-sl-PJO"/>
  929. <constraint firstAttribute="width" constant="198" id="6J1-sz-Xio">
  930. <variation key="heightClass=regular-widthClass=compact" constant="280"/>
  931. </constraint>
  932. </constraints>
  933. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  934. <state key="normal" title="정답 날짜 입력"/>
  935. <state key="disabled" backgroundImage="tp_01_img_input_bg_02_disable"/>
  936. <state key="highlighted" backgroundImage="tp_01_img_input_bg_02_press"/>
  937. <userDefinedRuntimeAttributes>
  938. <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
  939. <rect key="value" x="20" y="0.0" width="20" height="0.0"/>
  940. </userDefinedRuntimeAttribute>
  941. <userDefinedRuntimeAttribute type="color" keyPath="placeHolderColor">
  942. <color key="value" red="0.80000000000000004" green="0.80000000000000004" blue="0.80000000000000004" alpha="1" colorSpace="calibratedRGB"/>
  943. </userDefinedRuntimeAttribute>
  944. </userDefinedRuntimeAttributes>
  945. <variation key="default">
  946. <mask key="constraints">
  947. <exclude reference="1Ig-sl-PJO"/>
  948. <exclude reference="6J1-sz-Xio"/>
  949. </mask>
  950. </variation>
  951. <variation key="heightClass=regular-widthClass=compact">
  952. <mask key="constraints">
  953. <include reference="1Ig-sl-PJO"/>
  954. <include reference="6J1-sz-Xio"/>
  955. </mask>
  956. </variation>
  957. </button>
  958. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="101" placeholderIntrinsicHeight="36" text="멤버 인증 퀴즈" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iXF-rM-QmT" customClass="CustomLabel">
  959. <rect key="frame" x="80" y="20" width="220" height="28"/>
  960. <animations/>
  961. <constraints>
  962. <constraint firstAttribute="width" constant="101" id="ixw-nB-o7y">
  963. <variation key="heightClass=regular-widthClass=compact" constant="100"/>
  964. </constraint>
  965. <constraint firstAttribute="height" constant="28" id="p8E-Bo-ANw">
  966. <variation key="heightClass=regular-widthClass=compact" constant="30"/>
  967. </constraint>
  968. </constraints>
  969. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  970. <nil key="highlightedColor"/>
  971. <userDefinedRuntimeAttributes>
  972. <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
  973. </userDefinedRuntimeAttributes>
  974. <variation key="default">
  975. <mask key="constraints">
  976. <exclude reference="ixw-nB-o7y"/>
  977. </mask>
  978. </variation>
  979. <variation key="heightClass=regular-widthClass=compact">
  980. <mask key="constraints">
  981. <include reference="ixw-nB-o7y"/>
  982. </mask>
  983. </variation>
  984. </label>
  985. </subviews>
  986. <animations/>
  987. <constraints>
  988. <constraint firstItem="iXF-rM-QmT" firstAttribute="top" secondItem="jji-K5-hVN" secondAttribute="top" constant="15" id="8El-cl-8X1"/>
  989. <constraint firstItem="gCx-L4-VII" firstAttribute="leading" secondItem="jji-K5-hVN" secondAttribute="leading" constant="20" id="Jp4-xz-mex"/>
  990. <constraint firstItem="KQz-0v-ME4" firstAttribute="trailing" secondItem="qjH-n0-28n" secondAttribute="trailing" id="MMZ-UZ-TVG"/>
  991. <constraint firstItem="gCx-L4-VII" firstAttribute="leading" secondItem="qjH-n0-28n" secondAttribute="leading" id="Myh-qm-diP"/>
  992. <constraint firstItem="qjH-n0-28n" firstAttribute="top" secondItem="gCx-L4-VII" secondAttribute="bottom" constant="30" id="VLJ-cP-8XG">
  993. <variation key="heightClass=regular-widthClass=compact" constant="13"/>
  994. </constraint>
  995. <constraint firstItem="KQz-0v-ME4" firstAttribute="leading" secondItem="qjH-n0-28n" secondAttribute="leading" id="cl1-XQ-1gW"/>
  996. <constraint firstItem="KQz-0v-ME4" firstAttribute="top" secondItem="qjH-n0-28n" secondAttribute="bottom" constant="10" id="eBD-ke-bBd"/>
  997. <constraint firstItem="gCx-L4-VII" firstAttribute="top" secondItem="iXF-rM-QmT" secondAttribute="bottom" constant="14" id="eEP-YP-CJ2">
  998. <variation key="heightClass=regular-widthClass=compact" constant="4"/>
  999. </constraint>
  1000. <constraint firstAttribute="trailing" secondItem="gCx-L4-VII" secondAttribute="trailing" constant="20" id="eYA-Qg-efQ"/>
  1001. <constraint firstItem="iXF-rM-QmT" firstAttribute="leading" secondItem="jji-K5-hVN" secondAttribute="leading" constant="10" id="pVP-k6-SvK"/>
  1002. <constraint firstItem="gCx-L4-VII" firstAttribute="trailing" secondItem="qjH-n0-28n" secondAttribute="trailing" id="vpX-AX-DS6"/>
  1003. </constraints>
  1004. <variation key="default">
  1005. <mask key="subviews">
  1006. <exclude reference="qjH-n0-28n"/>
  1007. <exclude reference="KQz-0v-ME4"/>
  1008. <exclude reference="iXF-rM-QmT"/>
  1009. </mask>
  1010. <mask key="constraints">
  1011. <exclude reference="MMZ-UZ-TVG"/>
  1012. <exclude reference="cl1-XQ-1gW"/>
  1013. <exclude reference="eBD-ke-bBd"/>
  1014. <exclude reference="8El-cl-8X1"/>
  1015. <exclude reference="pVP-k6-SvK"/>
  1016. <exclude reference="VLJ-cP-8XG"/>
  1017. <exclude reference="Jp4-xz-mex"/>
  1018. <exclude reference="Myh-qm-diP"/>
  1019. <exclude reference="eEP-YP-CJ2"/>
  1020. <exclude reference="eYA-Qg-efQ"/>
  1021. <exclude reference="vpX-AX-DS6"/>
  1022. </mask>
  1023. </variation>
  1024. <variation key="heightClass=regular-widthClass=compact">
  1025. <mask key="subviews">
  1026. <include reference="qjH-n0-28n"/>
  1027. <include reference="KQz-0v-ME4"/>
  1028. <include reference="iXF-rM-QmT"/>
  1029. </mask>
  1030. <mask key="constraints">
  1031. <include reference="MMZ-UZ-TVG"/>
  1032. <include reference="cl1-XQ-1gW"/>
  1033. <include reference="eBD-ke-bBd"/>
  1034. <include reference="8El-cl-8X1"/>
  1035. <include reference="pVP-k6-SvK"/>
  1036. <include reference="VLJ-cP-8XG"/>
  1037. <include reference="Jp4-xz-mex"/>
  1038. <include reference="Myh-qm-diP"/>
  1039. <include reference="eEP-YP-CJ2"/>
  1040. <include reference="eYA-Qg-efQ"/>
  1041. <include reference="vpX-AX-DS6"/>
  1042. </mask>
  1043. </variation>
  1044. </tableViewCellContentView>
  1045. <animations/>
  1046. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1047. <connections>
  1048. <outlet property="btnDate" destination="KQz-0v-ME4" id="WBv-sI-6SN"/>
  1049. <outlet property="lblQuizInfo" destination="gCx-L4-VII" id="iHv-yD-9d2"/>
  1050. <outlet property="lblQuizTitle" destination="iXF-rM-QmT" id="m2X-jP-I2P"/>
  1051. <outlet property="txtQuestion" destination="qjH-n0-28n" id="nf3-Pu-noK"/>
  1052. </connections>
  1053. </tableViewCell>
  1054. </prototypes>
  1055. </tableView>
  1056. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="QUB-y1-QI4" userLabel="View - actionTab">
  1057. <rect key="frame" x="-20" y="-20" width="360" height="115"/>
  1058. <subviews>
  1059. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="IYm-QS-Q8K" customClass="CustomButton">
  1060. <rect key="frame" x="28" y="25" width="160" height="70"/>
  1061. <animations/>
  1062. <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
  1063. <constraints>
  1064. <constraint firstAttribute="width" relation="greaterThanOrEqual" id="TQf-7M-vzh"/>
  1065. <constraint firstAttribute="height" constant="30" id="bvE-Yg-OAY">
  1066. <variation key="heightClass=regular-widthClass=compact" constant="69"/>
  1067. </constraint>
  1068. </constraints>
  1069. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  1070. <state key="normal" title="초대">
  1071. <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
  1072. </state>
  1073. <variation key="default">
  1074. <mask key="constraints">
  1075. <exclude reference="TQf-7M-vzh"/>
  1076. <exclude reference="bvE-Yg-OAY"/>
  1077. </mask>
  1078. </variation>
  1079. <variation key="heightClass=regular-widthClass=compact">
  1080. <mask key="constraints">
  1081. <include reference="TQf-7M-vzh"/>
  1082. <include reference="bvE-Yg-OAY"/>
  1083. </mask>
  1084. </variation>
  1085. <connections>
  1086. <action selector="btnSendTouched:" destination="Yr1-gT-mtB" eventType="touchUpInside" id="4G3-AI-YN6"/>
  1087. </connections>
  1088. </button>
  1089. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="HK2-wr-JDJ" userLabel="View - line">
  1090. <rect key="frame" x="20" y="20" width="320" height="1"/>
  1091. <animations/>
  1092. <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
  1093. <constraints>
  1094. <constraint firstAttribute="height" constant="1" id="Rrh-Q5-BwS"/>
  1095. </constraints>
  1096. <variation key="default">
  1097. <mask key="constraints">
  1098. <exclude reference="Rrh-Q5-BwS"/>
  1099. </mask>
  1100. </variation>
  1101. <variation key="heightClass=regular-widthClass=compact">
  1102. <mask key="constraints">
  1103. <include reference="Rrh-Q5-BwS"/>
  1104. </mask>
  1105. </variation>
  1106. </view>
  1107. <button opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="249" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Qma-tS-uvo" customClass="CustomButton">
  1108. <rect key="frame" x="172" y="25" width="160" height="70"/>
  1109. <animations/>
  1110. <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
  1111. <constraints>
  1112. <constraint firstAttribute="height" constant="44" id="jdW-gW-gsw">
  1113. <variation key="heightClass=regular-widthClass=compact" constant="70"/>
  1114. </constraint>
  1115. </constraints>
  1116. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  1117. <state key="normal" title="취소">
  1118. <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
  1119. <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
  1120. </state>
  1121. <variation key="default">
  1122. <mask key="constraints">
  1123. <exclude reference="jdW-gW-gsw"/>
  1124. </mask>
  1125. </variation>
  1126. <variation key="heightClass=regular-widthClass=compact">
  1127. <mask key="constraints">
  1128. <exclude reference="jdW-gW-gsw"/>
  1129. </mask>
  1130. </variation>
  1131. <connections>
  1132. <action selector="btnCancelTouched:" destination="Yr1-gT-mtB" eventType="touchUpInside" id="2NU-Uu-a4v"/>
  1133. </connections>
  1134. </button>
  1135. </subviews>
  1136. <animations/>
  1137. <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
  1138. <constraints>
  1139. <constraint firstItem="Qma-tS-uvo" firstAttribute="leading" secondItem="IYm-QS-Q8K" secondAttribute="trailing" id="5QU-iP-ZwU">
  1140. <variation key="heightClass=regular-widthClass=compact" constant="1"/>
  1141. </constraint>
  1142. <constraint firstAttribute="trailing" secondItem="HK2-wr-JDJ" secondAttribute="trailing" id="AUM-au-Zvn"/>
  1143. <constraint firstItem="IYm-QS-Q8K" firstAttribute="height" secondItem="Qma-tS-uvo" secondAttribute="height" id="CQj-D5-twQ"/>
  1144. <constraint firstItem="HK2-wr-JDJ" firstAttribute="leading" secondItem="QUB-y1-QI4" secondAttribute="leading" id="Epa-6r-L9M"/>
  1145. <constraint firstItem="Qma-tS-uvo" firstAttribute="top" secondItem="IYm-QS-Q8K" secondAttribute="top" id="Q9H-La-fUx"/>
  1146. <constraint firstAttribute="trailing" secondItem="Qma-tS-uvo" secondAttribute="trailing" constant="40" id="Z9U-T8-jf5">
  1147. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1148. </constraint>
  1149. <constraint firstItem="HK2-wr-JDJ" firstAttribute="top" secondItem="QUB-y1-QI4" secondAttribute="top" id="ddd-S2-gRC"/>
  1150. <constraint firstItem="IYm-QS-Q8K" firstAttribute="top" secondItem="QUB-y1-QI4" secondAttribute="top" id="iul-0N-zcG">
  1151. <variation key="heightClass=regular-widthClass=compact" constant="1"/>
  1152. </constraint>
  1153. <constraint firstItem="IYm-QS-Q8K" firstAttribute="width" secondItem="Qma-tS-uvo" secondAttribute="width" id="lVo-B1-4of">
  1154. <variation key="heightClass=regular-widthClass=compact" constant="1"/>
  1155. </constraint>
  1156. <constraint firstItem="IYm-QS-Q8K" firstAttribute="leading" secondItem="QUB-y1-QI4" secondAttribute="leading" constant="-2" id="nyY-RZ-Hrh">
  1157. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1158. </constraint>
  1159. <constraint firstAttribute="height" constant="70" id="pIH-Kr-e21"/>
  1160. <constraint firstAttribute="trailing" secondItem="IYm-QS-Q8K" secondAttribute="trailing" constant="202" id="qDf-81-nPx"/>
  1161. </constraints>
  1162. <variation key="default">
  1163. <mask key="constraints">
  1164. <exclude reference="pIH-Kr-e21"/>
  1165. <exclude reference="AUM-au-Zvn"/>
  1166. <exclude reference="Epa-6r-L9M"/>
  1167. <exclude reference="ddd-S2-gRC"/>
  1168. <exclude reference="iul-0N-zcG"/>
  1169. <exclude reference="nyY-RZ-Hrh"/>
  1170. <exclude reference="qDf-81-nPx"/>
  1171. <exclude reference="Z9U-T8-jf5"/>
  1172. </mask>
  1173. </variation>
  1174. <variation key="heightClass=regular-widthClass=compact">
  1175. <mask key="constraints">
  1176. <include reference="pIH-Kr-e21"/>
  1177. <include reference="AUM-au-Zvn"/>
  1178. <include reference="Epa-6r-L9M"/>
  1179. <include reference="ddd-S2-gRC"/>
  1180. <include reference="iul-0N-zcG"/>
  1181. <include reference="nyY-RZ-Hrh"/>
  1182. <exclude reference="qDf-81-nPx"/>
  1183. <include reference="Z9U-T8-jf5"/>
  1184. </mask>
  1185. </variation>
  1186. </view>
  1187. </subviews>
  1188. <animations/>
  1189. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1190. <constraints>
  1191. <constraint firstItem="rVW-0w-j5T" firstAttribute="top" secondItem="v4R-Kt-fEY" secondAttribute="top" id="7YD-lw-t99"/>
  1192. <constraint firstAttribute="trailing" secondItem="rVW-0w-j5T" secondAttribute="trailing" id="GuE-5b-2yM"/>
  1193. <constraint firstItem="QUB-y1-QI4" firstAttribute="top" secondItem="Noq-07-mBH" secondAttribute="bottom" id="VFc-l1-QYh"/>
  1194. <constraint firstAttribute="trailing" secondItem="QUB-y1-QI4" secondAttribute="trailing" id="Xx9-J3-wE3"/>
  1195. <constraint firstAttribute="trailing" secondItem="Noq-07-mBH" secondAttribute="trailing" id="k5J-95-QwR"/>
  1196. <constraint firstAttribute="bottom" secondItem="QUB-y1-QI4" secondAttribute="bottom" id="mnh-D4-KTF">
  1197. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1198. </constraint>
  1199. <constraint firstItem="Noq-07-mBH" firstAttribute="top" secondItem="rVW-0w-j5T" secondAttribute="bottom" id="o2Y-2A-3ru"/>
  1200. <constraint firstItem="QUB-y1-QI4" firstAttribute="leading" secondItem="v4R-Kt-fEY" secondAttribute="leading" id="oQz-ra-GjF"/>
  1201. <constraint firstItem="Noq-07-mBH" firstAttribute="leading" secondItem="v4R-Kt-fEY" secondAttribute="leading" id="q2m-9c-j7z"/>
  1202. <constraint firstItem="rVW-0w-j5T" firstAttribute="leading" secondItem="v4R-Kt-fEY" secondAttribute="leading" id="sdS-Ht-nbN"/>
  1203. </constraints>
  1204. <variation key="default">
  1205. <mask key="subviews">
  1206. <exclude reference="rVW-0w-j5T"/>
  1207. <exclude reference="QUB-y1-QI4"/>
  1208. </mask>
  1209. <mask key="constraints">
  1210. <exclude reference="VFc-l1-QYh"/>
  1211. <exclude reference="Xx9-J3-wE3"/>
  1212. <exclude reference="mnh-D4-KTF"/>
  1213. <exclude reference="oQz-ra-GjF"/>
  1214. <exclude reference="7YD-lw-t99"/>
  1215. <exclude reference="GuE-5b-2yM"/>
  1216. <exclude reference="sdS-Ht-nbN"/>
  1217. <exclude reference="o2Y-2A-3ru"/>
  1218. </mask>
  1219. </variation>
  1220. <variation key="heightClass=regular-widthClass=compact">
  1221. <mask key="subviews">
  1222. <include reference="rVW-0w-j5T"/>
  1223. <include reference="QUB-y1-QI4"/>
  1224. </mask>
  1225. <mask key="constraints">
  1226. <include reference="VFc-l1-QYh"/>
  1227. <include reference="Xx9-J3-wE3"/>
  1228. <include reference="mnh-D4-KTF"/>
  1229. <include reference="oQz-ra-GjF"/>
  1230. <include reference="7YD-lw-t99"/>
  1231. <include reference="GuE-5b-2yM"/>
  1232. <include reference="sdS-Ht-nbN"/>
  1233. <include reference="o2Y-2A-3ru"/>
  1234. </mask>
  1235. </variation>
  1236. </view>
  1237. </subviews>
  1238. <animations/>
  1239. <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  1240. <constraints>
  1241. <constraint firstItem="v4R-Kt-fEY" firstAttribute="top" secondItem="KQQ-5O-lRe" secondAttribute="bottom" id="0lp-Id-f3c">
  1242. <variation key="heightClass=regular-widthClass=compact" constant="-20"/>
  1243. </constraint>
  1244. <constraint firstAttribute="trailing" secondItem="v4R-Kt-fEY" secondAttribute="trailing" id="ZUZ-xm-BAp"/>
  1245. <constraint firstItem="v4R-Kt-fEY" firstAttribute="leading" secondItem="yfE-Vt-LnN" secondAttribute="leading" id="nn6-IQ-iOG"/>
  1246. <constraint firstItem="s4X-OA-DAN" firstAttribute="top" secondItem="v4R-Kt-fEY" secondAttribute="bottom" id="u4P-RP-rpZ"/>
  1247. </constraints>
  1248. </view>
  1249. <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
  1250. <connections>
  1251. <outlet property="btnCancel" destination="Qma-tS-uvo" id="I8R-9E-giF"/>
  1252. <outlet property="btnSend" destination="IYm-QS-Q8K" id="N7d-fY-v45"/>
  1253. <outlet property="tableView" destination="Noq-07-mBH" id="Ufc-Gk-WeB"/>
  1254. </connections>
  1255. </viewController>
  1256. <placeholder placeholderIdentifier="IBFirstResponder" id="I57-kM-n4C" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1257. </objects>
  1258. <point key="canvasLocation" x="532.5" y="139.5"/>
  1259. </scene>
  1260. <!--Home Member Detail View Controller-->
  1261. <scene sceneID="Kec-rM-bFv">
  1262. <objects>
  1263. <viewController storyboardIdentifier="HomeMemberDetailViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Tvb-mD-z3p" customClass="HomeMemberDetailViewController" sceneMemberID="viewController">
  1264. <layoutGuides>
  1265. <viewControllerLayoutGuide type="top" id="OX0-Xf-RZb"/>
  1266. <viewControllerLayoutGuide type="bottom" id="ymm-pu-INM"/>
  1267. </layoutGuides>
  1268. <view key="view" contentMode="scaleToFill" id="fez-SB-RFQ" userLabel="View - ViewController">
  1269. <rect key="frame" x="0.0" y="64" width="320" height="504"/>
  1270. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1271. <subviews>
  1272. <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="fWO-Bc-QMz" userLabel="View - Main">
  1273. <rect key="frame" x="0.0" y="80" width="320" height="488"/>
  1274. <subviews>
  1275. <button opaque="NO" userInteractionEnabled="NO" contentMode="scaleAspectFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PbI-Rd-4YN" userLabel="Button - memberIcon" customClass="CustomButton">
  1276. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  1277. <animations/>
  1278. <constraints>
  1279. <constraint firstAttribute="height" constant="40" id="66c-e7-NZI">
  1280. <variation key="heightClass=regular-widthClass=compact" constant="100"/>
  1281. </constraint>
  1282. <constraint firstAttribute="width" constant="40" id="FQP-3U-IyM">
  1283. <variation key="heightClass=regular-widthClass=compact" constant="100"/>
  1284. </constraint>
  1285. </constraints>
  1286. <state key="normal" image="tp_01_img_singup_membericon_01" backgroundImage="tp_01_img_singup_membericon_bg">
  1287. <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
  1288. </state>
  1289. <userDefinedRuntimeAttributes>
  1290. <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
  1291. <rect key="value" x="-1" y="0.0" width="0.0" height="0.0"/>
  1292. </userDefinedRuntimeAttribute>
  1293. </userDefinedRuntimeAttributes>
  1294. <variation key="default">
  1295. <mask key="constraints">
  1296. <exclude reference="66c-e7-NZI"/>
  1297. <exclude reference="FQP-3U-IyM"/>
  1298. </mask>
  1299. </variation>
  1300. <variation key="heightClass=regular-widthClass=compact">
  1301. <mask key="constraints">
  1302. <include reference="66c-e7-NZI"/>
  1303. <include reference="FQP-3U-IyM"/>
  1304. </mask>
  1305. </variation>
  1306. </button>
  1307. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jHh-6v-dsw">
  1308. <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
  1309. <subviews>
  1310. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="tp_01_img_title_select_bg" translatesAutoresizingMaskIntoConstraints="NO" id="fmY-lx-Xex" customClass="CustomImageView">
  1311. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  1312. <animations/>
  1313. <userDefinedRuntimeAttributes>
  1314. <userDefinedRuntimeAttribute type="rect" keyPath="rectForCap">
  1315. <rect key="value" x="20" y="19" width="20" height="19"/>
  1316. </userDefinedRuntimeAttribute>
  1317. </userDefinedRuntimeAttributes>
  1318. </imageView>
  1319. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="멤버롤" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="crx-cu-D7y" userLabel="Level" customClass="CustomLabel">
  1320. <rect key="frame" x="80" y="20" width="220" height="28"/>
  1321. <animations/>
  1322. <constraints>
  1323. <constraint firstAttribute="height" constant="28" id="nTq-0h-fTB">
  1324. <variation key="heightClass=regular-widthClass=compact" constant="18"/>
  1325. </constraint>
  1326. </constraints>
  1327. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  1328. <color key="textColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
  1329. <nil key="highlightedColor"/>
  1330. <userDefinedRuntimeAttributes>
  1331. <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
  1332. </userDefinedRuntimeAttributes>
  1333. </label>
  1334. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="멤버롤 설명" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XY2-4q-9H2" userLabel="Desc" customClass="CustomLabel">
  1335. <rect key="frame" x="80" y="20" width="220" height="28"/>
  1336. <animations/>
  1337. <constraints>
  1338. <constraint firstAttribute="height" constant="28" id="xyr-7h-fDu">
  1339. <variation key="heightClass=regular-widthClass=compact" constant="15"/>
  1340. </constraint>
  1341. </constraints>
  1342. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  1343. <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  1344. <nil key="highlightedColor"/>
  1345. <userDefinedRuntimeAttributes>
  1346. <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
  1347. </userDefinedRuntimeAttributes>
  1348. </label>
  1349. <button opaque="NO" contentMode="scaleAspectFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="lM3-Q1-bEB" userLabel="Button - memberIcon" customClass="CustomButton">
  1350. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  1351. <animations/>
  1352. <constraints>
  1353. <constraint firstAttribute="height" constant="40" id="LP0-eq-S9l">
  1354. <variation key="heightClass=regular-widthClass=compact" constant="40"/>
  1355. </constraint>
  1356. <constraint firstAttribute="width" constant="40" id="l6Q-rI-Ic3">
  1357. <variation key="heightClass=regular-widthClass=compact" constant="40"/>
  1358. </constraint>
  1359. </constraints>
  1360. <state key="normal" image="common_list_btn_edit">
  1361. <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
  1362. </state>
  1363. <state key="highlighted" image="common_list_btn_edit_press"/>
  1364. <variation key="default">
  1365. <mask key="constraints">
  1366. <exclude reference="LP0-eq-S9l"/>
  1367. <exclude reference="l6Q-rI-Ic3"/>
  1368. </mask>
  1369. </variation>
  1370. <variation key="heightClass=regular-widthClass=compact">
  1371. <mask key="constraints">
  1372. <include reference="LP0-eq-S9l"/>
  1373. <include reference="l6Q-rI-Ic3"/>
  1374. </mask>
  1375. </variation>
  1376. <connections>
  1377. <action selector="btnModifyTouched:" destination="Tvb-mD-z3p" eventType="touchUpInside" id="Tar-fj-FXb"/>
  1378. </connections>
  1379. </button>
  1380. </subviews>
  1381. <animations/>
  1382. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1383. <constraints>
  1384. <constraint firstAttribute="trailing" secondItem="fmY-lx-Xex" secondAttribute="trailing" id="09J-qK-sZn"/>
  1385. <constraint firstItem="crx-cu-D7y" firstAttribute="top" secondItem="jHh-6v-dsw" secondAttribute="top" constant="10" id="41E-qu-66C"/>
  1386. <constraint firstItem="fmY-lx-Xex" firstAttribute="top" secondItem="jHh-6v-dsw" secondAttribute="top" id="9Nl-ab-9cu"/>
  1387. <constraint firstAttribute="trailing" secondItem="lM3-Q1-bEB" secondAttribute="trailing" id="DL7-fq-bSk"/>
  1388. <constraint firstItem="fmY-lx-Xex" firstAttribute="leading" secondItem="jHh-6v-dsw" secondAttribute="leading" id="KgB-PH-oSW"/>
  1389. <constraint firstItem="lM3-Q1-bEB" firstAttribute="top" secondItem="jHh-6v-dsw" secondAttribute="top" id="N4T-oW-xvm"/>
  1390. <constraint firstAttribute="bottom" secondItem="fmY-lx-Xex" secondAttribute="bottom" id="OaV-9q-tX9"/>
  1391. <constraint firstItem="XY2-4q-9H2" firstAttribute="top" secondItem="crx-cu-D7y" secondAttribute="bottom" constant="8" id="giu-BL-3ui"/>
  1392. <constraint firstItem="lM3-Q1-bEB" firstAttribute="leading" secondItem="crx-cu-D7y" secondAttribute="trailing" constant="8" id="hB8-xL-3rM"/>
  1393. <constraint firstItem="crx-cu-D7y" firstAttribute="leading" secondItem="jHh-6v-dsw" secondAttribute="leading" constant="20" id="hKM-FX-wAN"/>
  1394. <constraint firstAttribute="bottom" secondItem="XY2-4q-9H2" secondAttribute="bottom" constant="10" id="mCb-1Q-O6p"/>
  1395. <constraint firstItem="crx-cu-D7y" firstAttribute="trailing" secondItem="XY2-4q-9H2" secondAttribute="trailing" id="niI-Li-AHu"/>
  1396. <constraint firstItem="crx-cu-D7y" firstAttribute="leading" secondItem="XY2-4q-9H2" secondAttribute="leading" id="vHI-zO-zTj"/>
  1397. </constraints>
  1398. <variation key="default">
  1399. <mask key="subviews">
  1400. <exclude reference="fmY-lx-Xex"/>
  1401. <exclude reference="crx-cu-D7y"/>
  1402. <exclude reference="XY2-4q-9H2"/>
  1403. <exclude reference="lM3-Q1-bEB"/>
  1404. </mask>
  1405. <mask key="constraints">
  1406. <exclude reference="DL7-fq-bSk"/>
  1407. <exclude reference="N4T-oW-xvm"/>
  1408. <exclude reference="hB8-xL-3rM"/>
  1409. <exclude reference="giu-BL-3ui"/>
  1410. <exclude reference="mCb-1Q-O6p"/>
  1411. <exclude reference="41E-qu-66C"/>
  1412. <exclude reference="hKM-FX-wAN"/>
  1413. <exclude reference="niI-Li-AHu"/>
  1414. <exclude reference="vHI-zO-zTj"/>
  1415. <exclude reference="09J-qK-sZn"/>
  1416. <exclude reference="9Nl-ab-9cu"/>
  1417. <exclude reference="KgB-PH-oSW"/>
  1418. <exclude reference="OaV-9q-tX9"/>
  1419. </mask>
  1420. </variation>
  1421. <variation key="heightClass=regular-widthClass=compact">
  1422. <mask key="subviews">
  1423. <include reference="fmY-lx-Xex"/>
  1424. <include reference="crx-cu-D7y"/>
  1425. <include reference="XY2-4q-9H2"/>
  1426. <include reference="lM3-Q1-bEB"/>
  1427. </mask>
  1428. <mask key="constraints">
  1429. <include reference="DL7-fq-bSk"/>
  1430. <include reference="N4T-oW-xvm"/>
  1431. <include reference="hB8-xL-3rM"/>
  1432. <include reference="giu-BL-3ui"/>
  1433. <include reference="mCb-1Q-O6p"/>
  1434. <include reference="41E-qu-66C"/>
  1435. <include reference="hKM-FX-wAN"/>
  1436. <include reference="niI-Li-AHu"/>
  1437. <include reference="vHI-zO-zTj"/>
  1438. <include reference="09J-qK-sZn"/>
  1439. <include reference="9Nl-ab-9cu"/>
  1440. <include reference="KgB-PH-oSW"/>
  1441. <include reference="OaV-9q-tX9"/>
  1442. </mask>
  1443. </variation>
  1444. </view>
  1445. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="참여 대기 중 입니다" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="DKB-Q0-dzg" userLabel="Progress" customClass="CustomLabel">
  1446. <rect key="frame" x="80" y="20" width="220" height="28"/>
  1447. <animations/>
  1448. <constraints>
  1449. <constraint firstAttribute="height" constant="28" id="obg-Hg-ju3">
  1450. <variation key="heightClass=regular-widthClass=compact" constant="22"/>
  1451. </constraint>
  1452. </constraints>
  1453. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  1454. <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  1455. <nil key="highlightedColor"/>
  1456. <userDefinedRuntimeAttributes>
  1457. <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
  1458. </userDefinedRuntimeAttributes>
  1459. </label>
  1460. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="200" placeholderIntrinsicHeight="40" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MhF-DW-f9c" customClass="CustomButton">
  1461. <rect key="frame" x="65" y="277" width="150" height="40"/>
  1462. <animations/>
  1463. <constraints>
  1464. <constraint firstAttribute="height" constant="40" id="KvY-JD-3Ld"/>
  1465. <constraint firstAttribute="width" constant="150" id="aUV-5X-w5w"/>
  1466. </constraints>
  1467. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  1468. <state key="normal" title="초대 취소" backgroundImage="tp_01_img_btn_bg_01">
  1469. <color key="titleColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
  1470. <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
  1471. </state>
  1472. <state key="highlighted" backgroundImage="tp_01_img_btn_bg_01_press"/>
  1473. <userDefinedRuntimeAttributes>
  1474. <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
  1475. <rect key="value" x="4" y="4" width="4" height="4"/>
  1476. </userDefinedRuntimeAttribute>
  1477. </userDefinedRuntimeAttributes>
  1478. <variation key="default">
  1479. <mask key="constraints">
  1480. <exclude reference="KvY-JD-3Ld"/>
  1481. <exclude reference="aUV-5X-w5w"/>
  1482. </mask>
  1483. </variation>
  1484. <variation key="heightClass=regular-widthClass=compact">
  1485. <mask key="constraints">
  1486. <include reference="KvY-JD-3Ld"/>
  1487. <include reference="aUV-5X-w5w"/>
  1488. </mask>
  1489. </variation>
  1490. <connections>
  1491. <action selector="btnActionTouched:" destination="Tvb-mD-z3p" eventType="touchUpInside" id="ttb-bV-yar"/>
  1492. </connections>
  1493. </button>
  1494. </subviews>
  1495. <animations/>
  1496. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1497. <constraints>
  1498. <constraint firstAttribute="trailing" secondItem="jHh-6v-dsw" secondAttribute="trailing" constant="20" id="5If-O8-Fkx"/>
  1499. <constraint firstItem="jHh-6v-dsw" firstAttribute="top" secondItem="PbI-Rd-4YN" secondAttribute="bottom" constant="29" id="8PZ-Vx-k6R"/>
  1500. <constraint firstItem="DKB-Q0-dzg" firstAttribute="leading" secondItem="jHh-6v-dsw" secondAttribute="leading" constant="34" id="DQ3-4m-5K0">
  1501. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1502. </constraint>
  1503. <constraint firstAttribute="centerX" secondItem="PbI-Rd-4YN" secondAttribute="centerX" id="K8w-tu-eWa"/>
  1504. <constraint firstItem="MhF-DW-f9c" firstAttribute="top" secondItem="DKB-Q0-dzg" secondAttribute="bottom" constant="40" id="KBX-Gn-pDd"/>
  1505. <constraint firstItem="jHh-6v-dsw" firstAttribute="leading" secondItem="fWO-Bc-QMz" secondAttribute="leading" constant="20" id="PmP-iq-hvr"/>
  1506. <constraint firstItem="PbI-Rd-4YN" firstAttribute="top" secondItem="fWO-Bc-QMz" secondAttribute="top" constant="30" id="QNm-oL-Xgd"/>
  1507. <constraint firstItem="DKB-Q0-dzg" firstAttribute="trailing" secondItem="jHh-6v-dsw" secondAttribute="trailing" constant="-34" id="aLc-gF-xlJ">
  1508. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1509. </constraint>
  1510. <constraint firstAttribute="centerX" secondItem="MhF-DW-f9c" secondAttribute="centerX" id="y3s-Ua-ck8"/>
  1511. <constraint firstItem="DKB-Q0-dzg" firstAttribute="top" secondItem="jHh-6v-dsw" secondAttribute="bottom" constant="53" id="zlB-Xd-F2w"/>
  1512. </constraints>
  1513. <variation key="default">
  1514. <mask key="subviews">
  1515. <exclude reference="PbI-Rd-4YN"/>
  1516. <exclude reference="jHh-6v-dsw"/>
  1517. <exclude reference="DKB-Q0-dzg"/>
  1518. <exclude reference="MhF-DW-f9c"/>
  1519. </mask>
  1520. <mask key="constraints">
  1521. <exclude reference="K8w-tu-eWa"/>
  1522. <exclude reference="QNm-oL-Xgd"/>
  1523. <exclude reference="DQ3-4m-5K0"/>
  1524. <exclude reference="aLc-gF-xlJ"/>
  1525. <exclude reference="zlB-Xd-F2w"/>
  1526. <exclude reference="KBX-Gn-pDd"/>
  1527. <exclude reference="y3s-Ua-ck8"/>
  1528. <exclude reference="5If-O8-Fkx"/>
  1529. <exclude reference="8PZ-Vx-k6R"/>
  1530. <exclude reference="PmP-iq-hvr"/>
  1531. </mask>
  1532. </variation>
  1533. <variation key="heightClass=regular-widthClass=compact">
  1534. <mask key="subviews">
  1535. <include reference="PbI-Rd-4YN"/>
  1536. <include reference="jHh-6v-dsw"/>
  1537. <include reference="DKB-Q0-dzg"/>
  1538. <include reference="MhF-DW-f9c"/>
  1539. </mask>
  1540. <mask key="constraints">
  1541. <include reference="K8w-tu-eWa"/>
  1542. <include reference="QNm-oL-Xgd"/>
  1543. <include reference="DQ3-4m-5K0"/>
  1544. <include reference="aLc-gF-xlJ"/>
  1545. <include reference="zlB-Xd-F2w"/>
  1546. <include reference="KBX-Gn-pDd"/>
  1547. <include reference="y3s-Ua-ck8"/>
  1548. <include reference="5If-O8-Fkx"/>
  1549. <include reference="8PZ-Vx-k6R"/>
  1550. <include reference="PmP-iq-hvr"/>
  1551. </mask>
  1552. </variation>
  1553. </view>
  1554. </subviews>
  1555. <animations/>
  1556. <color key="backgroundColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
  1557. <constraints>
  1558. <constraint firstAttribute="trailing" secondItem="fWO-Bc-QMz" secondAttribute="trailing" id="FGW-Cj-paN"/>
  1559. <constraint firstItem="fWO-Bc-QMz" firstAttribute="top" secondItem="OX0-Xf-RZb" secondAttribute="bottom" constant="16" id="GoQ-uE-Tq5"/>
  1560. <constraint firstItem="ymm-pu-INM" firstAttribute="top" secondItem="fWO-Bc-QMz" secondAttribute="bottom" id="Mvg-QZ-ykA"/>
  1561. <constraint firstItem="fWO-Bc-QMz" firstAttribute="leading" secondItem="fez-SB-RFQ" secondAttribute="leading" id="Yl3-j3-Hri"/>
  1562. </constraints>
  1563. </view>
  1564. <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" translucent="NO" prompted="NO"/>
  1565. <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
  1566. <connections>
  1567. <outlet property="btnAction" destination="MhF-DW-f9c" id="xfk-6t-uJu"/>
  1568. <outlet property="btnEdit" destination="lM3-Q1-bEB" id="ehX-S4-eCY"/>
  1569. <outlet property="btnMemberIcon" destination="PbI-Rd-4YN" id="mBE-zp-sS4"/>
  1570. <outlet property="constraintLblMessageBottom" destination="KBX-Gn-pDd" id="Evg-va-tgT"/>
  1571. <outlet property="constraintLblMessageHeight" destination="obg-Hg-ju3" id="Gyw-Hc-ufE"/>
  1572. <outlet property="lblMemberRole" destination="crx-cu-D7y" id="jBC-Jg-aAC"/>
  1573. <outlet property="lblMemberRoleDesc" destination="XY2-4q-9H2" id="lrE-JC-FHU"/>
  1574. <outlet property="lblMessage" destination="DKB-Q0-dzg" id="CjV-1s-69U"/>
  1575. </connections>
  1576. </viewController>
  1577. <placeholder placeholderIdentifier="IBFirstResponder" id="HUW-P6-TAU" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1578. </objects>
  1579. <point key="canvasLocation" x="1132.5" y="139.5"/>
  1580. </scene>
  1581. <!--Home Member View Controller-->
  1582. <scene sceneID="k5Z-lc-y6u">
  1583. <objects>
  1584. <viewController storyboardIdentifier="HomeMemberViewController2" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="COq-E2-QtF" customClass="HomeMemberViewController" sceneMemberID="viewController">
  1585. <layoutGuides>
  1586. <viewControllerLayoutGuide type="top" id="AKU-yU-AoW"/>
  1587. <viewControllerLayoutGuide type="bottom" id="mBj-9U-pfO"/>
  1588. </layoutGuides>
  1589. <view key="view" contentMode="scaleToFill" id="jjM-bn-0zB" userLabel="View - ViewController">
  1590. <rect key="frame" x="0.0" y="64" width="320" height="568"/>
  1591. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1592. <subviews>
  1593. <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3ze-9b-J00" userLabel="View - Main">
  1594. <rect key="frame" x="0.0" y="80" width="320" height="488"/>
  1595. <subviews>
  1596. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="k5g-z2-KIB" userLabel="View - header">
  1597. <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
  1598. <subviews>
  1599. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="참여 2 / 초대 2" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="glx-SU-bgb">
  1600. <rect key="frame" x="-42" y="-21" width="42" height="21"/>
  1601. <animations/>
  1602. <constraints>
  1603. <constraint firstAttribute="width" constant="56" id="oO9-my-1hv">
  1604. <variation key="heightClass=regular-widthClass=compact" constant="200"/>
  1605. </constraint>
  1606. </constraints>
  1607. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1608. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
  1609. <nil key="highlightedColor"/>
  1610. <variation key="default">
  1611. <mask key="constraints">
  1612. <exclude reference="oO9-my-1hv"/>
  1613. </mask>
  1614. </variation>
  1615. <variation key="heightClass=regular-widthClass=compact">
  1616. <mask key="constraints">
  1617. <include reference="oO9-my-1hv"/>
  1618. </mask>
  1619. </variation>
  1620. </label>
  1621. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cUF-sa-9if">
  1622. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  1623. <animations/>
  1624. <constraints>
  1625. <constraint firstAttribute="width" constant="46" id="5fM-vW-J4V"/>
  1626. </constraints>
  1627. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1628. <state key="normal" title="option"/>
  1629. <variation key="default">
  1630. <mask key="constraints">
  1631. <exclude reference="5fM-vW-J4V"/>
  1632. </mask>
  1633. </variation>
  1634. <variation key="heightClass=regular-widthClass=compact">
  1635. <mask key="constraints">
  1636. <include reference="5fM-vW-J4V"/>
  1637. </mask>
  1638. </variation>
  1639. <connections>
  1640. <action selector="btnOptionTouched:" destination="COq-E2-QtF" eventType="touchUpInside" id="iom-lW-ncf"/>
  1641. </connections>
  1642. </button>
  1643. </subviews>
  1644. <animations/>
  1645. <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
  1646. <constraints>
  1647. <constraint firstItem="glx-SU-bgb" firstAttribute="leading" secondItem="k5g-z2-KIB" secondAttribute="leading" constant="10" id="JZH-XC-jXS"/>
  1648. <constraint firstItem="cUF-sa-9if" firstAttribute="top" secondItem="k5g-z2-KIB" secondAttribute="top" constant="30" id="KpX-GZ-KPR"/>
  1649. <constraint firstItem="glx-SU-bgb" firstAttribute="top" secondItem="k5g-z2-KIB" secondAttribute="top" constant="43" id="MQ6-0V-sj7">
  1650. <variation key="heightClass=regular-widthClass=compact" constant="30"/>
  1651. </constraint>
  1652. <constraint firstAttribute="height" constant="80" id="Sbf-3q-Ivn"/>
  1653. <constraint firstAttribute="trailing" secondItem="cUF-sa-9if" secondAttribute="trailing" constant="8" id="d5k-ns-yfR"/>
  1654. <constraint firstAttribute="bottom" secondItem="cUF-sa-9if" secondAttribute="bottom" constant="20" id="dDz-zb-RQW"/>
  1655. <constraint firstAttribute="bottom" secondItem="glx-SU-bgb" secondAttribute="bottom" constant="22" id="mbz-Gu-nhX">
  1656. <variation key="heightClass=regular-widthClass=compact" constant="20"/>
  1657. </constraint>
  1658. </constraints>
  1659. <variation key="default">
  1660. <mask key="subviews">
  1661. <exclude reference="glx-SU-bgb"/>
  1662. <exclude reference="cUF-sa-9if"/>
  1663. </mask>
  1664. <mask key="constraints">
  1665. <exclude reference="Sbf-3q-Ivn"/>
  1666. <exclude reference="KpX-GZ-KPR"/>
  1667. <exclude reference="d5k-ns-yfR"/>
  1668. <exclude reference="dDz-zb-RQW"/>
  1669. <exclude reference="JZH-XC-jXS"/>
  1670. <exclude reference="MQ6-0V-sj7"/>
  1671. <exclude reference="mbz-Gu-nhX"/>
  1672. </mask>
  1673. </variation>
  1674. <variation key="heightClass=regular-widthClass=compact">
  1675. <mask key="subviews">
  1676. <include reference="glx-SU-bgb"/>
  1677. <include reference="cUF-sa-9if"/>
  1678. </mask>
  1679. <mask key="constraints">
  1680. <include reference="Sbf-3q-Ivn"/>
  1681. <include reference="KpX-GZ-KPR"/>
  1682. <include reference="d5k-ns-yfR"/>
  1683. <include reference="dDz-zb-RQW"/>
  1684. <include reference="JZH-XC-jXS"/>
  1685. <include reference="MQ6-0V-sj7"/>
  1686. <include reference="mbz-Gu-nhX"/>
  1687. </mask>
  1688. </variation>
  1689. </view>
  1690. <tableView clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="100" sectionHeaderHeight="1" sectionFooterHeight="1" translatesAutoresizingMaskIntoConstraints="NO" id="2ry-z2-IUl">
  1691. <rect key="frame" x="0.0" y="0.0" width="320" height="488"/>
  1692. <animations/>
  1693. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1694. <prototypes>
  1695. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HeaderCellIdentifier" rowHeight="40" id="V37-Kr-vld" userLabel="HeaderCellIdentifier" customClass="MemberHeaderTableViewCell">
  1696. <rect key="frame" x="0.0" y="50" width="320" height="40"/>
  1697. <autoresizingMask key="autoresizingMask"/>
  1698. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="V37-Kr-vld" id="gK4-Zk-nv1">
  1699. <rect key="frame" x="0.0" y="0.0" width="320" height="39"/>
  1700. <autoresizingMask key="autoresizingMask"/>
  1701. <subviews>
  1702. <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="h7x-PQ-x8Y" userLabel="View - line">
  1703. <rect key="frame" x="0.0" y="0.0" width="320" height="1"/>
  1704. <animations/>
  1705. <color key="backgroundColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
  1706. <constraints>
  1707. <constraint firstAttribute="height" constant="1" id="fol-hJ-kds"/>
  1708. </constraints>
  1709. </view>
  1710. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bg_s_alpha_30" translatesAutoresizingMaskIntoConstraints="NO" id="d3m-ci-Mnz" customClass="CustomImageView">
  1711. <rect key="frame" x="0.0" y="0.0" width="320" height="40"/>
  1712. <animations/>
  1713. <constraints>
  1714. <constraint firstAttribute="height" constant="40" id="dCf-Nd-2fP"/>
  1715. </constraints>
  1716. </imageView>
  1717. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="280" placeholderIntrinsicHeight="40" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="KYJ-hE-EHq" userLabel="TitlteBtn" customClass="CustomButton">
  1718. <rect key="frame" x="0.0" y="0.0" width="280" height="40"/>
  1719. <animations/>
  1720. <constraints>
  1721. <constraint firstAttribute="height" constant="40" id="yEq-AB-6Oh"/>
  1722. </constraints>
  1723. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1724. <state key="normal" title="이용중인 멤버" image="tp_01_img_arrow_up">
  1725. <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
  1726. </state>
  1727. <state key="highlighted" image="tp_01_img_arrow_down"/>
  1728. <connections>
  1729. <action selector="btnHeaderTouched:" destination="V37-Kr-vld" eventType="touchUpInside" id="N1e-QA-tH3"/>
  1730. </connections>
  1731. </button>
  1732. </subviews>
  1733. <animations/>
  1734. <constraints>
  1735. <constraint firstItem="KYJ-hE-EHq" firstAttribute="leading" secondItem="gK4-Zk-nv1" secondAttribute="leading" id="9pR-7l-Y8S"/>
  1736. <constraint firstItem="d3m-ci-Mnz" firstAttribute="leading" secondItem="gK4-Zk-nv1" secondAttribute="leading" id="CmK-Ah-E3F"/>
  1737. <constraint firstAttribute="trailing" secondItem="h7x-PQ-x8Y" secondAttribute="trailing" id="JSq-mY-RFJ"/>
  1738. <constraint firstItem="d3m-ci-Mnz" firstAttribute="top" secondItem="gK4-Zk-nv1" secondAttribute="top" id="Mao-Du-cYz"/>
  1739. <constraint firstItem="KYJ-hE-EHq" firstAttribute="top" secondItem="gK4-Zk-nv1" secondAttribute="top" id="Op1-JX-Uik"/>
  1740. <constraint firstItem="h7x-PQ-x8Y" firstAttribute="top" secondItem="gK4-Zk-nv1" secondAttribute="top" id="Z25-Af-QwZ"/>
  1741. <constraint firstAttribute="trailing" secondItem="d3m-ci-Mnz" secondAttribute="trailing" id="fKv-WV-gPM"/>
  1742. <constraint firstItem="h7x-PQ-x8Y" firstAttribute="leading" secondItem="gK4-Zk-nv1" secondAttribute="leading" id="gPf-LG-uCW"/>
  1743. <constraint firstAttribute="trailing" secondItem="KYJ-hE-EHq" secondAttribute="trailing" id="uj8-E9-tJq"/>
  1744. </constraints>
  1745. <variation key="default">
  1746. <mask key="constraints">
  1747. <exclude reference="uj8-E9-tJq"/>
  1748. </mask>
  1749. </variation>
  1750. <variation key="heightClass=regular-widthClass=compact">
  1751. <mask key="constraints">
  1752. <include reference="uj8-E9-tJq"/>
  1753. </mask>
  1754. </variation>
  1755. </tableViewCellContentView>
  1756. <animations/>
  1757. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1758. <connections>
  1759. <outlet property="btnHeader" destination="KYJ-hE-EHq" id="zaq-tc-OdE"/>
  1760. </connections>
  1761. </tableViewCell>
  1762. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="CellIdentifier" rowHeight="100" id="phG-bW-jc2" customClass="MemberTableViewCell">
  1763. <rect key="frame" x="0.0" y="90" width="320" height="100"/>
  1764. <autoresizingMask key="autoresizingMask"/>
  1765. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="phG-bW-jc2" id="6uk-Wc-gRJ">
  1766. <rect key="frame" x="0.0" y="0.0" width="320" height="99"/>
  1767. <autoresizingMask key="autoresizingMask"/>
  1768. <subviews>
  1769. <button opaque="NO" userInteractionEnabled="NO" contentMode="scaleAspectFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="REU-RA-8ZN" userLabel="Button - memberIcon" customClass="CustomButton">
  1770. <rect key="frame" x="-23" y="-15" width="46" height="30"/>
  1771. <animations/>
  1772. <constraints>
  1773. <constraint firstAttribute="width" constant="40" id="Jmu-uy-70p">
  1774. <variation key="heightClass=regular-widthClass=compact" constant="60"/>
  1775. </constraint>
  1776. <constraint firstAttribute="height" constant="40" id="ecM-LO-gcu">
  1777. <variation key="heightClass=regular-widthClass=compact" constant="60"/>
  1778. </constraint>
  1779. </constraints>
  1780. <state key="normal" image="tp_01_img_singup_membericon_01" backgroundImage="tp_01_img_singup_membericon_bg">
  1781. <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
  1782. </state>
  1783. <userDefinedRuntimeAttributes>
  1784. <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
  1785. <rect key="value" x="-1" y="0.0" width="0.0" height="0.0"/>
  1786. </userDefinedRuntimeAttribute>
  1787. </userDefinedRuntimeAttributes>
  1788. <variation key="default">
  1789. <mask key="constraints">
  1790. <exclude reference="Jmu-uy-70p"/>
  1791. <exclude reference="ecM-LO-gcu"/>
  1792. </mask>
  1793. </variation>
  1794. <variation key="heightClass=regular-widthClass=compact">
  1795. <mask key="constraints">
  1796. <include reference="Jmu-uy-70p"/>
  1797. <include reference="ecM-LO-gcu"/>
  1798. </mask>
  1799. </variation>
  1800. </button>
  1801. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="220" placeholderIntrinsicHeight="28" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="37W-po-jmF" customClass="CustomLabel">
  1802. <rect key="frame" x="80" y="20" width="220" height="28"/>
  1803. <animations/>
  1804. <constraints>
  1805. <constraint firstAttribute="height" constant="28" id="xPR-DM-Fv5">
  1806. <variation key="heightClass=regular-widthClass=compact" constant="32"/>
  1807. </constraint>
  1808. </constraints>
  1809. <fontDescription key="fontDescription" type="boldSystem" pointSize="13"/>
  1810. <color key="textColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
  1811. <nil key="highlightedColor"/>
  1812. <userDefinedRuntimeAttributes>
  1813. <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
  1814. </userDefinedRuntimeAttributes>
  1815. </label>
  1816. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="220" placeholderIntrinsicHeight="28" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SXq-Qc-V8c" customClass="CustomLabel">
  1817. <rect key="frame" x="80" y="20" width="220" height="28"/>
  1818. <animations/>
  1819. <constraints>
  1820. <constraint firstAttribute="height" constant="28" id="L09-ao-Lwl"/>
  1821. </constraints>
  1822. <fontDescription key="fontDescription" type="boldSystem" pointSize="13"/>
  1823. <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  1824. <nil key="highlightedColor"/>
  1825. <userDefinedRuntimeAttributes>
  1826. <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
  1827. </userDefinedRuntimeAttributes>
  1828. </label>
  1829. </subviews>
  1830. <animations/>
  1831. <constraints>
  1832. <constraint firstItem="SXq-Qc-V8c" firstAttribute="top" secondItem="6uk-Wc-gRJ" secondAttribute="top" constant="20" id="6Tz-LW-zqs"/>
  1833. <constraint firstItem="REU-RA-8ZN" firstAttribute="top" secondItem="6uk-Wc-gRJ" secondAttribute="top" constant="20" id="9MF-YG-ViE"/>
  1834. <constraint firstItem="37W-po-jmF" firstAttribute="trailing" secondItem="SXq-Qc-V8c" secondAttribute="trailing" id="OtA-An-H5e"/>
  1835. <constraint firstItem="37W-po-jmF" firstAttribute="top" secondItem="SXq-Qc-V8c" secondAttribute="bottom" constant="4" id="R5S-Jd-hyE">
  1836. <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
  1837. </constraint>
  1838. <constraint firstItem="37W-po-jmF" firstAttribute="leading" secondItem="REU-RA-8ZN" secondAttribute="trailing" constant="10" id="SPp-vG-P10"/>
  1839. <constraint firstItem="REU-RA-8ZN" firstAttribute="leading" secondItem="6uk-Wc-gRJ" secondAttribute="leading" constant="10" id="bFK-C1-b3C"/>
  1840. <constraint firstItem="37W-po-jmF" firstAttribute="leading" secondItem="SXq-Qc-V8c" secondAttribute="leading" id="lol-zi-3qv"/>
  1841. </constraints>
  1842. <variation key="default">
  1843. <mask key="subviews">
  1844. <exclude reference="REU-RA-8ZN"/>
  1845. <exclude reference="37W-po-jmF"/>
  1846. </mask>
  1847. <mask key="constraints">
  1848. <exclude reference="9MF-YG-ViE"/>
  1849. <exclude reference="bFK-C1-b3C"/>
  1850. <exclude reference="OtA-An-H5e"/>
  1851. <exclude reference="R5S-Jd-hyE"/>
  1852. <exclude reference="SPp-vG-P10"/>
  1853. <exclude reference="lol-zi-3qv"/>
  1854. </mask>
  1855. </variation>
  1856. <variation key="heightClass=regular-widthClass=compact">
  1857. <mask key="subviews">
  1858. <include reference="REU-RA-8ZN"/>
  1859. <include reference="37W-po-jmF"/>
  1860. </mask>
  1861. <mask key="constraints">
  1862. <include reference="9MF-YG-ViE"/>
  1863. <include reference="bFK-C1-b3C"/>
  1864. <include reference="OtA-An-H5e"/>
  1865. <include reference="R5S-Jd-hyE"/>
  1866. <include reference="SPp-vG-P10"/>
  1867. <include reference="lol-zi-3qv"/>
  1868. </mask>
  1869. </variation>
  1870. </tableViewCellContentView>
  1871. <animations/>
  1872. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1873. <connections>
  1874. <outlet property="btnMemberIcon" destination="REU-RA-8ZN" id="s76-aM-XTT"/>
  1875. <outlet property="lblLevel" destination="37W-po-jmF" id="ul7-48-TzQ"/>
  1876. <outlet property="lblTitle" destination="SXq-Qc-V8c" id="uGn-bs-cw4"/>
  1877. </connections>
  1878. </tableViewCell>
  1879. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="AddCellIdentifier" rowHeight="217" id="BBe-SD-dqn" customClass="MemberAddTableViewCell">
  1880. <rect key="frame" x="0.0" y="190" width="320" height="217"/>
  1881. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1882. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="BBe-SD-dqn" id="c4E-3b-eou">
  1883. <rect key="frame" x="0.0" y="0.0" width="320" height="216"/>
  1884. <autoresizingMask key="autoresizingMask"/>
  1885. <subviews>
  1886. <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Am5-JU-ill" userLabel="View - container">
  1887. <rect key="frame" x="16" y="30" width="288" height="130"/>
  1888. <subviews>
  1889. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="주변 사람들을 초대하세요!" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2Em-fc-EXd" customClass="CustomLabel">
  1890. <rect key="frame" x="20" y="0.0" width="248" height="50"/>
  1891. <animations/>
  1892. <constraints>
  1893. <constraint firstAttribute="height" constant="50" id="25p-8R-yQM">
  1894. <variation key="heightClass=regular-widthClass=compact" constant="18"/>
  1895. </constraint>
  1896. <constraint firstAttribute="width" constant="248" id="rmA-J0-RUa"/>
  1897. </constraints>
  1898. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  1899. <color key="textColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
  1900. <nil key="highlightedColor"/>
  1901. </label>
  1902. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ngf-Nm-tc3" customClass="CustomLabel">
  1903. <rect key="frame" x="20" y="0.0" width="248" height="50"/>
  1904. <animations/>
  1905. <constraints>
  1906. <constraint firstAttribute="height" constant="50" id="87I-PE-c2v">
  1907. <variation key="heightClass=regular-widthClass=compact" constant="29"/>
  1908. </constraint>
  1909. <constraint firstAttribute="width" constant="248" id="yZ5-Q3-Eor"/>
  1910. </constraints>
  1911. <string key="text">멤버가 되면 내장치를 같이 쓸 수 있어요
  1912. 편리한 자동 규칙도 함께 만들어보세요</string>
  1913. <fontDescription key="fontDescription" type="boldSystem" pointSize="12"/>
  1914. <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
  1915. <nil key="highlightedColor"/>
  1916. </label>
  1917. <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="80" placeholderIntrinsicHeight="80" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fwL-lY-giu" customClass="CustomButton">
  1918. <rect key="frame" x="104" y="50" width="80" height="80"/>
  1919. <animations/>
  1920. <constraints>
  1921. <constraint firstAttribute="width" constant="80" id="Zf7-s7-rPr"/>
  1922. <constraint firstAttribute="height" constant="80" id="z9Y-pZ-Xt8"/>
  1923. </constraints>
  1924. <state key="normal" image="common_list_btn_add">
  1925. <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
  1926. </state>
  1927. <state key="highlighted" image="common_list_btn_add_press"/>
  1928. <connections>
  1929. <action selector="btnAddTouched:" destination="BBe-SD-dqn" eventType="touchUpInside" id="33o-jd-HvH"/>
  1930. </connections>
  1931. </button>
  1932. </subviews>
  1933. <animations/>
  1934. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1935. <constraints>
  1936. <constraint firstItem="Ngf-Nm-tc3" firstAttribute="top" secondItem="2Em-fc-EXd" secondAttribute="bottom" constant="20" id="0BM-fM-BqZ"/>
  1937. <constraint firstItem="fwL-lY-giu" firstAttribute="top" secondItem="Ngf-Nm-tc3" secondAttribute="bottom" constant="10" id="0Ke-ds-7rs"/>
  1938. <constraint firstItem="fwL-lY-giu" firstAttribute="centerX" secondItem="2Em-fc-EXd" secondAttribute="centerX" id="4Ii-zW-xtD"/>
  1939. <constraint firstItem="Ngf-Nm-tc3" firstAttribute="leading" secondItem="2Em-fc-EXd" secondAttribute="leading" id="5Y7-vQ-zMj"/>
  1940. <constraint firstItem="2Em-fc-EXd" firstAttribute="centerX" secondItem="Am5-JU-ill" secondAttribute="centerX" id="9bl-fK-gDS"/>
  1941. <constraint firstAttribute="bottom" secondItem="fwL-lY-giu" secondAttribute="bottom" id="AlL-zY-l8Z"/>
  1942. <constraint firstItem="2Em-fc-EXd" firstAttribute="top" secondItem="Am5-JU-ill" secondAttribute="top" id="DJ5-5c-B3Z"/>
  1943. <constraint firstAttribute="width" constant="288" id="DXG-6h-L4Q"/>
  1944. <constraint firstItem="Ngf-Nm-tc3" firstAttribute="trailing" secondItem="2Em-fc-EXd" secondAttribute="trailing" id="WSX-NL-tLJ"/>
  1945. <constraint firstAttribute="height" constant="130" id="hcM-yL-YEO">
  1946. <variation key="heightClass=regular-widthClass=compact" constant="157"/>
  1947. </constraint>
  1948. </constraints>
  1949. <variation key="default">
  1950. <mask key="subviews">
  1951. <exclude reference="Ngf-Nm-tc3"/>
  1952. </mask>
  1953. <mask key="constraints">
  1954. <exclude reference="0BM-fM-BqZ"/>
  1955. <exclude reference="5Y7-vQ-zMj"/>
  1956. <exclude reference="WSX-NL-tLJ"/>
  1957. <exclude reference="0Ke-ds-7rs"/>
  1958. </mask>
  1959. </variation>
  1960. <variation key="heightClass=regular-widthClass=compact">
  1961. <mask key="subviews">
  1962. <include reference="Ngf-Nm-tc3"/>
  1963. </mask>
  1964. <mask key="constraints">
  1965. <include reference="0BM-fM-BqZ"/>
  1966. <include reference="5Y7-vQ-zMj"/>
  1967. <include reference="WSX-NL-tLJ"/>
  1968. <include reference="0Ke-ds-7rs"/>
  1969. <exclude reference="AlL-zY-l8Z"/>
  1970. </mask>
  1971. </variation>
  1972. </view>
  1973. </subviews>
  1974. <animations/>
  1975. <constraints>
  1976. <constraint firstAttribute="centerX" secondItem="Am5-JU-ill" secondAttribute="centerX" id="CMu-BS-qLz"/>
  1977. <constraint firstAttribute="centerY" secondItem="Am5-JU-ill" secondAttribute="centerY" id="vxi-mM-J1W">
  1978. <variation key="heightClass=regular-widthClass=compact" constant="0.5"/>
  1979. </constraint>
  1980. </constraints>
  1981. </tableViewCellContentView>
  1982. <animations/>
  1983. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1984. <connections>
  1985. <outlet property="lblAddDesc" destination="Ngf-Nm-tc3" id="HRa-rB-Cdv"/>
  1986. <outlet property="lblAddTitle" destination="2Em-fc-EXd" id="bHv-ad-61W"/>
  1987. </connections>
  1988. </tableViewCell>
  1989. </prototypes>
  1990. </tableView>
  1991. </subviews>
  1992. <animations/>
  1993. <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
  1994. <constraints>
  1995. <constraint firstItem="k5g-z2-KIB" firstAttribute="leading" secondItem="3ze-9b-J00" secondAttribute="leading" id="1Nx-Ep-Gfg"/>
  1996. <constraint firstItem="k5g-z2-KIB" firstAttribute="top" secondItem="3ze-9b-J00" secondAttribute="top" id="1zS-iR-she"/>
  1997. <constraint firstAttribute="trailing" secondItem="k5g-z2-KIB" secondAttribute="trailing" id="6Eh-oc-Sfl"/>
  1998. <constraint firstAttribute="trailing" secondItem="2ry-z2-IUl" secondAttribute="trailing" id="QuV-F9-1ne"/>
  1999. <constraint firstItem="2ry-z2-IUl" firstAttribute="top" secondItem="k5g-z2-KIB" secondAttribute="bottom" id="e84-HU-lbH"/>
  2000. <constraint firstAttribute="bottom" secondItem="2ry-z2-IUl" secondAttribute="bottom" id="jq9-dx-ySZ">
  2001. <variation key="heightClass=regular-widthClass=compact" constant="70"/>
  2002. </constraint>
  2003. <constraint firstItem="2ry-z2-IUl" firstAttribute="leading" secondItem="3ze-9b-J00" secondAttribute="leading" id="rAo-we-9F9"/>
  2004. </constraints>
  2005. <variation key="default">
  2006. <mask key="subviews">
  2007. <exclude reference="k5g-z2-KIB"/>
  2008. </mask>
  2009. <mask key="constraints">
  2010. <exclude reference="1Nx-Ep-Gfg"/>
  2011. <exclude reference="1zS-iR-she"/>
  2012. <exclude reference="6Eh-oc-Sfl"/>
  2013. <exclude reference="e84-HU-lbH"/>
  2014. </mask>
  2015. </variation>
  2016. <variation key="heightClass=regular-widthClass=compact">
  2017. <mask key="subviews">
  2018. <include reference="k5g-z2-KIB"/>
  2019. </mask>
  2020. <mask key="constraints">
  2021. <include reference="1Nx-Ep-Gfg"/>
  2022. <include reference="1zS-iR-she"/>
  2023. <include reference="6Eh-oc-Sfl"/>
  2024. <include reference="e84-HU-lbH"/>
  2025. </mask>
  2026. </variation>
  2027. </view>
  2028. </subviews>
  2029. <animations/>
  2030. <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
  2031. <constraints>
  2032. <constraint firstItem="3ze-9b-J00" firstAttribute="top" secondItem="AKU-yU-AoW" secondAttribute="bottom" constant="-20" id="1qt-Cu-Bex"/>
  2033. <constraint firstItem="3ze-9b-J00" firstAttribute="leading" secondItem="jjM-bn-0zB" secondAttribute="leading" id="28L-mn-aV6"/>
  2034. <constraint firstItem="mBj-9U-pfO" firstAttribute="top" secondItem="3ze-9b-J00" secondAttribute="bottom" id="cUh-m0-pL3"/>
  2035. <constraint firstAttribute="trailing" secondItem="3ze-9b-J00" secondAttribute="trailing" id="o9X-GO-qg9"/>
  2036. </constraints>
  2037. </view>
  2038. <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
  2039. <connections>
  2040. <outlet property="tableView" destination="2ry-z2-IUl" id="CFV-Cn-2qG"/>
  2041. </connections>
  2042. </viewController>
  2043. <placeholder placeholderIdentifier="IBFirstResponder" id="btB-kZ-ZeB" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2044. </objects>
  2045. <point key="canvasLocation" x="-91.5" y="646.5"/>
  2046. </scene>
  2047. </scenes>
  2048. <resources>
  2049. <image name="common_bg_s_alpha_30" width="2" height="2"/>
  2050. <image name="common_checkbox_checked" width="25" height="25"/>
  2051. <image name="common_checkbox_default" width="25" height="25"/>
  2052. <image name="common_list_btn_add" width="80" height="80"/>
  2053. <image name="common_list_btn_add_press" width="80" height="80"/>
  2054. <image name="common_list_btn_edit" width="40" height="40"/>
  2055. <image name="common_list_btn_edit_press" width="40" height="40"/>
  2056. <image name="tp_01_img_arrow_down" width="30" height="40"/>
  2057. <image name="tp_01_img_arrow_up" width="30" height="40"/>
  2058. <image name="tp_01_img_btn_bg_01" width="15" height="15"/>
  2059. <image name="tp_01_img_btn_bg_01_press" width="15" height="15"/>
  2060. <image name="tp_01_img_input_bg_02_disable" width="50" height="32"/>
  2061. <image name="tp_01_img_input_bg_02_press" width="50" height="32"/>
  2062. <image name="tp_01_img_singup_membericon_01" width="228" height="228"/>
  2063. <image name="tp_01_img_singup_membericon_bg" width="100" height="100"/>
  2064. <image name="tp_01_img_title_select_bg" width="100" height="38"/>
  2065. </resources>
  2066. </document>