| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="8191" systemVersion="15B22c" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES">
- <dependencies>
- <deployment identifier="iOS"/>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="8154"/>
- </dependencies>
- <scenes>
- <!--Home Member View Controller-->
- <scene sceneID="XOs-w7-MYy">
- <objects>
- <viewController storyboardIdentifier="HomeMemberViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="rMi-z4-kw5" customClass="HomeMemberViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="FRX-jq-RY9"/>
- <viewControllerLayoutGuide type="bottom" id="uin-sv-GXR"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="bEt-FP-UIs" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="64" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cgw-Um-cGw" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="l0a-wm-olW" userLabel="View - header">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <subviews>
- <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">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="grY-gr-1NS">
- <variation key="heightClass=regular-widthClass=compact" constant="200"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="grY-gr-1NS"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="grY-gr-1NS"/>
- </mask>
- </variation>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="EJS-zY-9Mn">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="46" id="y8g-AQ-MNj"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" title="option"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="y8g-AQ-MNj"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="y8g-AQ-MNj"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnOptionTouched:" destination="rMi-z4-kw5" eventType="touchUpInside" id="wmM-4a-Qv8"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JFO-nI-N8s" userLabel="View - EditMode">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="D4W-8c-ano">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="46" id="l8a-Fk-weA"/>
- <constraint firstAttribute="width" constant="46" id="nV9-1S-ahd"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" title="삭제"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="l8a-Fk-weA"/>
- <exclude reference="nV9-1S-ahd"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="l8a-Fk-weA"/>
- <include reference="nV9-1S-ahd"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnDeleteOnEditModeTouched:" destination="rMi-z4-kw5" eventType="touchUpInside" id="N04-Dr-MwO"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="uLj-Rv-Fp1">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="46" id="FXR-pw-v1e"/>
- <constraint firstAttribute="width" constant="46" id="hlG-Lv-IV6"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" title="닫기"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="FXR-pw-v1e"/>
- <exclude reference="hlG-Lv-IV6"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="FXR-pw-v1e"/>
- <include reference="hlG-Lv-IV6"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCloseOnEditModeTouched:" destination="rMi-z4-kw5" eventType="touchUpInside" id="hnn-N9-2LA"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="uLj-Rv-Fp1" secondAttribute="trailing" id="9hY-di-bbB"/>
- <constraint firstItem="D4W-8c-ano" firstAttribute="top" secondItem="JFO-nI-N8s" secondAttribute="top" constant="5" id="IMf-TE-5jU"/>
- <constraint firstItem="D4W-8c-ano" firstAttribute="leading" secondItem="JFO-nI-N8s" secondAttribute="leading" id="J60-Xr-gYg"/>
- <constraint firstAttribute="bottom" secondItem="uLj-Rv-Fp1" secondAttribute="bottom" constant="5" id="JNY-Ed-6uY"/>
- <constraint firstAttribute="width" constant="140" id="Q5V-nH-Bi1"/>
- <constraint firstAttribute="bottom" secondItem="D4W-8c-ano" secondAttribute="bottom" constant="5" id="p31-AB-ZmA"/>
- <constraint firstItem="uLj-Rv-Fp1" firstAttribute="top" secondItem="JFO-nI-N8s" secondAttribute="top" constant="5" id="vAr-N5-gJQ"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="D4W-8c-ano"/>
- <exclude reference="uLj-Rv-Fp1"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Q5V-nH-Bi1"/>
- <exclude reference="IMf-TE-5jU"/>
- <exclude reference="J60-Xr-gYg"/>
- <exclude reference="p31-AB-ZmA"/>
- <exclude reference="9hY-di-bbB"/>
- <exclude reference="JNY-Ed-6uY"/>
- <exclude reference="vAr-N5-gJQ"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="D4W-8c-ano"/>
- <include reference="uLj-Rv-Fp1"/>
- </mask>
- <mask key="constraints">
- <include reference="Q5V-nH-Bi1"/>
- <include reference="IMf-TE-5jU"/>
- <include reference="J60-Xr-gYg"/>
- <include reference="p31-AB-ZmA"/>
- <include reference="9hY-di-bbB"/>
- <include reference="JNY-Ed-6uY"/>
- <include reference="vAr-N5-gJQ"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="EJS-zY-9Mn" firstAttribute="top" secondItem="l0a-wm-olW" secondAttribute="top" constant="30" id="8Kr-Ye-Ttx"/>
- <constraint firstAttribute="trailing" secondItem="JFO-nI-N8s" secondAttribute="trailing" constant="-140" id="8Ps-j5-gDq"/>
- <constraint firstAttribute="height" constant="80" id="Als-Mn-bZC"/>
- <constraint firstAttribute="trailing" secondItem="EJS-zY-9Mn" secondAttribute="trailing" constant="8" id="Ap2-pP-n4L"/>
- <constraint firstAttribute="bottom" secondItem="EJS-zY-9Mn" secondAttribute="bottom" constant="20" id="b0Q-zv-ftG"/>
- <constraint firstItem="BQC-jo-sr2" firstAttribute="leading" secondItem="l0a-wm-olW" secondAttribute="leading" constant="10" id="dUs-G2-CGC"/>
- <constraint firstAttribute="bottom" secondItem="BQC-jo-sr2" secondAttribute="bottom" constant="22" id="nij-DS-7AU">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="JFO-nI-N8s" firstAttribute="top" secondItem="l0a-wm-olW" secondAttribute="top" constant="25" id="rrB-kh-VXy"/>
- <constraint firstAttribute="bottom" secondItem="JFO-nI-N8s" secondAttribute="bottom" constant="15" id="vxI-xh-7AZ"/>
- <constraint firstItem="BQC-jo-sr2" firstAttribute="top" secondItem="l0a-wm-olW" secondAttribute="top" constant="43" id="xYt-i8-NIf">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="BQC-jo-sr2"/>
- <exclude reference="EJS-zY-9Mn"/>
- <exclude reference="JFO-nI-N8s"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Als-Mn-bZC"/>
- <exclude reference="8Kr-Ye-Ttx"/>
- <exclude reference="Ap2-pP-n4L"/>
- <exclude reference="b0Q-zv-ftG"/>
- <exclude reference="dUs-G2-CGC"/>
- <exclude reference="nij-DS-7AU"/>
- <exclude reference="xYt-i8-NIf"/>
- <exclude reference="8Ps-j5-gDq"/>
- <exclude reference="rrB-kh-VXy"/>
- <exclude reference="vxI-xh-7AZ"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="BQC-jo-sr2"/>
- <include reference="EJS-zY-9Mn"/>
- <include reference="JFO-nI-N8s"/>
- </mask>
- <mask key="constraints">
- <include reference="Als-Mn-bZC"/>
- <include reference="8Kr-Ye-Ttx"/>
- <include reference="Ap2-pP-n4L"/>
- <include reference="b0Q-zv-ftG"/>
- <include reference="dUs-G2-CGC"/>
- <include reference="nij-DS-7AU"/>
- <include reference="xYt-i8-NIf"/>
- <include reference="8Ps-j5-gDq"/>
- <include reference="rrB-kh-VXy"/>
- <include reference="vxI-xh-7AZ"/>
- </mask>
- </variation>
- </view>
- <collectionView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" dataMode="prototypes" translatesAutoresizingMaskIntoConstraints="NO" id="1BG-fl-tMC">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <collectionViewFlowLayout key="collectionViewLayout" minimumLineSpacing="0.0" minimumInteritemSpacing="0.0" id="Eqr-ob-qGR">
- <size key="itemSize" width="160" height="160"/>
- <size key="headerReferenceSize" width="0.0" height="0.0"/>
- <size key="footerReferenceSize" width="320" height="160"/>
- <inset key="sectionInset" minX="0.0" minY="0.0" maxX="0.0" maxY="0.0"/>
- </collectionViewFlowLayout>
- <cells>
- <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="160" reuseIdentifier="CollectionCellIdentifier" id="Y48-UA-qPE" customClass="HomeMemberCollectionCell">
- <rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
- <rect key="frame" x="0.0" y="0.0" width="160" height="160"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="457-Hm-o4g" userLabel="View - Container">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="100" placeholderIntrinsicHeight="100" translatesAutoresizingMaskIntoConstraints="NO" id="oC4-o4-zpd" customClass="CustomImageView">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="100" id="ZQd-JY-p3J"/>
- <constraint firstAttribute="width" constant="100" id="fnR-h1-KKP"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="ZQd-JY-p3J"/>
- <exclude reference="fnR-h1-KKP"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="ZQd-JY-p3J"/>
- <include reference="fnR-h1-KKP"/>
- </mask>
- </variation>
- </imageView>
- <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">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="xF6-7A-VxO" customClass="CustomCheckBox">
- <rect key="frame" x="80" y="415" width="200" height="25"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="25" id="VeB-rn-Ocl"/>
- <constraint firstAttribute="width" constant="25" id="aKk-8Q-m2b"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <inset key="titleEdgeInsets" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <state key="normal" image="common_checkbox_default">
- <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
- <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <state key="highlighted" image="common_checkbox_checked"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="VeB-rn-Ocl"/>
- <exclude reference="aKk-8Q-m2b"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="VeB-rn-Ocl"/>
- <include reference="aKk-8Q-m2b"/>
- </mask>
- </variation>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="7q2-vA-IXJ" firstAttribute="leading" secondItem="457-Hm-o4g" secondAttribute="leading" id="6CP-hN-A5K"/>
- <constraint firstItem="oC4-o4-zpd" firstAttribute="centerX" secondItem="457-Hm-o4g" secondAttribute="centerX" id="FLa-C3-6pe"/>
- <constraint firstItem="xF6-7A-VxO" firstAttribute="leading" secondItem="457-Hm-o4g" secondAttribute="leading" constant="8" id="FNl-WE-8Mm"/>
- <constraint firstItem="xF6-7A-VxO" firstAttribute="top" secondItem="457-Hm-o4g" secondAttribute="top" constant="8" id="LcM-6D-83H"/>
- <constraint firstAttribute="bottom" secondItem="7q2-vA-IXJ" secondAttribute="bottom" id="OE3-PE-P0d"/>
- <constraint firstItem="sRI-jF-TYZ" firstAttribute="leading" secondItem="457-Hm-o4g" secondAttribute="leading" id="Rly-oF-CvL"/>
- <constraint firstItem="sRI-jF-TYZ" firstAttribute="top" secondItem="oC4-o4-zpd" secondAttribute="bottom" constant="8" id="eR5-bP-5xO"/>
- <constraint firstAttribute="trailing" secondItem="sRI-jF-TYZ" secondAttribute="trailing" id="gQ6-fb-LKR"/>
- <constraint firstItem="7q2-vA-IXJ" firstAttribute="top" secondItem="sRI-jF-TYZ" secondAttribute="bottom" constant="2" id="jdW-Yg-lXi"/>
- <constraint firstAttribute="trailing" secondItem="7q2-vA-IXJ" secondAttribute="trailing" id="tcv-jI-NVP"/>
- <constraint firstItem="oC4-o4-zpd" firstAttribute="top" secondItem="457-Hm-o4g" secondAttribute="top" constant="8" id="wIJ-y7-Kcu"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="oC4-o4-zpd"/>
- <exclude reference="sRI-jF-TYZ"/>
- <exclude reference="7q2-vA-IXJ"/>
- <exclude reference="xF6-7A-VxO"/>
- </mask>
- <mask key="constraints">
- <exclude reference="6CP-hN-A5K"/>
- <exclude reference="OE3-PE-P0d"/>
- <exclude reference="jdW-Yg-lXi"/>
- <exclude reference="tcv-jI-NVP"/>
- <exclude reference="Rly-oF-CvL"/>
- <exclude reference="eR5-bP-5xO"/>
- <exclude reference="gQ6-fb-LKR"/>
- <exclude reference="FLa-C3-6pe"/>
- <exclude reference="wIJ-y7-Kcu"/>
- <exclude reference="FNl-WE-8Mm"/>
- <exclude reference="LcM-6D-83H"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="oC4-o4-zpd"/>
- <include reference="sRI-jF-TYZ"/>
- <include reference="7q2-vA-IXJ"/>
- <include reference="xF6-7A-VxO"/>
- </mask>
- <mask key="constraints">
- <include reference="6CP-hN-A5K"/>
- <include reference="OE3-PE-P0d"/>
- <include reference="jdW-Yg-lXi"/>
- <include reference="tcv-jI-NVP"/>
- <include reference="Rly-oF-CvL"/>
- <exclude reference="eR5-bP-5xO"/>
- <include reference="gQ6-fb-LKR"/>
- <include reference="FLa-C3-6pe"/>
- <include reference="wIJ-y7-Kcu"/>
- <include reference="FNl-WE-8Mm"/>
- <include reference="LcM-6D-83H"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- </view>
- <animations/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="457-Hm-o4g" secondAttribute="trailing" id="R4w-mF-uR7"/>
- <constraint firstItem="457-Hm-o4g" firstAttribute="top" secondItem="Y48-UA-qPE" secondAttribute="top" id="YOk-kw-Ffz"/>
- <constraint firstItem="457-Hm-o4g" firstAttribute="leading" secondItem="Y48-UA-qPE" secondAttribute="leading" id="ho5-FX-xHT"/>
- <constraint firstAttribute="bottom" secondItem="457-Hm-o4g" secondAttribute="bottom" id="m8l-N2-YvC"/>
- </constraints>
- <size key="customSize" width="160" height="160"/>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="457-Hm-o4g"/>
- </mask>
- <mask key="constraints">
- <exclude reference="R4w-mF-uR7"/>
- <exclude reference="YOk-kw-Ffz"/>
- <exclude reference="ho5-FX-xHT"/>
- <exclude reference="m8l-N2-YvC"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="457-Hm-o4g"/>
- </mask>
- <mask key="constraints">
- <include reference="R4w-mF-uR7"/>
- <include reference="YOk-kw-Ffz"/>
- <include reference="ho5-FX-xHT"/>
- <include reference="m8l-N2-YvC"/>
- </mask>
- </variation>
- <connections>
- <outlet property="chkSelect" destination="xF6-7A-VxO" id="ANP-on-79a"/>
- <outlet property="imgvMemberIcon" destination="oC4-o4-zpd" id="uHQ-qO-irL"/>
- <outlet property="lblNickname" destination="sRI-jF-TYZ" id="bL6-n2-te5"/>
- <outlet property="lblStatus" destination="7q2-vA-IXJ" id="84e-09-MUx"/>
- </connections>
- </collectionViewCell>
- <collectionViewCell opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="160" reuseIdentifier="AddCollectionCellIdentifier" id="E0q-3h-aZh" customClass="HomeMemberAddCollectionCell">
- <rect key="frame" x="0.0" y="0.0" width="50" height="50"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <view key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center">
- <rect key="frame" x="0.0" y="0.0" width="160" height="160"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rPe-eM-rB6" userLabel="View - Container">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="nSa-kA-74w" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="46" id="9Fv-kD-t0r"/>
- <constraint firstAttribute="height" constant="30" id="TUL-Ft-H6m"/>
- </constraints>
- <state key="normal" title="초대"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="9Fv-kD-t0r"/>
- <exclude reference="TUL-Ft-H6m"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="9Fv-kD-t0r"/>
- <include reference="TUL-Ft-H6m"/>
- </mask>
- </variation>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="nSa-kA-74w" firstAttribute="centerX" secondItem="rPe-eM-rB6" secondAttribute="centerX" id="reS-fL-FaN"/>
- <constraint firstItem="nSa-kA-74w" firstAttribute="centerY" secondItem="rPe-eM-rB6" secondAttribute="centerY" id="tLJ-Mu-r3i"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="nSa-kA-74w"/>
- </mask>
- <mask key="constraints">
- <exclude reference="reS-fL-FaN"/>
- <exclude reference="tLJ-Mu-r3i"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="nSa-kA-74w"/>
- </mask>
- <mask key="constraints">
- <include reference="reS-fL-FaN"/>
- <include reference="tLJ-Mu-r3i"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- </view>
- <animations/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="rPe-eM-rB6" secondAttribute="bottom" id="7Nd-O3-7Pg"/>
- <constraint firstAttribute="trailing" secondItem="rPe-eM-rB6" secondAttribute="trailing" id="DGI-3A-7pU"/>
- <constraint firstItem="rPe-eM-rB6" firstAttribute="leading" secondItem="E0q-3h-aZh" secondAttribute="leading" id="KWX-mB-InB"/>
- <constraint firstItem="rPe-eM-rB6" firstAttribute="top" secondItem="E0q-3h-aZh" secondAttribute="top" id="h9w-UV-qUA"/>
- </constraints>
- <size key="customSize" width="160" height="160"/>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="rPe-eM-rB6"/>
- </mask>
- <mask key="constraints">
- <exclude reference="7Nd-O3-7Pg"/>
- <exclude reference="DGI-3A-7pU"/>
- <exclude reference="KWX-mB-InB"/>
- <exclude reference="h9w-UV-qUA"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="rPe-eM-rB6"/>
- </mask>
- <mask key="constraints">
- <include reference="7Nd-O3-7Pg"/>
- <include reference="DGI-3A-7pU"/>
- <include reference="KWX-mB-InB"/>
- <include reference="h9w-UV-qUA"/>
- </mask>
- </variation>
- <connections>
- <outlet property="btnAdd" destination="nSa-kA-74w" id="xG6-NI-7Yi"/>
- </connections>
- </collectionViewCell>
- </cells>
- <collectionReusableView key="sectionFooterView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" reuseIdentifier="FooterIdentifier" id="41f-mD-her" customClass="HomeMemberCollectionFooterView">
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" placeholderIntrinsicWidth="320" placeholderIntrinsicHeight="160" translatesAutoresizingMaskIntoConstraints="NO" id="ikh-Ij-LRr">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yyT-zs-yCX" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="46" id="Y6u-GF-1uX"/>
- <constraint firstAttribute="height" constant="30" id="bFK-5V-jJe"/>
- </constraints>
- <state key="normal" title="초대"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Y6u-GF-1uX"/>
- <exclude reference="bFK-5V-jJe"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact" misplaced="YES">
- <rect key="frame" x="97" y="65" width="46" height="30"/>
- <mask key="constraints">
- <include reference="Y6u-GF-1uX"/>
- <include reference="bFK-5V-jJe"/>
- </mask>
- </variation>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="1" green="0.50196081400000003" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="yyT-zs-yCX" firstAttribute="centerX" secondItem="ikh-Ij-LRr" secondAttribute="centerX" id="7AL-Ep-QJU"/>
- <constraint firstItem="yyT-zs-yCX" firstAttribute="centerY" secondItem="ikh-Ij-LRr" secondAttribute="centerY" id="td9-H0-IkR"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="yyT-zs-yCX"/>
- </mask>
- <mask key="constraints">
- <exclude reference="7AL-Ep-QJU"/>
- <exclude reference="td9-H0-IkR"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact" misplaced="YES">
- <rect key="frame" x="0.0" y="0.0" width="240" height="160"/>
- <mask key="subviews">
- <include reference="yyT-zs-yCX"/>
- </mask>
- <mask key="constraints">
- <include reference="7AL-Ep-QJU"/>
- <include reference="td9-H0-IkR"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="ikh-Ij-LRr" firstAttribute="leading" secondItem="41f-mD-her" secondAttribute="leading" id="Fcf-0o-M2p"/>
- <constraint firstAttribute="trailing" secondItem="ikh-Ij-LRr" secondAttribute="trailing" id="K5z-SR-QUg"/>
- <constraint firstAttribute="bottom" secondItem="ikh-Ij-LRr" secondAttribute="bottom" id="ZqE-Qm-ydz"/>
- <constraint firstItem="ikh-Ij-LRr" firstAttribute="top" secondItem="41f-mD-her" secondAttribute="top" id="uJl-xp-0eh"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="ikh-Ij-LRr"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Fcf-0o-M2p"/>
- <exclude reference="K5z-SR-QUg"/>
- <exclude reference="ZqE-Qm-ydz"/>
- <exclude reference="uJl-xp-0eh"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="ikh-Ij-LRr"/>
- </mask>
- <mask key="constraints">
- <include reference="Fcf-0o-M2p"/>
- <include reference="K5z-SR-QUg"/>
- <include reference="ZqE-Qm-ydz"/>
- <include reference="uJl-xp-0eh"/>
- </mask>
- </variation>
- <connections>
- <outlet property="btnAdd" destination="yyT-zs-yCX" id="eGX-mK-D32"/>
- </connections>
- </collectionReusableView>
- </collectionView>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="l0a-wm-olW" secondAttribute="trailing" id="Db1-FS-mYm"/>
- <constraint firstAttribute="bottom" secondItem="1BG-fl-tMC" secondAttribute="bottom" constant="70" id="O5p-VA-klX"/>
- <constraint firstItem="1BG-fl-tMC" firstAttribute="leading" secondItem="cgw-Um-cGw" secondAttribute="leading" id="XdC-zV-cUI"/>
- <constraint firstAttribute="trailing" secondItem="1BG-fl-tMC" secondAttribute="trailing" id="YHl-t1-60r"/>
- <constraint firstItem="1BG-fl-tMC" firstAttribute="top" secondItem="l0a-wm-olW" secondAttribute="bottom" id="bKl-6r-OUv"/>
- <constraint firstItem="l0a-wm-olW" firstAttribute="top" secondItem="cgw-Um-cGw" secondAttribute="top" id="hyE-w4-aQ9"/>
- <constraint firstItem="l0a-wm-olW" firstAttribute="leading" secondItem="cgw-Um-cGw" secondAttribute="leading" id="tth-uM-k5b"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="l0a-wm-olW"/>
- <exclude reference="1BG-fl-tMC"/>
- </mask>
- <mask key="constraints">
- <exclude reference="O5p-VA-klX"/>
- <exclude reference="XdC-zV-cUI"/>
- <exclude reference="YHl-t1-60r"/>
- <exclude reference="bKl-6r-OUv"/>
- <exclude reference="Db1-FS-mYm"/>
- <exclude reference="hyE-w4-aQ9"/>
- <exclude reference="tth-uM-k5b"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="l0a-wm-olW"/>
- <include reference="1BG-fl-tMC"/>
- </mask>
- <mask key="constraints">
- <include reference="O5p-VA-klX"/>
- <include reference="XdC-zV-cUI"/>
- <include reference="YHl-t1-60r"/>
- <include reference="bKl-6r-OUv"/>
- <include reference="Db1-FS-mYm"/>
- <include reference="hyE-w4-aQ9"/>
- <include reference="tth-uM-k5b"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="cgw-Um-cGw" firstAttribute="top" secondItem="FRX-jq-RY9" secondAttribute="bottom" constant="-20" id="3gE-oH-Ndo"/>
- <constraint firstItem="uin-sv-GXR" firstAttribute="top" secondItem="cgw-Um-cGw" secondAttribute="bottom" id="Rbk-2o-wXs"/>
- <constraint firstItem="cgw-Um-cGw" firstAttribute="leading" secondItem="bEt-FP-UIs" secondAttribute="leading" id="XCL-yV-xkb"/>
- <constraint firstAttribute="trailing" secondItem="cgw-Um-cGw" secondAttribute="trailing" id="sVd-K5-zWy"/>
- </constraints>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="collectionView" destination="1BG-fl-tMC" id="fqb-pb-riZ"/>
- <outlet property="constraintEditModeRight" destination="8Ps-j5-gDq" id="fIl-dq-Oc9"/>
- <outlet property="editModeView" destination="JFO-nI-N8s" id="8r6-TC-62M"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="36W-bX-YKt" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-100.5" y="139.5"/>
- </scene>
- <!--Home Member Add View Controller-->
- <scene sceneID="oTq-tr-syh">
- <objects>
- <viewController storyboardIdentifier="HomeMemberAddViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Yr1-gT-mtB" customClass="HomeMemberAddViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="KQQ-5O-lRe"/>
- <viewControllerLayoutGuide type="bottom" id="s4X-OA-DAN"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="yfE-Vt-LnN" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="64" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="v4R-Kt-fEY" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rVW-0w-j5T" userLabel="View - header">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <subviews>
- <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">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="haG-mL-8OC">
- <variation key="heightClass=regular-widthClass=compact" constant="200"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="haG-mL-8OC"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="haG-mL-8OC"/>
- </mask>
- </variation>
- </label>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="5gJ-ZB-9vs" firstAttribute="leading" secondItem="rVW-0w-j5T" secondAttribute="leading" constant="10" id="1RT-bZ-4fG"/>
- <constraint firstAttribute="bottom" secondItem="5gJ-ZB-9vs" secondAttribute="bottom" constant="22" id="63G-d9-5cp">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="5gJ-ZB-9vs" firstAttribute="top" secondItem="rVW-0w-j5T" secondAttribute="top" constant="43" id="8Qg-7d-EGY">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstAttribute="height" constant="80" id="Ypy-tj-dbY"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="5gJ-ZB-9vs"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Ypy-tj-dbY"/>
- <exclude reference="1RT-bZ-4fG"/>
- <exclude reference="63G-d9-5cp"/>
- <exclude reference="8Qg-7d-EGY"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="5gJ-ZB-9vs"/>
- </mask>
- <mask key="constraints">
- <include reference="Ypy-tj-dbY"/>
- <include reference="1RT-bZ-4fG"/>
- <include reference="63G-d9-5cp"/>
- <include reference="8Qg-7d-EGY"/>
- </mask>
- </variation>
- </view>
- <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">
- <rect key="frame" x="0.0" y="0.0" width="320" height="488"/>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="AddedCellIdentifier" rowHeight="50" id="oQJ-JP-VX5" customClass="MemberAddedTableViewCell">
- <rect key="frame" x="0.0" y="22" width="320" height="50"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oQJ-JP-VX5" id="Wlf-qL-3oo">
- <rect key="frame" x="0.0" y="0.0" width="320" height="49"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="-25" y="-30" width="97" height="30"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <textInputTraits key="textInputTraits"/>
- </textField>
- <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">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <state key="normal" title="삭제"/>
- </button>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="F3b-CM-Zq7" secondAttribute="bottom" constant="9" id="3oK-Ba-C20"/>
- <constraint firstAttribute="trailing" secondItem="F3b-CM-Zq7" secondAttribute="trailing" constant="15" id="BnN-H6-Qno"/>
- <constraint firstItem="F3b-CM-Zq7" firstAttribute="leading" secondItem="Ekh-ig-KOo" secondAttribute="trailing" constant="5" id="MRQ-Pg-GMZ"/>
- <constraint firstItem="Ekh-ig-KOo" firstAttribute="top" secondItem="Wlf-qL-3oo" secondAttribute="top" constant="10" id="VgY-NX-8Dq"/>
- <constraint firstItem="F3b-CM-Zq7" firstAttribute="top" secondItem="Wlf-qL-3oo" secondAttribute="top" constant="10" id="hwX-t1-xQv"/>
- <constraint firstItem="Ekh-ig-KOo" firstAttribute="leading" secondItem="Wlf-qL-3oo" secondAttribute="leading" constant="20" id="k9W-Hj-GY1"/>
- <constraint firstAttribute="bottom" secondItem="Ekh-ig-KOo" secondAttribute="bottom" constant="9" id="lp8-mf-5KN"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Ekh-ig-KOo"/>
- <exclude reference="F3b-CM-Zq7"/>
- </mask>
- <mask key="constraints">
- <exclude reference="VgY-NX-8Dq"/>
- <exclude reference="k9W-Hj-GY1"/>
- <exclude reference="lp8-mf-5KN"/>
- <exclude reference="3oK-Ba-C20"/>
- <exclude reference="BnN-H6-Qno"/>
- <exclude reference="MRQ-Pg-GMZ"/>
- <exclude reference="hwX-t1-xQv"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Ekh-ig-KOo"/>
- <include reference="F3b-CM-Zq7"/>
- </mask>
- <mask key="constraints">
- <include reference="VgY-NX-8Dq"/>
- <include reference="k9W-Hj-GY1"/>
- <include reference="lp8-mf-5KN"/>
- <include reference="3oK-Ba-C20"/>
- <include reference="BnN-H6-Qno"/>
- <include reference="MRQ-Pg-GMZ"/>
- <include reference="hwX-t1-xQv"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="btnRemove" destination="F3b-CM-Zq7" id="BEw-WW-dfu"/>
- <outlet property="txtEmail" destination="Ekh-ig-KOo" id="FZR-qP-ahY"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="InputCellIdentifier" rowHeight="50" id="bi8-hy-Fsl" customClass="MemberInputTableViewCell">
- <rect key="frame" x="0.0" y="72" width="320" height="50"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bi8-hy-Fsl" id="hII-gY-f50">
- <rect key="frame" x="0.0" y="0.0" width="320" height="49"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="-25" y="-30" width="97" height="30"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <textInputTraits key="textInputTraits"/>
- </textField>
- <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">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" title="추가"/>
- </button>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="N42-x4-aJH" secondAttribute="bottom" constant="9" id="bbl-mD-TSF"/>
- <constraint firstItem="N42-x4-aJH" firstAttribute="top" secondItem="hII-gY-f50" secondAttribute="top" constant="10" id="nnb-10-oT8"/>
- <constraint firstAttribute="trailing" secondItem="N42-x4-aJH" secondAttribute="trailing" constant="15" id="ntn-nB-WOI"/>
- <constraint firstAttribute="bottom" secondItem="YLj-Xv-EHC" secondAttribute="bottom" constant="9" id="ovZ-ls-okk"/>
- <constraint firstItem="YLj-Xv-EHC" firstAttribute="top" secondItem="hII-gY-f50" secondAttribute="top" constant="10" id="rM6-CP-DHX"/>
- <constraint firstItem="YLj-Xv-EHC" firstAttribute="leading" secondItem="hII-gY-f50" secondAttribute="leading" constant="20" id="rMw-hA-5SV"/>
- <constraint firstItem="N42-x4-aJH" firstAttribute="leading" secondItem="YLj-Xv-EHC" secondAttribute="trailing" constant="5" id="yr2-E1-fHd"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="YLj-Xv-EHC"/>
- <exclude reference="N42-x4-aJH"/>
- </mask>
- <mask key="constraints">
- <exclude reference="ovZ-ls-okk"/>
- <exclude reference="rM6-CP-DHX"/>
- <exclude reference="rMw-hA-5SV"/>
- <exclude reference="bbl-mD-TSF"/>
- <exclude reference="nnb-10-oT8"/>
- <exclude reference="ntn-nB-WOI"/>
- <exclude reference="yr2-E1-fHd"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="YLj-Xv-EHC"/>
- <include reference="N42-x4-aJH"/>
- </mask>
- <mask key="constraints">
- <include reference="ovZ-ls-okk"/>
- <include reference="rM6-CP-DHX"/>
- <include reference="rMw-hA-5SV"/>
- <include reference="bbl-mD-TSF"/>
- <include reference="nnb-10-oT8"/>
- <include reference="ntn-nB-WOI"/>
- <include reference="yr2-E1-fHd"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="btnAdd" destination="N42-x4-aJH" id="0se-C5-dQd"/>
- <outlet property="txtEmail" destination="YLj-Xv-EHC" id="oFe-VP-YPD"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="QuizCellIdentifier" rowHeight="200" id="QV3-qo-Sdi" customClass="MemberQuizTableViewCell">
- <rect key="frame" x="0.0" y="122" width="320" height="200"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QV3-qo-Sdi" id="jji-K5-hVN">
- <rect key="frame" x="0.0" y="0.0" width="320" height="199"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="80" y="20" width="220" height="28"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="28" id="80E-EU-FCi">
- <variation key="heightClass=regular-widthClass=compact" constant="36"/>
- </constraint>
- </constraints>
- <string key="text">우리만 아는 특별한 날을 물어보세요
- 진짜 멤버라면 바로 맞출 수 있을거예요</string>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
- </userDefinedRuntimeAttributes>
- </label>
- <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">
- <rect key="frame" x="40" y="205" width="200" height="32"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="32" id="LOY-00-yU3">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstAttribute="width" constant="200" id="veg-8O-JCm">
- <variation key="heightClass=regular-widthClass=compact" constant="280"/>
- </constraint>
- </constraints>
- <color key="textColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
- <textInputTraits key="textInputTraits"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="boolean" keyPath="autoScrollUp" value="YES"/>
- </userDefinedRuntimeAttributes>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="LOY-00-yU3"/>
- <exclude reference="veg-8O-JCm"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="LOY-00-yU3"/>
- <exclude reference="veg-8O-JCm"/>
- </mask>
- </variation>
- </textField>
- <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">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="32" id="1Ig-sl-PJO"/>
- <constraint firstAttribute="width" constant="198" id="6J1-sz-Xio">
- <variation key="heightClass=regular-widthClass=compact" constant="280"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
- <state key="normal" title="정답 날짜 입력"/>
- <state key="disabled" backgroundImage="tp_01_img_input_bg_02_disable"/>
- <state key="highlighted" backgroundImage="tp_01_img_input_bg_02_press"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
- <rect key="value" x="20" y="0.0" width="20" height="0.0"/>
- </userDefinedRuntimeAttribute>
- <userDefinedRuntimeAttribute type="color" keyPath="placeHolderColor">
- <color key="value" red="0.80000000000000004" green="0.80000000000000004" blue="0.80000000000000004" alpha="1" colorSpace="calibratedRGB"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="1Ig-sl-PJO"/>
- <exclude reference="6J1-sz-Xio"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="1Ig-sl-PJO"/>
- <include reference="6J1-sz-Xio"/>
- </mask>
- </variation>
- </button>
- <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">
- <rect key="frame" x="80" y="20" width="220" height="28"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="101" id="ixw-nB-o7y">
- <variation key="heightClass=regular-widthClass=compact" constant="100"/>
- </constraint>
- <constraint firstAttribute="height" constant="28" id="p8E-Bo-ANw">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
- </userDefinedRuntimeAttributes>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="ixw-nB-o7y"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="ixw-nB-o7y"/>
- </mask>
- </variation>
- </label>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="iXF-rM-QmT" firstAttribute="top" secondItem="jji-K5-hVN" secondAttribute="top" constant="15" id="8El-cl-8X1"/>
- <constraint firstItem="gCx-L4-VII" firstAttribute="leading" secondItem="jji-K5-hVN" secondAttribute="leading" constant="20" id="Jp4-xz-mex"/>
- <constraint firstItem="KQz-0v-ME4" firstAttribute="trailing" secondItem="qjH-n0-28n" secondAttribute="trailing" id="MMZ-UZ-TVG"/>
- <constraint firstItem="gCx-L4-VII" firstAttribute="leading" secondItem="qjH-n0-28n" secondAttribute="leading" id="Myh-qm-diP"/>
- <constraint firstItem="qjH-n0-28n" firstAttribute="top" secondItem="gCx-L4-VII" secondAttribute="bottom" constant="30" id="VLJ-cP-8XG">
- <variation key="heightClass=regular-widthClass=compact" constant="13"/>
- </constraint>
- <constraint firstItem="KQz-0v-ME4" firstAttribute="leading" secondItem="qjH-n0-28n" secondAttribute="leading" id="cl1-XQ-1gW"/>
- <constraint firstItem="KQz-0v-ME4" firstAttribute="top" secondItem="qjH-n0-28n" secondAttribute="bottom" constant="10" id="eBD-ke-bBd"/>
- <constraint firstItem="gCx-L4-VII" firstAttribute="top" secondItem="iXF-rM-QmT" secondAttribute="bottom" constant="14" id="eEP-YP-CJ2">
- <variation key="heightClass=regular-widthClass=compact" constant="4"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="gCx-L4-VII" secondAttribute="trailing" constant="20" id="eYA-Qg-efQ"/>
- <constraint firstItem="iXF-rM-QmT" firstAttribute="leading" secondItem="jji-K5-hVN" secondAttribute="leading" constant="10" id="pVP-k6-SvK"/>
- <constraint firstItem="gCx-L4-VII" firstAttribute="trailing" secondItem="qjH-n0-28n" secondAttribute="trailing" id="vpX-AX-DS6"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="qjH-n0-28n"/>
- <exclude reference="KQz-0v-ME4"/>
- <exclude reference="iXF-rM-QmT"/>
- </mask>
- <mask key="constraints">
- <exclude reference="MMZ-UZ-TVG"/>
- <exclude reference="cl1-XQ-1gW"/>
- <exclude reference="eBD-ke-bBd"/>
- <exclude reference="8El-cl-8X1"/>
- <exclude reference="pVP-k6-SvK"/>
- <exclude reference="VLJ-cP-8XG"/>
- <exclude reference="Jp4-xz-mex"/>
- <exclude reference="Myh-qm-diP"/>
- <exclude reference="eEP-YP-CJ2"/>
- <exclude reference="eYA-Qg-efQ"/>
- <exclude reference="vpX-AX-DS6"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="qjH-n0-28n"/>
- <include reference="KQz-0v-ME4"/>
- <include reference="iXF-rM-QmT"/>
- </mask>
- <mask key="constraints">
- <include reference="MMZ-UZ-TVG"/>
- <include reference="cl1-XQ-1gW"/>
- <include reference="eBD-ke-bBd"/>
- <include reference="8El-cl-8X1"/>
- <include reference="pVP-k6-SvK"/>
- <include reference="VLJ-cP-8XG"/>
- <include reference="Jp4-xz-mex"/>
- <include reference="Myh-qm-diP"/>
- <include reference="eEP-YP-CJ2"/>
- <include reference="eYA-Qg-efQ"/>
- <include reference="vpX-AX-DS6"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="btnDate" destination="KQz-0v-ME4" id="WBv-sI-6SN"/>
- <outlet property="lblQuizInfo" destination="gCx-L4-VII" id="iHv-yD-9d2"/>
- <outlet property="lblQuizTitle" destination="iXF-rM-QmT" id="m2X-jP-I2P"/>
- <outlet property="txtQuestion" destination="qjH-n0-28n" id="nf3-Pu-noK"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="QUB-y1-QI4" userLabel="View - actionTab">
- <rect key="frame" x="-20" y="-20" width="360" height="115"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="IYm-QS-Q8K" customClass="CustomButton">
- <rect key="frame" x="28" y="25" width="160" height="70"/>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" id="TQf-7M-vzh"/>
- <constraint firstAttribute="height" constant="30" id="bvE-Yg-OAY">
- <variation key="heightClass=regular-widthClass=compact" constant="69"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <state key="normal" title="초대">
- <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="TQf-7M-vzh"/>
- <exclude reference="bvE-Yg-OAY"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="TQf-7M-vzh"/>
- <include reference="bvE-Yg-OAY"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnSendTouched:" destination="Yr1-gT-mtB" eventType="touchUpInside" id="4G3-AI-YN6"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="HK2-wr-JDJ" userLabel="View - line">
- <rect key="frame" x="20" y="20" width="320" height="1"/>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="Rrh-Q5-BwS"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Rrh-Q5-BwS"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Rrh-Q5-BwS"/>
- </mask>
- </variation>
- </view>
- <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">
- <rect key="frame" x="172" y="25" width="160" height="70"/>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="44" id="jdW-gW-gsw">
- <variation key="heightClass=regular-widthClass=compact" constant="70"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <state key="normal" title="취소">
- <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
- <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="jdW-gW-gsw"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <exclude reference="jdW-gW-gsw"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCancelTouched:" destination="Yr1-gT-mtB" eventType="touchUpInside" id="2NU-Uu-a4v"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="Qma-tS-uvo" firstAttribute="leading" secondItem="IYm-QS-Q8K" secondAttribute="trailing" id="5QU-iP-ZwU">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="HK2-wr-JDJ" secondAttribute="trailing" id="AUM-au-Zvn"/>
- <constraint firstItem="IYm-QS-Q8K" firstAttribute="height" secondItem="Qma-tS-uvo" secondAttribute="height" id="CQj-D5-twQ"/>
- <constraint firstItem="HK2-wr-JDJ" firstAttribute="leading" secondItem="QUB-y1-QI4" secondAttribute="leading" id="Epa-6r-L9M"/>
- <constraint firstItem="Qma-tS-uvo" firstAttribute="top" secondItem="IYm-QS-Q8K" secondAttribute="top" id="Q9H-La-fUx"/>
- <constraint firstAttribute="trailing" secondItem="Qma-tS-uvo" secondAttribute="trailing" constant="40" id="Z9U-T8-jf5">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="HK2-wr-JDJ" firstAttribute="top" secondItem="QUB-y1-QI4" secondAttribute="top" id="ddd-S2-gRC"/>
- <constraint firstItem="IYm-QS-Q8K" firstAttribute="top" secondItem="QUB-y1-QI4" secondAttribute="top" id="iul-0N-zcG">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- <constraint firstItem="IYm-QS-Q8K" firstAttribute="width" secondItem="Qma-tS-uvo" secondAttribute="width" id="lVo-B1-4of">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- <constraint firstItem="IYm-QS-Q8K" firstAttribute="leading" secondItem="QUB-y1-QI4" secondAttribute="leading" constant="-2" id="nyY-RZ-Hrh">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="height" constant="70" id="pIH-Kr-e21"/>
- <constraint firstAttribute="trailing" secondItem="IYm-QS-Q8K" secondAttribute="trailing" constant="202" id="qDf-81-nPx"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="pIH-Kr-e21"/>
- <exclude reference="AUM-au-Zvn"/>
- <exclude reference="Epa-6r-L9M"/>
- <exclude reference="ddd-S2-gRC"/>
- <exclude reference="iul-0N-zcG"/>
- <exclude reference="nyY-RZ-Hrh"/>
- <exclude reference="qDf-81-nPx"/>
- <exclude reference="Z9U-T8-jf5"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="pIH-Kr-e21"/>
- <include reference="AUM-au-Zvn"/>
- <include reference="Epa-6r-L9M"/>
- <include reference="ddd-S2-gRC"/>
- <include reference="iul-0N-zcG"/>
- <include reference="nyY-RZ-Hrh"/>
- <exclude reference="qDf-81-nPx"/>
- <include reference="Z9U-T8-jf5"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="rVW-0w-j5T" firstAttribute="top" secondItem="v4R-Kt-fEY" secondAttribute="top" id="7YD-lw-t99"/>
- <constraint firstAttribute="trailing" secondItem="rVW-0w-j5T" secondAttribute="trailing" id="GuE-5b-2yM"/>
- <constraint firstItem="QUB-y1-QI4" firstAttribute="top" secondItem="Noq-07-mBH" secondAttribute="bottom" id="VFc-l1-QYh"/>
- <constraint firstAttribute="trailing" secondItem="QUB-y1-QI4" secondAttribute="trailing" id="Xx9-J3-wE3"/>
- <constraint firstAttribute="trailing" secondItem="Noq-07-mBH" secondAttribute="trailing" id="k5J-95-QwR"/>
- <constraint firstAttribute="bottom" secondItem="QUB-y1-QI4" secondAttribute="bottom" id="mnh-D4-KTF">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="Noq-07-mBH" firstAttribute="top" secondItem="rVW-0w-j5T" secondAttribute="bottom" id="o2Y-2A-3ru"/>
- <constraint firstItem="QUB-y1-QI4" firstAttribute="leading" secondItem="v4R-Kt-fEY" secondAttribute="leading" id="oQz-ra-GjF"/>
- <constraint firstItem="Noq-07-mBH" firstAttribute="leading" secondItem="v4R-Kt-fEY" secondAttribute="leading" id="q2m-9c-j7z"/>
- <constraint firstItem="rVW-0w-j5T" firstAttribute="leading" secondItem="v4R-Kt-fEY" secondAttribute="leading" id="sdS-Ht-nbN"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="rVW-0w-j5T"/>
- <exclude reference="QUB-y1-QI4"/>
- </mask>
- <mask key="constraints">
- <exclude reference="VFc-l1-QYh"/>
- <exclude reference="Xx9-J3-wE3"/>
- <exclude reference="mnh-D4-KTF"/>
- <exclude reference="oQz-ra-GjF"/>
- <exclude reference="7YD-lw-t99"/>
- <exclude reference="GuE-5b-2yM"/>
- <exclude reference="sdS-Ht-nbN"/>
- <exclude reference="o2Y-2A-3ru"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="rVW-0w-j5T"/>
- <include reference="QUB-y1-QI4"/>
- </mask>
- <mask key="constraints">
- <include reference="VFc-l1-QYh"/>
- <include reference="Xx9-J3-wE3"/>
- <include reference="mnh-D4-KTF"/>
- <include reference="oQz-ra-GjF"/>
- <include reference="7YD-lw-t99"/>
- <include reference="GuE-5b-2yM"/>
- <include reference="sdS-Ht-nbN"/>
- <include reference="o2Y-2A-3ru"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="v4R-Kt-fEY" firstAttribute="top" secondItem="KQQ-5O-lRe" secondAttribute="bottom" id="0lp-Id-f3c">
- <variation key="heightClass=regular-widthClass=compact" constant="-20"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="v4R-Kt-fEY" secondAttribute="trailing" id="ZUZ-xm-BAp"/>
- <constraint firstItem="v4R-Kt-fEY" firstAttribute="leading" secondItem="yfE-Vt-LnN" secondAttribute="leading" id="nn6-IQ-iOG"/>
- <constraint firstItem="s4X-OA-DAN" firstAttribute="top" secondItem="v4R-Kt-fEY" secondAttribute="bottom" id="u4P-RP-rpZ"/>
- </constraints>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="btnCancel" destination="Qma-tS-uvo" id="I8R-9E-giF"/>
- <outlet property="btnSend" destination="IYm-QS-Q8K" id="N7d-fY-v45"/>
- <outlet property="tableView" destination="Noq-07-mBH" id="Ufc-Gk-WeB"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="I57-kM-n4C" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="532.5" y="139.5"/>
- </scene>
- <!--Home Member Detail View Controller-->
- <scene sceneID="Kec-rM-bFv">
- <objects>
- <viewController storyboardIdentifier="HomeMemberDetailViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Tvb-mD-z3p" customClass="HomeMemberDetailViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="OX0-Xf-RZb"/>
- <viewControllerLayoutGuide type="bottom" id="ymm-pu-INM"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="fez-SB-RFQ" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="64" width="320" height="504"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="fWO-Bc-QMz" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <button opaque="NO" userInteractionEnabled="NO" contentMode="scaleAspectFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PbI-Rd-4YN" userLabel="Button - memberIcon" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="40" id="66c-e7-NZI">
- <variation key="heightClass=regular-widthClass=compact" constant="100"/>
- </constraint>
- <constraint firstAttribute="width" constant="40" id="FQP-3U-IyM">
- <variation key="heightClass=regular-widthClass=compact" constant="100"/>
- </constraint>
- </constraints>
- <state key="normal" image="tp_01_img_singup_membericon_01" backgroundImage="tp_01_img_singup_membericon_bg">
- <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
- <rect key="value" x="-1" y="0.0" width="0.0" height="0.0"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="66c-e7-NZI"/>
- <exclude reference="FQP-3U-IyM"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="66c-e7-NZI"/>
- <include reference="FQP-3U-IyM"/>
- </mask>
- </variation>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="jHh-6v-dsw">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="tp_01_img_title_select_bg" translatesAutoresizingMaskIntoConstraints="NO" id="fmY-lx-Xex" customClass="CustomImageView">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="rect" keyPath="rectForCap">
- <rect key="value" x="20" y="19" width="20" height="19"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- </imageView>
- <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">
- <rect key="frame" x="80" y="20" width="220" height="28"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="28" id="nTq-0h-fTB">
- <variation key="heightClass=regular-widthClass=compact" constant="18"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
- <color key="textColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
- </userDefinedRuntimeAttributes>
- </label>
- <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">
- <rect key="frame" x="80" y="20" width="220" height="28"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="28" id="xyr-7h-fDu">
- <variation key="heightClass=regular-widthClass=compact" constant="15"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
- </userDefinedRuntimeAttributes>
- </label>
- <button opaque="NO" contentMode="scaleAspectFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="lM3-Q1-bEB" userLabel="Button - memberIcon" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="40" id="LP0-eq-S9l">
- <variation key="heightClass=regular-widthClass=compact" constant="40"/>
- </constraint>
- <constraint firstAttribute="width" constant="40" id="l6Q-rI-Ic3">
- <variation key="heightClass=regular-widthClass=compact" constant="40"/>
- </constraint>
- </constraints>
- <state key="normal" image="common_list_btn_edit">
- <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <state key="highlighted" image="common_list_btn_edit_press"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="LP0-eq-S9l"/>
- <exclude reference="l6Q-rI-Ic3"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="LP0-eq-S9l"/>
- <include reference="l6Q-rI-Ic3"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnModifyTouched:" destination="Tvb-mD-z3p" eventType="touchUpInside" id="Tar-fj-FXb"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="fmY-lx-Xex" secondAttribute="trailing" id="09J-qK-sZn"/>
- <constraint firstItem="crx-cu-D7y" firstAttribute="top" secondItem="jHh-6v-dsw" secondAttribute="top" constant="10" id="41E-qu-66C"/>
- <constraint firstItem="fmY-lx-Xex" firstAttribute="top" secondItem="jHh-6v-dsw" secondAttribute="top" id="9Nl-ab-9cu"/>
- <constraint firstAttribute="trailing" secondItem="lM3-Q1-bEB" secondAttribute="trailing" id="DL7-fq-bSk"/>
- <constraint firstItem="fmY-lx-Xex" firstAttribute="leading" secondItem="jHh-6v-dsw" secondAttribute="leading" id="KgB-PH-oSW"/>
- <constraint firstItem="lM3-Q1-bEB" firstAttribute="top" secondItem="jHh-6v-dsw" secondAttribute="top" id="N4T-oW-xvm"/>
- <constraint firstAttribute="bottom" secondItem="fmY-lx-Xex" secondAttribute="bottom" id="OaV-9q-tX9"/>
- <constraint firstItem="XY2-4q-9H2" firstAttribute="top" secondItem="crx-cu-D7y" secondAttribute="bottom" constant="8" id="giu-BL-3ui"/>
- <constraint firstItem="lM3-Q1-bEB" firstAttribute="leading" secondItem="crx-cu-D7y" secondAttribute="trailing" constant="8" id="hB8-xL-3rM"/>
- <constraint firstItem="crx-cu-D7y" firstAttribute="leading" secondItem="jHh-6v-dsw" secondAttribute="leading" constant="20" id="hKM-FX-wAN"/>
- <constraint firstAttribute="bottom" secondItem="XY2-4q-9H2" secondAttribute="bottom" constant="10" id="mCb-1Q-O6p"/>
- <constraint firstItem="crx-cu-D7y" firstAttribute="trailing" secondItem="XY2-4q-9H2" secondAttribute="trailing" id="niI-Li-AHu"/>
- <constraint firstItem="crx-cu-D7y" firstAttribute="leading" secondItem="XY2-4q-9H2" secondAttribute="leading" id="vHI-zO-zTj"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="fmY-lx-Xex"/>
- <exclude reference="crx-cu-D7y"/>
- <exclude reference="XY2-4q-9H2"/>
- <exclude reference="lM3-Q1-bEB"/>
- </mask>
- <mask key="constraints">
- <exclude reference="DL7-fq-bSk"/>
- <exclude reference="N4T-oW-xvm"/>
- <exclude reference="hB8-xL-3rM"/>
- <exclude reference="giu-BL-3ui"/>
- <exclude reference="mCb-1Q-O6p"/>
- <exclude reference="41E-qu-66C"/>
- <exclude reference="hKM-FX-wAN"/>
- <exclude reference="niI-Li-AHu"/>
- <exclude reference="vHI-zO-zTj"/>
- <exclude reference="09J-qK-sZn"/>
- <exclude reference="9Nl-ab-9cu"/>
- <exclude reference="KgB-PH-oSW"/>
- <exclude reference="OaV-9q-tX9"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="fmY-lx-Xex"/>
- <include reference="crx-cu-D7y"/>
- <include reference="XY2-4q-9H2"/>
- <include reference="lM3-Q1-bEB"/>
- </mask>
- <mask key="constraints">
- <include reference="DL7-fq-bSk"/>
- <include reference="N4T-oW-xvm"/>
- <include reference="hB8-xL-3rM"/>
- <include reference="giu-BL-3ui"/>
- <include reference="mCb-1Q-O6p"/>
- <include reference="41E-qu-66C"/>
- <include reference="hKM-FX-wAN"/>
- <include reference="niI-Li-AHu"/>
- <include reference="vHI-zO-zTj"/>
- <include reference="09J-qK-sZn"/>
- <include reference="9Nl-ab-9cu"/>
- <include reference="KgB-PH-oSW"/>
- <include reference="OaV-9q-tX9"/>
- </mask>
- </variation>
- </view>
- <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">
- <rect key="frame" x="80" y="20" width="220" height="28"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="28" id="obg-Hg-ju3">
- <variation key="heightClass=regular-widthClass=compact" constant="22"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
- </userDefinedRuntimeAttributes>
- </label>
- <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">
- <rect key="frame" x="65" y="277" width="150" height="40"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="40" id="KvY-JD-3Ld"/>
- <constraint firstAttribute="width" constant="150" id="aUV-5X-w5w"/>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <state key="normal" title="초대 취소" backgroundImage="tp_01_img_btn_bg_01">
- <color key="titleColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
- <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <state key="highlighted" backgroundImage="tp_01_img_btn_bg_01_press"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
- <rect key="value" x="4" y="4" width="4" height="4"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="KvY-JD-3Ld"/>
- <exclude reference="aUV-5X-w5w"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="KvY-JD-3Ld"/>
- <include reference="aUV-5X-w5w"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnActionTouched:" destination="Tvb-mD-z3p" eventType="touchUpInside" id="ttb-bV-yar"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="jHh-6v-dsw" secondAttribute="trailing" constant="20" id="5If-O8-Fkx"/>
- <constraint firstItem="jHh-6v-dsw" firstAttribute="top" secondItem="PbI-Rd-4YN" secondAttribute="bottom" constant="29" id="8PZ-Vx-k6R"/>
- <constraint firstItem="DKB-Q0-dzg" firstAttribute="leading" secondItem="jHh-6v-dsw" secondAttribute="leading" constant="34" id="DQ3-4m-5K0">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="centerX" secondItem="PbI-Rd-4YN" secondAttribute="centerX" id="K8w-tu-eWa"/>
- <constraint firstItem="MhF-DW-f9c" firstAttribute="top" secondItem="DKB-Q0-dzg" secondAttribute="bottom" constant="40" id="KBX-Gn-pDd"/>
- <constraint firstItem="jHh-6v-dsw" firstAttribute="leading" secondItem="fWO-Bc-QMz" secondAttribute="leading" constant="20" id="PmP-iq-hvr"/>
- <constraint firstItem="PbI-Rd-4YN" firstAttribute="top" secondItem="fWO-Bc-QMz" secondAttribute="top" constant="30" id="QNm-oL-Xgd"/>
- <constraint firstItem="DKB-Q0-dzg" firstAttribute="trailing" secondItem="jHh-6v-dsw" secondAttribute="trailing" constant="-34" id="aLc-gF-xlJ">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="centerX" secondItem="MhF-DW-f9c" secondAttribute="centerX" id="y3s-Ua-ck8"/>
- <constraint firstItem="DKB-Q0-dzg" firstAttribute="top" secondItem="jHh-6v-dsw" secondAttribute="bottom" constant="53" id="zlB-Xd-F2w"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="PbI-Rd-4YN"/>
- <exclude reference="jHh-6v-dsw"/>
- <exclude reference="DKB-Q0-dzg"/>
- <exclude reference="MhF-DW-f9c"/>
- </mask>
- <mask key="constraints">
- <exclude reference="K8w-tu-eWa"/>
- <exclude reference="QNm-oL-Xgd"/>
- <exclude reference="DQ3-4m-5K0"/>
- <exclude reference="aLc-gF-xlJ"/>
- <exclude reference="zlB-Xd-F2w"/>
- <exclude reference="KBX-Gn-pDd"/>
- <exclude reference="y3s-Ua-ck8"/>
- <exclude reference="5If-O8-Fkx"/>
- <exclude reference="8PZ-Vx-k6R"/>
- <exclude reference="PmP-iq-hvr"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="PbI-Rd-4YN"/>
- <include reference="jHh-6v-dsw"/>
- <include reference="DKB-Q0-dzg"/>
- <include reference="MhF-DW-f9c"/>
- </mask>
- <mask key="constraints">
- <include reference="K8w-tu-eWa"/>
- <include reference="QNm-oL-Xgd"/>
- <include reference="DQ3-4m-5K0"/>
- <include reference="aLc-gF-xlJ"/>
- <include reference="zlB-Xd-F2w"/>
- <include reference="KBX-Gn-pDd"/>
- <include reference="y3s-Ua-ck8"/>
- <include reference="5If-O8-Fkx"/>
- <include reference="8PZ-Vx-k6R"/>
- <include reference="PmP-iq-hvr"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="fWO-Bc-QMz" secondAttribute="trailing" id="FGW-Cj-paN"/>
- <constraint firstItem="fWO-Bc-QMz" firstAttribute="top" secondItem="OX0-Xf-RZb" secondAttribute="bottom" constant="16" id="GoQ-uE-Tq5"/>
- <constraint firstItem="ymm-pu-INM" firstAttribute="top" secondItem="fWO-Bc-QMz" secondAttribute="bottom" id="Mvg-QZ-ykA"/>
- <constraint firstItem="fWO-Bc-QMz" firstAttribute="leading" secondItem="fez-SB-RFQ" secondAttribute="leading" id="Yl3-j3-Hri"/>
- </constraints>
- </view>
- <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" translucent="NO" prompted="NO"/>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="btnAction" destination="MhF-DW-f9c" id="xfk-6t-uJu"/>
- <outlet property="btnEdit" destination="lM3-Q1-bEB" id="ehX-S4-eCY"/>
- <outlet property="btnMemberIcon" destination="PbI-Rd-4YN" id="mBE-zp-sS4"/>
- <outlet property="constraintLblMessageBottom" destination="KBX-Gn-pDd" id="Evg-va-tgT"/>
- <outlet property="constraintLblMessageHeight" destination="obg-Hg-ju3" id="Gyw-Hc-ufE"/>
- <outlet property="lblMemberRole" destination="crx-cu-D7y" id="jBC-Jg-aAC"/>
- <outlet property="lblMemberRoleDesc" destination="XY2-4q-9H2" id="lrE-JC-FHU"/>
- <outlet property="lblMessage" destination="DKB-Q0-dzg" id="CjV-1s-69U"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="HUW-P6-TAU" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1132.5" y="139.5"/>
- </scene>
- <!--Home Member View Controller-->
- <scene sceneID="k5Z-lc-y6u">
- <objects>
- <viewController storyboardIdentifier="HomeMemberViewController2" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="COq-E2-QtF" customClass="HomeMemberViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="AKU-yU-AoW"/>
- <viewControllerLayoutGuide type="bottom" id="mBj-9U-pfO"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="jjM-bn-0zB" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="64" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="3ze-9b-J00" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="k5g-z2-KIB" userLabel="View - header">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <subviews>
- <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">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="oO9-my-1hv">
- <variation key="heightClass=regular-widthClass=compact" constant="200"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="oO9-my-1hv"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="oO9-my-1hv"/>
- </mask>
- </variation>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cUF-sa-9if">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="46" id="5fM-vW-J4V"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" title="option"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="5fM-vW-J4V"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="5fM-vW-J4V"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnOptionTouched:" destination="COq-E2-QtF" eventType="touchUpInside" id="iom-lW-ncf"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="glx-SU-bgb" firstAttribute="leading" secondItem="k5g-z2-KIB" secondAttribute="leading" constant="10" id="JZH-XC-jXS"/>
- <constraint firstItem="cUF-sa-9if" firstAttribute="top" secondItem="k5g-z2-KIB" secondAttribute="top" constant="30" id="KpX-GZ-KPR"/>
- <constraint firstItem="glx-SU-bgb" firstAttribute="top" secondItem="k5g-z2-KIB" secondAttribute="top" constant="43" id="MQ6-0V-sj7">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstAttribute="height" constant="80" id="Sbf-3q-Ivn"/>
- <constraint firstAttribute="trailing" secondItem="cUF-sa-9if" secondAttribute="trailing" constant="8" id="d5k-ns-yfR"/>
- <constraint firstAttribute="bottom" secondItem="cUF-sa-9if" secondAttribute="bottom" constant="20" id="dDz-zb-RQW"/>
- <constraint firstAttribute="bottom" secondItem="glx-SU-bgb" secondAttribute="bottom" constant="22" id="mbz-Gu-nhX">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="glx-SU-bgb"/>
- <exclude reference="cUF-sa-9if"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Sbf-3q-Ivn"/>
- <exclude reference="KpX-GZ-KPR"/>
- <exclude reference="d5k-ns-yfR"/>
- <exclude reference="dDz-zb-RQW"/>
- <exclude reference="JZH-XC-jXS"/>
- <exclude reference="MQ6-0V-sj7"/>
- <exclude reference="mbz-Gu-nhX"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="glx-SU-bgb"/>
- <include reference="cUF-sa-9if"/>
- </mask>
- <mask key="constraints">
- <include reference="Sbf-3q-Ivn"/>
- <include reference="KpX-GZ-KPR"/>
- <include reference="d5k-ns-yfR"/>
- <include reference="dDz-zb-RQW"/>
- <include reference="JZH-XC-jXS"/>
- <include reference="MQ6-0V-sj7"/>
- <include reference="mbz-Gu-nhX"/>
- </mask>
- </variation>
- </view>
- <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">
- <rect key="frame" x="0.0" y="0.0" width="320" height="488"/>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HeaderCellIdentifier" rowHeight="40" id="V37-Kr-vld" userLabel="HeaderCellIdentifier" customClass="MemberHeaderTableViewCell">
- <rect key="frame" x="0.0" y="50" width="320" height="40"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="V37-Kr-vld" id="gK4-Zk-nv1">
- <rect key="frame" x="0.0" y="0.0" width="320" height="39"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="h7x-PQ-x8Y" userLabel="View - line">
- <rect key="frame" x="0.0" y="0.0" width="320" height="1"/>
- <animations/>
- <color key="backgroundColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="fol-hJ-kds"/>
- </constraints>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bg_s_alpha_30" translatesAutoresizingMaskIntoConstraints="NO" id="d3m-ci-Mnz" customClass="CustomImageView">
- <rect key="frame" x="0.0" y="0.0" width="320" height="40"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="40" id="dCf-Nd-2fP"/>
- </constraints>
- </imageView>
- <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">
- <rect key="frame" x="0.0" y="0.0" width="280" height="40"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="40" id="yEq-AB-6Oh"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <state key="normal" title="이용중인 멤버" image="tp_01_img_arrow_up">
- <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <state key="highlighted" image="tp_01_img_arrow_down"/>
- <connections>
- <action selector="btnHeaderTouched:" destination="V37-Kr-vld" eventType="touchUpInside" id="N1e-QA-tH3"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="KYJ-hE-EHq" firstAttribute="leading" secondItem="gK4-Zk-nv1" secondAttribute="leading" id="9pR-7l-Y8S"/>
- <constraint firstItem="d3m-ci-Mnz" firstAttribute="leading" secondItem="gK4-Zk-nv1" secondAttribute="leading" id="CmK-Ah-E3F"/>
- <constraint firstAttribute="trailing" secondItem="h7x-PQ-x8Y" secondAttribute="trailing" id="JSq-mY-RFJ"/>
- <constraint firstItem="d3m-ci-Mnz" firstAttribute="top" secondItem="gK4-Zk-nv1" secondAttribute="top" id="Mao-Du-cYz"/>
- <constraint firstItem="KYJ-hE-EHq" firstAttribute="top" secondItem="gK4-Zk-nv1" secondAttribute="top" id="Op1-JX-Uik"/>
- <constraint firstItem="h7x-PQ-x8Y" firstAttribute="top" secondItem="gK4-Zk-nv1" secondAttribute="top" id="Z25-Af-QwZ"/>
- <constraint firstAttribute="trailing" secondItem="d3m-ci-Mnz" secondAttribute="trailing" id="fKv-WV-gPM"/>
- <constraint firstItem="h7x-PQ-x8Y" firstAttribute="leading" secondItem="gK4-Zk-nv1" secondAttribute="leading" id="gPf-LG-uCW"/>
- <constraint firstAttribute="trailing" secondItem="KYJ-hE-EHq" secondAttribute="trailing" id="uj8-E9-tJq"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="uj8-E9-tJq"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="uj8-E9-tJq"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="btnHeader" destination="KYJ-hE-EHq" id="zaq-tc-OdE"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="CellIdentifier" rowHeight="100" id="phG-bW-jc2" customClass="MemberTableViewCell">
- <rect key="frame" x="0.0" y="90" width="320" height="100"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="phG-bW-jc2" id="6uk-Wc-gRJ">
- <rect key="frame" x="0.0" y="0.0" width="320" height="99"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <button opaque="NO" userInteractionEnabled="NO" contentMode="scaleAspectFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="REU-RA-8ZN" userLabel="Button - memberIcon" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="40" id="Jmu-uy-70p">
- <variation key="heightClass=regular-widthClass=compact" constant="60"/>
- </constraint>
- <constraint firstAttribute="height" constant="40" id="ecM-LO-gcu">
- <variation key="heightClass=regular-widthClass=compact" constant="60"/>
- </constraint>
- </constraints>
- <state key="normal" image="tp_01_img_singup_membericon_01" backgroundImage="tp_01_img_singup_membericon_bg">
- <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
- <rect key="value" x="-1" y="0.0" width="0.0" height="0.0"/>
- </userDefinedRuntimeAttribute>
- </userDefinedRuntimeAttributes>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Jmu-uy-70p"/>
- <exclude reference="ecM-LO-gcu"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Jmu-uy-70p"/>
- <include reference="ecM-LO-gcu"/>
- </mask>
- </variation>
- </button>
- <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">
- <rect key="frame" x="80" y="20" width="220" height="28"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="28" id="xPR-DM-Fv5">
- <variation key="heightClass=regular-widthClass=compact" constant="32"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="13"/>
- <color key="textColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
- </userDefinedRuntimeAttributes>
- </label>
- <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">
- <rect key="frame" x="80" y="20" width="220" height="28"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="28" id="L09-ao-Lwl"/>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="13"/>
- <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="string" keyPath="layoutDebuggingIdentifier" value="Title"/>
- </userDefinedRuntimeAttributes>
- </label>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="SXq-Qc-V8c" firstAttribute="top" secondItem="6uk-Wc-gRJ" secondAttribute="top" constant="20" id="6Tz-LW-zqs"/>
- <constraint firstItem="REU-RA-8ZN" firstAttribute="top" secondItem="6uk-Wc-gRJ" secondAttribute="top" constant="20" id="9MF-YG-ViE"/>
- <constraint firstItem="37W-po-jmF" firstAttribute="trailing" secondItem="SXq-Qc-V8c" secondAttribute="trailing" id="OtA-An-H5e"/>
- <constraint firstItem="37W-po-jmF" firstAttribute="top" secondItem="SXq-Qc-V8c" secondAttribute="bottom" constant="4" id="R5S-Jd-hyE">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="37W-po-jmF" firstAttribute="leading" secondItem="REU-RA-8ZN" secondAttribute="trailing" constant="10" id="SPp-vG-P10"/>
- <constraint firstItem="REU-RA-8ZN" firstAttribute="leading" secondItem="6uk-Wc-gRJ" secondAttribute="leading" constant="10" id="bFK-C1-b3C"/>
- <constraint firstItem="37W-po-jmF" firstAttribute="leading" secondItem="SXq-Qc-V8c" secondAttribute="leading" id="lol-zi-3qv"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="REU-RA-8ZN"/>
- <exclude reference="37W-po-jmF"/>
- </mask>
- <mask key="constraints">
- <exclude reference="9MF-YG-ViE"/>
- <exclude reference="bFK-C1-b3C"/>
- <exclude reference="OtA-An-H5e"/>
- <exclude reference="R5S-Jd-hyE"/>
- <exclude reference="SPp-vG-P10"/>
- <exclude reference="lol-zi-3qv"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="REU-RA-8ZN"/>
- <include reference="37W-po-jmF"/>
- </mask>
- <mask key="constraints">
- <include reference="9MF-YG-ViE"/>
- <include reference="bFK-C1-b3C"/>
- <include reference="OtA-An-H5e"/>
- <include reference="R5S-Jd-hyE"/>
- <include reference="SPp-vG-P10"/>
- <include reference="lol-zi-3qv"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="btnMemberIcon" destination="REU-RA-8ZN" id="s76-aM-XTT"/>
- <outlet property="lblLevel" destination="37W-po-jmF" id="ul7-48-TzQ"/>
- <outlet property="lblTitle" destination="SXq-Qc-V8c" id="uGn-bs-cw4"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="AddCellIdentifier" rowHeight="217" id="BBe-SD-dqn" customClass="MemberAddTableViewCell">
- <rect key="frame" x="0.0" y="190" width="320" height="217"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="BBe-SD-dqn" id="c4E-3b-eou">
- <rect key="frame" x="0.0" y="0.0" width="320" height="216"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Am5-JU-ill" userLabel="View - container">
- <rect key="frame" x="16" y="30" width="288" height="130"/>
- <subviews>
- <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">
- <rect key="frame" x="20" y="0.0" width="248" height="50"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="50" id="25p-8R-yQM">
- <variation key="heightClass=regular-widthClass=compact" constant="18"/>
- </constraint>
- <constraint firstAttribute="width" constant="248" id="rmA-J0-RUa"/>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
- <color key="textColor" red="1" green="0.43137254899999999" blue="0.16862745100000001" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="20" y="0.0" width="248" height="50"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="50" id="87I-PE-c2v">
- <variation key="heightClass=regular-widthClass=compact" constant="29"/>
- </constraint>
- <constraint firstAttribute="width" constant="248" id="yZ5-Q3-Eor"/>
- </constraints>
- <string key="text">멤버가 되면 내장치를 같이 쓸 수 있어요
- 편리한 자동 규칙도 함께 만들어보세요</string>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="12"/>
- <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="80" placeholderIntrinsicHeight="80" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fwL-lY-giu" customClass="CustomButton">
- <rect key="frame" x="104" y="50" width="80" height="80"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="80" id="Zf7-s7-rPr"/>
- <constraint firstAttribute="height" constant="80" id="z9Y-pZ-Xt8"/>
- </constraints>
- <state key="normal" image="common_list_btn_add">
- <color key="titleShadowColor" white="0.5" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <state key="highlighted" image="common_list_btn_add_press"/>
- <connections>
- <action selector="btnAddTouched:" destination="BBe-SD-dqn" eventType="touchUpInside" id="33o-jd-HvH"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="Ngf-Nm-tc3" firstAttribute="top" secondItem="2Em-fc-EXd" secondAttribute="bottom" constant="20" id="0BM-fM-BqZ"/>
- <constraint firstItem="fwL-lY-giu" firstAttribute="top" secondItem="Ngf-Nm-tc3" secondAttribute="bottom" constant="10" id="0Ke-ds-7rs"/>
- <constraint firstItem="fwL-lY-giu" firstAttribute="centerX" secondItem="2Em-fc-EXd" secondAttribute="centerX" id="4Ii-zW-xtD"/>
- <constraint firstItem="Ngf-Nm-tc3" firstAttribute="leading" secondItem="2Em-fc-EXd" secondAttribute="leading" id="5Y7-vQ-zMj"/>
- <constraint firstItem="2Em-fc-EXd" firstAttribute="centerX" secondItem="Am5-JU-ill" secondAttribute="centerX" id="9bl-fK-gDS"/>
- <constraint firstAttribute="bottom" secondItem="fwL-lY-giu" secondAttribute="bottom" id="AlL-zY-l8Z"/>
- <constraint firstItem="2Em-fc-EXd" firstAttribute="top" secondItem="Am5-JU-ill" secondAttribute="top" id="DJ5-5c-B3Z"/>
- <constraint firstAttribute="width" constant="288" id="DXG-6h-L4Q"/>
- <constraint firstItem="Ngf-Nm-tc3" firstAttribute="trailing" secondItem="2Em-fc-EXd" secondAttribute="trailing" id="WSX-NL-tLJ"/>
- <constraint firstAttribute="height" constant="130" id="hcM-yL-YEO">
- <variation key="heightClass=regular-widthClass=compact" constant="157"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Ngf-Nm-tc3"/>
- </mask>
- <mask key="constraints">
- <exclude reference="0BM-fM-BqZ"/>
- <exclude reference="5Y7-vQ-zMj"/>
- <exclude reference="WSX-NL-tLJ"/>
- <exclude reference="0Ke-ds-7rs"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Ngf-Nm-tc3"/>
- </mask>
- <mask key="constraints">
- <include reference="0BM-fM-BqZ"/>
- <include reference="5Y7-vQ-zMj"/>
- <include reference="WSX-NL-tLJ"/>
- <include reference="0Ke-ds-7rs"/>
- <exclude reference="AlL-zY-l8Z"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="centerX" secondItem="Am5-JU-ill" secondAttribute="centerX" id="CMu-BS-qLz"/>
- <constraint firstAttribute="centerY" secondItem="Am5-JU-ill" secondAttribute="centerY" id="vxi-mM-J1W">
- <variation key="heightClass=regular-widthClass=compact" constant="0.5"/>
- </constraint>
- </constraints>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="lblAddDesc" destination="Ngf-Nm-tc3" id="HRa-rB-Cdv"/>
- <outlet property="lblAddTitle" destination="2Em-fc-EXd" id="bHv-ad-61W"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="k5g-z2-KIB" firstAttribute="leading" secondItem="3ze-9b-J00" secondAttribute="leading" id="1Nx-Ep-Gfg"/>
- <constraint firstItem="k5g-z2-KIB" firstAttribute="top" secondItem="3ze-9b-J00" secondAttribute="top" id="1zS-iR-she"/>
- <constraint firstAttribute="trailing" secondItem="k5g-z2-KIB" secondAttribute="trailing" id="6Eh-oc-Sfl"/>
- <constraint firstAttribute="trailing" secondItem="2ry-z2-IUl" secondAttribute="trailing" id="QuV-F9-1ne"/>
- <constraint firstItem="2ry-z2-IUl" firstAttribute="top" secondItem="k5g-z2-KIB" secondAttribute="bottom" id="e84-HU-lbH"/>
- <constraint firstAttribute="bottom" secondItem="2ry-z2-IUl" secondAttribute="bottom" id="jq9-dx-ySZ">
- <variation key="heightClass=regular-widthClass=compact" constant="70"/>
- </constraint>
- <constraint firstItem="2ry-z2-IUl" firstAttribute="leading" secondItem="3ze-9b-J00" secondAttribute="leading" id="rAo-we-9F9"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="k5g-z2-KIB"/>
- </mask>
- <mask key="constraints">
- <exclude reference="1Nx-Ep-Gfg"/>
- <exclude reference="1zS-iR-she"/>
- <exclude reference="6Eh-oc-Sfl"/>
- <exclude reference="e84-HU-lbH"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="k5g-z2-KIB"/>
- </mask>
- <mask key="constraints">
- <include reference="1Nx-Ep-Gfg"/>
- <include reference="1zS-iR-she"/>
- <include reference="6Eh-oc-Sfl"/>
- <include reference="e84-HU-lbH"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="3ze-9b-J00" firstAttribute="top" secondItem="AKU-yU-AoW" secondAttribute="bottom" constant="-20" id="1qt-Cu-Bex"/>
- <constraint firstItem="3ze-9b-J00" firstAttribute="leading" secondItem="jjM-bn-0zB" secondAttribute="leading" id="28L-mn-aV6"/>
- <constraint firstItem="mBj-9U-pfO" firstAttribute="top" secondItem="3ze-9b-J00" secondAttribute="bottom" id="cUh-m0-pL3"/>
- <constraint firstAttribute="trailing" secondItem="3ze-9b-J00" secondAttribute="trailing" id="o9X-GO-qg9"/>
- </constraints>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="tableView" destination="2ry-z2-IUl" id="CFV-Cn-2qG"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="btB-kZ-ZeB" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-91.5" y="646.5"/>
- </scene>
- </scenes>
- <resources>
- <image name="common_bg_s_alpha_30" width="2" height="2"/>
- <image name="common_checkbox_checked" width="25" height="25"/>
- <image name="common_checkbox_default" width="25" height="25"/>
- <image name="common_list_btn_add" width="80" height="80"/>
- <image name="common_list_btn_add_press" width="80" height="80"/>
- <image name="common_list_btn_edit" width="40" height="40"/>
- <image name="common_list_btn_edit_press" width="40" height="40"/>
- <image name="tp_01_img_arrow_down" width="30" height="40"/>
- <image name="tp_01_img_arrow_up" width="30" height="40"/>
- <image name="tp_01_img_btn_bg_01" width="15" height="15"/>
- <image name="tp_01_img_btn_bg_01_press" width="15" height="15"/>
- <image name="tp_01_img_input_bg_02_disable" width="50" height="32"/>
- <image name="tp_01_img_input_bg_02_press" width="50" height="32"/>
- <image name="tp_01_img_singup_membericon_01" width="228" height="228"/>
- <image name="tp_01_img_singup_membericon_bg" width="100" height="100"/>
- <image name="tp_01_img_title_select_bg" width="100" height="38"/>
- </resources>
- </document>
|