| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="9060" systemVersion="15B42" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="vXZ-lx-hvc">
- <dependencies>
- <deployment identifier="iOS"/>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="9051"/>
- </dependencies>
- <scenes>
- <!--Intro View Controller-->
- <scene sceneID="ufC-wZ-h7g">
- <objects>
- <viewController storyboardIdentifier="IntroViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="vXZ-lx-hvc" customClass="IntroViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="jyV-Pf-zRb"/>
- <viewControllerLayoutGuide type="bottom" id="2fi-mo-0CV"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="kh9-bI-dsS">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="x5A-6p-PRh" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="148.5" y="385.5"/>
- </scene>
- <!--Login View Controller-->
- <scene sceneID="NJu-RQ-2GJ">
- <objects>
- <viewController storyboardIdentifier="LoginViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="qsU-xn-xXB" customClass="LoginViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="FgF-Ql-VQM"/>
- <viewControllerLayoutGuide type="bottom" id="kJR-cS-tiX"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="FpC-ly-tpE" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="d4T-Fb-jXG">
- <rect key="frame" x="-20" y="-20" width="360" height="608"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="200" placeholderIntrinsicHeight="45" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="enter your email" minimumFontSize="17" background="tp_01_img_input_bg_01" translatesAutoresizingMaskIntoConstraints="NO" id="A8N-4K-e5F" customClass="CustomTextField">
- <rect key="frame" x="80" y="305" width="200" height="45"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="45" id="I5d-CK-13x"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <textInputTraits key="textInputTraits" keyboardType="emailAddress" returnKeyType="done"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="boolean" keyPath="autoScrollUp" value="YES"/>
- </userDefinedRuntimeAttributes>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="I5d-CK-13x"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="I5d-CK-13x"/>
- </mask>
- </variation>
- </textField>
- <button opaque="NO" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="200" placeholderIntrinsicHeight="40" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="5k9-fo-IHf" customClass="CustomButton">
- <rect key="frame" x="80" y="470" width="200" height="40"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="200" id="LNF-w3-KHh">
- <variation key="heightClass=regular-widthClass=compact" constant="220"/>
- </constraint>
- <constraint firstAttribute="height" constant="40" id="ver-b8-zj0"/>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <state key="normal" title="LOGIN" 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="LNF-w3-KHh"/>
- <exclude reference="ver-b8-zj0"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="LNF-w3-KHh"/>
- <include reference="ver-b8-zj0"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnLogInTouched:" destination="qsU-xn-xXB" eventType="touchUpInside" id="vhX-wy-dQ8"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="200" placeholderIntrinsicHeight="25" contentHorizontalAlignment="left" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="sHI-Mu-bPH" customClass="CustomCheckBox">
- <rect key="frame" x="80" y="415" width="200" height="25"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="25" id="SRd-fi-h6w"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <inset key="contentEdgeInsets" minX="105" minY="0.0" maxX="0.0" maxY="0.0"/>
- <inset key="titleEdgeInsets" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <inset key="imageEdgeInsets" minX="90" minY="0.0" maxX="0.0" maxY="0.0"/>
- <state key="normal" title="자동 로그인" 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="SRd-fi-h6w"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="SRd-fi-h6w"/>
- </mask>
- </variation>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="49" placeholderIntrinsicHeight="25" text="회원가입" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tfO-02-rlt" customClass="CustomLabel">
- <rect key="frame" x="80" y="530" width="49" height="25"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="highlightedColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="66" placeholderIntrinsicHeight="25" text="ID/PW찾기" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dqi-CX-lT5" customClass="CustomLabel">
- <rect key="frame" x="214" y="530" width="66" height="25"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="highlightedColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="tp_01_input_icon_email" translatesAutoresizingMaskIntoConstraints="NO" id="iJy-V3-IVc">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- </imageView>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="tp_01_input_icon_pw" translatesAutoresizingMaskIntoConstraints="NO" id="Qfw-jI-SFa">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- </imageView>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="200" placeholderIntrinsicHeight="45" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="enter your password" minimumFontSize="17" background="tp_01_img_input_bg_01" translatesAutoresizingMaskIntoConstraints="NO" id="J7b-A5-tCU" customClass="CustomTextField">
- <rect key="frame" x="80" y="355" width="200" height="45"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="45" id="DgS-vj-qRb"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <textInputTraits key="textInputTraits" returnKeyType="done" secureTextEntry="YES"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="boolean" keyPath="autoScrollUp" value="YES"/>
- </userDefinedRuntimeAttributes>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="DgS-vj-qRb"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="DgS-vj-qRb"/>
- </mask>
- </variation>
- </textField>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" image="logo" translatesAutoresizingMaskIntoConstraints="NO" id="pWg-xq-O7l">
- <rect key="frame" x="20" y="115" width="320" height="150"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="150" id="3A2-s7-cls"/>
- <constraint firstAttribute="width" constant="320" id="xfb-Jf-ivo"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="3A2-s7-cls"/>
- <exclude reference="xfb-Jf-ivo"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="3A2-s7-cls"/>
- <include reference="xfb-Jf-ivo"/>
- </mask>
- </variation>
- </imageView>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="J7b-A5-tCU" firstAttribute="centerX" secondItem="A8N-4K-e5F" secondAttribute="centerX" id="0XX-f5-MOH"/>
- <constraint firstItem="Qfw-jI-SFa" firstAttribute="top" secondItem="J7b-A5-tCU" secondAttribute="top" id="5yZ-hB-J1k"/>
- <constraint firstAttribute="bottom" secondItem="tfO-02-rlt" secondAttribute="bottom" constant="33" id="7ps-zJ-R5X"/>
- <constraint firstItem="tfO-02-rlt" firstAttribute="baseline" secondItem="dqi-CX-lT5" secondAttribute="baseline" id="8OM-aO-yP7"/>
- <constraint firstItem="sHI-Mu-bPH" firstAttribute="width" secondItem="J7b-A5-tCU" secondAttribute="width" id="E8V-06-RC0"/>
- <constraint firstItem="sHI-Mu-bPH" firstAttribute="top" secondItem="J7b-A5-tCU" secondAttribute="bottom" constant="15" id="GSo-d3-Kxb"/>
- <constraint firstItem="5k9-fo-IHf" firstAttribute="top" secondItem="sHI-Mu-bPH" secondAttribute="bottom" constant="30" id="HTW-wj-2SI"/>
- <constraint firstItem="5k9-fo-IHf" firstAttribute="trailing" secondItem="dqi-CX-lT5" secondAttribute="trailing" id="JRG-Kn-PnV"/>
- <constraint firstItem="J7b-A5-tCU" firstAttribute="top" secondItem="A8N-4K-e5F" secondAttribute="bottom" constant="5" id="JUe-eT-kGE"/>
- <constraint firstItem="pWg-xq-O7l" firstAttribute="top" secondItem="d4T-Fb-jXG" secondAttribute="top" constant="95" id="QDz-Pa-jGI"/>
- <constraint firstItem="pWg-xq-O7l" firstAttribute="centerX" secondItem="A8N-4K-e5F" secondAttribute="centerX" id="SHD-9X-AXG"/>
- <constraint firstItem="iJy-V3-IVc" firstAttribute="leading" secondItem="A8N-4K-e5F" secondAttribute="leading" id="T9p-2V-Bwk"/>
- <constraint firstItem="sHI-Mu-bPH" firstAttribute="leading" secondItem="J7b-A5-tCU" secondAttribute="leading" id="U8U-jh-ya8"/>
- <constraint firstItem="A8N-4K-e5F" firstAttribute="leading" secondItem="d4T-Fb-jXG" secondAttribute="leading" constant="60" id="Ywe-tL-HqK">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- <constraint firstItem="J7b-A5-tCU" firstAttribute="width" secondItem="A8N-4K-e5F" secondAttribute="width" id="dGD-NE-fh2"/>
- <constraint firstItem="A8N-4K-e5F" firstAttribute="top" secondItem="pWg-xq-O7l" secondAttribute="bottom" constant="40" id="fii-fM-ptR"/>
- <constraint firstAttribute="trailing" secondItem="A8N-4K-e5F" secondAttribute="trailing" constant="60" id="h4e-9e-Xe1">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- <constraint firstItem="tfO-02-rlt" firstAttribute="top" secondItem="5k9-fo-IHf" secondAttribute="bottom" constant="20" id="k7r-MX-0tO"/>
- <constraint firstItem="tfO-02-rlt" firstAttribute="leading" secondItem="5k9-fo-IHf" secondAttribute="leading" id="qel-m3-xIA"/>
- <constraint firstItem="sHI-Mu-bPH" firstAttribute="width" secondItem="5k9-fo-IHf" secondAttribute="width" id="uLi-v0-T0d"/>
- <constraint firstItem="iJy-V3-IVc" firstAttribute="top" secondItem="A8N-4K-e5F" secondAttribute="top" id="unk-pM-ptk"/>
- <constraint firstItem="Qfw-jI-SFa" firstAttribute="leading" secondItem="J7b-A5-tCU" secondAttribute="leading" id="usz-Bh-J3K"/>
- <constraint firstItem="sHI-Mu-bPH" firstAttribute="leading" secondItem="5k9-fo-IHf" secondAttribute="leading" id="vtf-7c-Sgf"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="iJy-V3-IVc"/>
- <exclude reference="Qfw-jI-SFa"/>
- </mask>
- <mask key="constraints">
- <exclude reference="5yZ-hB-J1k"/>
- <exclude reference="usz-Bh-J3K"/>
- <exclude reference="T9p-2V-Bwk"/>
- <exclude reference="unk-pM-ptk"/>
- <exclude reference="QDz-Pa-jGI"/>
- <exclude reference="SHD-9X-AXG"/>
- <exclude reference="Ywe-tL-HqK"/>
- <exclude reference="fii-fM-ptR"/>
- <exclude reference="h4e-9e-Xe1"/>
- <exclude reference="0XX-f5-MOH"/>
- <exclude reference="JUe-eT-kGE"/>
- <exclude reference="dGD-NE-fh2"/>
- <exclude reference="E8V-06-RC0"/>
- <exclude reference="GSo-d3-Kxb"/>
- <exclude reference="U8U-jh-ya8"/>
- <exclude reference="uLi-v0-T0d"/>
- <exclude reference="vtf-7c-Sgf"/>
- <exclude reference="HTW-wj-2SI"/>
- <exclude reference="JRG-Kn-PnV"/>
- <exclude reference="7ps-zJ-R5X"/>
- <exclude reference="8OM-aO-yP7"/>
- <exclude reference="k7r-MX-0tO"/>
- <exclude reference="qel-m3-xIA"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="iJy-V3-IVc"/>
- <include reference="Qfw-jI-SFa"/>
- </mask>
- <mask key="constraints">
- <include reference="5yZ-hB-J1k"/>
- <include reference="usz-Bh-J3K"/>
- <include reference="T9p-2V-Bwk"/>
- <include reference="unk-pM-ptk"/>
- <include reference="QDz-Pa-jGI"/>
- <include reference="SHD-9X-AXG"/>
- <include reference="Ywe-tL-HqK"/>
- <include reference="fii-fM-ptR"/>
- <include reference="h4e-9e-Xe1"/>
- <include reference="0XX-f5-MOH"/>
- <include reference="JUe-eT-kGE"/>
- <include reference="dGD-NE-fh2"/>
- <include reference="E8V-06-RC0"/>
- <include reference="GSo-d3-Kxb"/>
- <include reference="U8U-jh-ya8"/>
- <include reference="uLi-v0-T0d"/>
- <include reference="vtf-7c-Sgf"/>
- <include reference="HTW-wj-2SI"/>
- <include reference="JRG-Kn-PnV"/>
- <include reference="7ps-zJ-R5X"/>
- <include reference="8OM-aO-yP7"/>
- <include reference="k7r-MX-0tO"/>
- <include reference="qel-m3-xIA"/>
- </mask>
- </variation>
- </scrollView>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="d4T-Fb-jXG" firstAttribute="top" secondItem="FpC-ly-tpE" secondAttribute="top" id="K7j-xk-Up2"/>
- <constraint firstAttribute="bottom" secondItem="d4T-Fb-jXG" secondAttribute="bottom" id="Qhl-4a-XeN"/>
- <constraint firstAttribute="trailing" secondItem="d4T-Fb-jXG" secondAttribute="trailing" id="W2o-fe-pxe"/>
- <constraint firstItem="d4T-Fb-jXG" firstAttribute="leading" secondItem="FpC-ly-tpE" secondAttribute="leading" id="vEF-Bg-VcW"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="K7j-xk-Up2"/>
- <exclude reference="Qhl-4a-XeN"/>
- <exclude reference="W2o-fe-pxe"/>
- <exclude reference="vEF-Bg-VcW"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="K7j-xk-Up2"/>
- <include reference="Qhl-4a-XeN"/>
- <include reference="W2o-fe-pxe"/>
- <include reference="vEF-Bg-VcW"/>
- </mask>
- </variation>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="chkAutoLogin" destination="sHI-Mu-bPH" id="b8h-dE-5Ab"/>
- <outlet property="lblFindId" destination="dqi-CX-lT5" id="7ce-Qh-m3J"/>
- <outlet property="lblSignUp" destination="tfO-02-rlt" id="26p-cc-qJs"/>
- <outlet property="txtEmail" destination="A8N-4K-e5F" id="dtX-gi-SNL"/>
- <outlet property="txtPasswd" destination="J7b-A5-tCU" id="sXY-07-zte"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Yy4-QI-p1H" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="703" y="386"/>
- </scene>
- <!--Main View Controller-->
- <scene sceneID="eMC-jM-DDe">
- <objects>
- <viewController storyboardIdentifier="MainViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="y8X-SP-N9c" customClass="MainViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="atJ-He-L24"/>
- <viewControllerLayoutGuide type="bottom" id="udy-6C-N3Q"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="sFQ-5M-PTh" userLabel="View - controller">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="IEy-w3-JG7" userLabel="View - Tab">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="46" placeholderIntrinsicHeight="30" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="q76-lK-eDe">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <state key="normal" title="멤버"/>
- <connections>
- <action selector="btnMemberTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="OdA-JX-u1f"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="46" placeholderIntrinsicHeight="30" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="RIM-P5-BdX">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <state key="normal" title="S"/>
- <connections>
- <action selector="btnExtendTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="dYH-1k-gSw"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="249" placeholderIntrinsicWidth="46" placeholderIntrinsicHeight="30" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="PkZ-IR-fEz">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <state key="normal" title="규칙"/>
- <connections>
- <action selector="btnRuleTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="vgn-gi-dlV"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="46" placeholderIntrinsicHeight="30" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="T2i-fe-lgx">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <state key="normal" title="장치"/>
- <connections>
- <action selector="btnThingsTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="ruG-R9-EHR"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="PkZ-IR-fEz" secondAttribute="bottom" constant="9" id="33W-Tg-Nzf">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstAttribute="bottom" secondItem="T2i-fe-lgx" secondAttribute="bottom" constant="9" id="93x-E4-aMY">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="q76-lK-eDe" firstAttribute="leading" secondItem="PkZ-IR-fEz" secondAttribute="trailing" constant="8" id="DMN-UK-zzv"/>
- <constraint firstItem="q76-lK-eDe" firstAttribute="top" secondItem="IEy-w3-JG7" secondAttribute="top" constant="10" id="FhV-N0-w4u">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="T2i-fe-lgx" firstAttribute="leading" secondItem="IEy-w3-JG7" secondAttribute="leading" constant="8" id="Hc5-dE-HQv"/>
- <constraint firstAttribute="bottom" secondItem="q76-lK-eDe" secondAttribute="bottom" constant="9" id="HuM-zr-MZE">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstAttribute="height" constant="49" id="QOo-Tr-g10"/>
- <constraint firstAttribute="bottom" secondItem="RIM-P5-BdX" secondAttribute="bottom" constant="9" id="QqH-LB-L4S">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="T2i-fe-lgx" firstAttribute="top" secondItem="IEy-w3-JG7" secondAttribute="top" constant="10" id="VBa-xH-UEX">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="RIM-P5-BdX" firstAttribute="leading" secondItem="q76-lK-eDe" secondAttribute="trailing" constant="104" id="cEt-Zg-cgP"/>
- <constraint firstItem="PkZ-IR-fEz" firstAttribute="leading" secondItem="T2i-fe-lgx" secondAttribute="trailing" constant="8" id="fmx-sK-BoV"/>
- <constraint firstItem="PkZ-IR-fEz" firstAttribute="top" secondItem="IEy-w3-JG7" secondAttribute="top" constant="10" id="i7P-TB-AaO">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="RIM-P5-BdX" secondAttribute="trailing" constant="8" id="qk0-NI-Gg6"/>
- <constraint firstItem="RIM-P5-BdX" firstAttribute="top" secondItem="IEy-w3-JG7" secondAttribute="top" constant="10" id="uUD-bV-qph">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="q76-lK-eDe"/>
- <exclude reference="RIM-P5-BdX"/>
- <exclude reference="PkZ-IR-fEz"/>
- <exclude reference="T2i-fe-lgx"/>
- </mask>
- <mask key="constraints">
- <exclude reference="QOo-Tr-g10"/>
- <exclude reference="33W-Tg-Nzf"/>
- <exclude reference="fmx-sK-BoV"/>
- <exclude reference="i7P-TB-AaO"/>
- <exclude reference="QqH-LB-L4S"/>
- <exclude reference="cEt-Zg-cgP"/>
- <exclude reference="qk0-NI-Gg6"/>
- <exclude reference="uUD-bV-qph"/>
- <exclude reference="93x-E4-aMY"/>
- <exclude reference="Hc5-dE-HQv"/>
- <exclude reference="VBa-xH-UEX"/>
- <exclude reference="DMN-UK-zzv"/>
- <exclude reference="FhV-N0-w4u"/>
- <exclude reference="HuM-zr-MZE"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="q76-lK-eDe"/>
- <include reference="RIM-P5-BdX"/>
- <include reference="PkZ-IR-fEz"/>
- <include reference="T2i-fe-lgx"/>
- </mask>
- <mask key="constraints">
- <exclude reference="QOo-Tr-g10"/>
- <include reference="33W-Tg-Nzf"/>
- <include reference="fmx-sK-BoV"/>
- <include reference="i7P-TB-AaO"/>
- <include reference="QqH-LB-L4S"/>
- <include reference="cEt-Zg-cgP"/>
- <include reference="qk0-NI-Gg6"/>
- <include reference="uUD-bV-qph"/>
- <include reference="93x-E4-aMY"/>
- <include reference="Hc5-dE-HQv"/>
- <include reference="VBa-xH-UEX"/>
- <include reference="DMN-UK-zzv"/>
- <include reference="FhV-N0-w4u"/>
- <include reference="HuM-zr-MZE"/>
- </mask>
- </variation>
- </view>
- <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ewm-zz-hf9">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- </scrollView>
- <view alpha="0.80000000000000004" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ArO-oP-hjz" userLabel="View - ExtendView">
- <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="qn4-VM-gJZ" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="21" id="0IM-rr-voT"/>
- <constraint firstAttribute="width" constant="102" id="pLg-fP-uVn"/>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="16"/>
- <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="0IM-rr-voT"/>
- <exclude reference="pLg-fP-uVn"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="0IM-rr-voT"/>
- <include reference="pLg-fP-uVn"/>
- </mask>
- </variation>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="모드 버튼을 길게 누르면 설정 화면으로 이동합니다" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NKN-Fd-syZ" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="47" id="NGZ-b3-f9K"/>
- <constraint firstAttribute="width" constant="146" id="T4U-xc-SFv"/>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
- <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="NGZ-b3-f9K"/>
- <exclude reference="T4U-xc-SFv"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="NGZ-b3-f9K"/>
- <include reference="T4U-xc-SFv"/>
- </mask>
- </variation>
- </label>
- <button opaque="NO" contentMode="scaleToFill" verticalHuggingPriority="249" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="vq6-WV-Sn9">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="50" id="8gh-VY-iaq"/>
- <constraint firstAttribute="width" constant="66" id="uIe-hu-KSJ"/>
- </constraints>
- <state key="normal" title="Down"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="8gh-VY-iaq"/>
- <exclude reference="uIe-hu-KSJ"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="8gh-VY-iaq"/>
- <include reference="uIe-hu-KSJ"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCollapseTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="v3K-hy-gNt"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="wMl-Kh-gr1" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="46" id="fv5-9y-PsZ"/>
- </constraints>
- <state key="normal" title="귀가"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="fv5-9y-PsZ"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="fv5-9y-PsZ"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnModeHomeTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="OxK-D6-miq"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" verticalHuggingPriority="253" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="FsK-Hc-2nk" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="46" id="kwd-y1-oAb"/>
- </constraints>
- <state key="normal" title="외출"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="kwd-y1-oAb"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="kwd-y1-oAb"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnModeAwayTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="YcP-Bb-ZQw"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" verticalHuggingPriority="252" placeholderIntrinsicWidth="46" placeholderIntrinsicHeight="30" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="0qf-Nc-v3C" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="46" id="044-hq-FWe"/>
- </constraints>
- <state key="normal" title="기상"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="044-hq-FWe"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="044-hq-FWe"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnModeMorningTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="2Ao-XZ-gA6"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="JAU-za-I2Q" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="9C8-rz-MA8"/>
- <constraint firstAttribute="width" constant="46" id="cVM-hb-LBe"/>
- </constraints>
- <state key="normal" title="취침"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="9C8-rz-MA8"/>
- <exclude reference="cVM-hb-LBe"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="9C8-rz-MA8"/>
- <include reference="cVM-hb-LBe"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnModeNightTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="rwn-Wh-eMP"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="120" placeholderIntrinsicHeight="35" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="cja-ty-PC5" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="120" id="CUO-EX-ucp"/>
- <constraint firstAttribute="height" constant="30" id="bcS-hl-YRg"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <state key="normal" title="공지사항">
- <color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="CUO-EX-ucp"/>
- <exclude reference="bcS-hl-YRg"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="CUO-EX-ucp"/>
- <include reference="bcS-hl-YRg"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnNoticeTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="poi-op-9CB"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="120" placeholderIntrinsicHeight="35" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Fhk-o3-zbi" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="lqt-cG-7bs"/>
- <constraint firstAttribute="width" constant="120" id="xYb-Ui-NcU"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <state key="normal" title="메시지 박스">
- <color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="lqt-cG-7bs"/>
- <exclude reference="xYb-Ui-NcU"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="lqt-cG-7bs"/>
- <include reference="xYb-Ui-NcU"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnMessageBoxTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="8sS-bz-CUS"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="120" placeholderIntrinsicHeight="35" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="yWp-oq-Nog" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="120" id="QA2-7L-iiV"/>
- <constraint firstAttribute="height" constant="30" id="bVj-N5-ZQO"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <state key="normal" title="홈허브 설정">
- <color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="QA2-7L-iiV"/>
- <exclude reference="bVj-N5-ZQO"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="QA2-7L-iiV"/>
- <include reference="bVj-N5-ZQO"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnHomeHubTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="bsO-y2-1VY"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="120" placeholderIntrinsicHeight="35" contentHorizontalAlignment="left" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="O8a-Z4-fzx" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="120" id="nyq-Wd-s6B"/>
- <constraint firstAttribute="height" constant="30" id="vki-lG-UZD"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <state key="normal" title="환경설정">
- <color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="nyq-Wd-s6B"/>
- <exclude reference="vki-lG-UZD"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="nyq-Wd-s6B"/>
- <include reference="vki-lG-UZD"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnSettingsTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="67d-8F-JPx"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="aml-ht-jPD" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="100" id="LyF-LZ-x7e"/>
- <constraint firstAttribute="width" constant="100" id="Rsp-NO-dRK"/>
- </constraints>
- <state key="normal" image="tp_01_img_singup_membericon_01"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="LyF-LZ-x7e"/>
- <exclude reference="Rsp-NO-dRK"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="LyF-LZ-x7e"/>
- <include reference="Rsp-NO-dRK"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnProfileTouched:" destination="y8X-SP-N9c" eventType="touchUpInside" id="YPH-Yz-KQL"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.094117647058823528" green="0.098039215686274508" blue="0.10980392156862745" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="FsK-Hc-2nk" secondAttribute="trailing" constant="31" id="05p-pu-uCB"/>
- <constraint firstItem="aml-ht-jPD" firstAttribute="top" secondItem="qn4-VM-gJZ" secondAttribute="bottom" constant="8" id="11O-h2-iVL"/>
- <constraint firstItem="yWp-oq-Nog" firstAttribute="top" secondItem="Fhk-o3-zbi" secondAttribute="bottom" constant="5" id="DHo-fJ-3sD">
- <variation key="heightClass=regular-widthClass=compact" constant="2"/>
- </constraint>
- <constraint firstItem="0qf-Nc-v3C" firstAttribute="top" secondItem="FsK-Hc-2nk" secondAttribute="bottom" constant="8" id="EjH-hK-mYT"/>
- <constraint firstItem="O8a-Z4-fzx" firstAttribute="leading" secondItem="ArO-oP-hjz" secondAttribute="leading" constant="30" id="Fsb-yE-XgS">
- <variation key="heightClass=regular-widthClass=compact" constant="25"/>
- </constraint>
- <constraint firstItem="qn4-VM-gJZ" firstAttribute="leading" secondItem="ArO-oP-hjz" secondAttribute="leading" constant="25" id="KUf-BC-vQW"/>
- <constraint firstAttribute="height" constant="568" id="KgE-wf-Ksw"/>
- <constraint firstItem="Fhk-o3-zbi" firstAttribute="top" secondItem="cja-ty-PC5" secondAttribute="bottom" constant="5" id="LOi-VX-Ek6">
- <variation key="heightClass=regular-widthClass=compact" constant="8"/>
- </constraint>
- <constraint firstItem="aml-ht-jPD" firstAttribute="leading" secondItem="ArO-oP-hjz" secondAttribute="leading" constant="25" id="MIp-Z1-ioX"/>
- <constraint firstItem="yWp-oq-Nog" firstAttribute="leading" secondItem="ArO-oP-hjz" secondAttribute="leading" constant="25" id="OOM-rU-FWY"/>
- <constraint firstAttribute="bottom" secondItem="vq6-WV-Sn9" secondAttribute="bottom" id="Uhe-RM-ZKX"/>
- <constraint firstAttribute="trailing" secondItem="vq6-WV-Sn9" secondAttribute="trailing" id="XNA-6o-O1F"/>
- <constraint firstAttribute="trailing" secondItem="NKN-Fd-syZ" secondAttribute="trailing" constant="8" id="Y84-Q0-CLh"/>
- <constraint firstItem="O8a-Z4-fzx" firstAttribute="top" secondItem="yWp-oq-Nog" secondAttribute="bottom" constant="5" id="YGx-2F-gtL">
- <variation key="heightClass=regular-widthClass=compact" constant="8"/>
- </constraint>
- <constraint firstAttribute="bottom" secondItem="O8a-Z4-fzx" secondAttribute="bottom" constant="112" id="cqR-5x-3xS">
- <variation key="heightClass=regular-widthClass=compact" constant="105"/>
- </constraint>
- <constraint firstItem="NKN-Fd-syZ" firstAttribute="top" secondItem="ArO-oP-hjz" secondAttribute="top" constant="180" id="dBS-EK-0Lz"/>
- <constraint firstItem="vq6-WV-Sn9" firstAttribute="top" secondItem="JAU-za-I2Q" secondAttribute="bottom" constant="93" id="f2y-V2-agt"/>
- <constraint firstItem="qn4-VM-gJZ" firstAttribute="top" secondItem="ArO-oP-hjz" secondAttribute="top" constant="36" id="fwS-gT-n0c"/>
- <constraint firstItem="cja-ty-PC5" firstAttribute="leading" secondItem="ArO-oP-hjz" secondAttribute="leading" constant="25" id="lHG-2r-l3F"/>
- <constraint firstItem="JAU-za-I2Q" firstAttribute="top" secondItem="0qf-Nc-v3C" secondAttribute="bottom" constant="8" id="lam-Gn-VDQ"/>
- <constraint firstItem="Fhk-o3-zbi" firstAttribute="leading" secondItem="ArO-oP-hjz" secondAttribute="leading" constant="25" id="mH7-35-qra"/>
- <constraint firstAttribute="trailing" secondItem="JAU-za-I2Q" secondAttribute="trailing" constant="31" id="pcn-qO-xrO"/>
- <constraint firstItem="FsK-Hc-2nk" firstAttribute="top" secondItem="wMl-Kh-gr1" secondAttribute="bottom" constant="14" id="qaR-NM-L4G"/>
- <constraint firstAttribute="trailing" secondItem="wMl-Kh-gr1" secondAttribute="trailing" constant="31" id="qfM-qs-IL5"/>
- <constraint firstItem="wMl-Kh-gr1" firstAttribute="top" secondItem="NKN-Fd-syZ" secondAttribute="bottom" constant="48" id="voB-h4-6Y8"/>
- <constraint firstAttribute="trailing" secondItem="0qf-Nc-v3C" secondAttribute="trailing" constant="31" id="wf8-jz-Xia"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="qn4-VM-gJZ"/>
- <exclude reference="NKN-Fd-syZ"/>
- <exclude reference="vq6-WV-Sn9"/>
- <exclude reference="wMl-Kh-gr1"/>
- <exclude reference="FsK-Hc-2nk"/>
- <exclude reference="0qf-Nc-v3C"/>
- <exclude reference="JAU-za-I2Q"/>
- <exclude reference="cja-ty-PC5"/>
- <exclude reference="Fhk-o3-zbi"/>
- <exclude reference="yWp-oq-Nog"/>
- <exclude reference="O8a-Z4-fzx"/>
- <exclude reference="aml-ht-jPD"/>
- </mask>
- <mask key="constraints">
- <exclude reference="KgE-wf-Ksw"/>
- <exclude reference="EjH-hK-mYT"/>
- <exclude reference="wf8-jz-Xia"/>
- <exclude reference="LOi-VX-Ek6"/>
- <exclude reference="mH7-35-qra"/>
- <exclude reference="05p-pu-uCB"/>
- <exclude reference="qaR-NM-L4G"/>
- <exclude reference="lam-Gn-VDQ"/>
- <exclude reference="pcn-qO-xrO"/>
- <exclude reference="Fsb-yE-XgS"/>
- <exclude reference="YGx-2F-gtL"/>
- <exclude reference="cqR-5x-3xS"/>
- <exclude reference="11O-h2-iVL"/>
- <exclude reference="MIp-Z1-ioX"/>
- <exclude reference="lHG-2r-l3F"/>
- <exclude reference="Uhe-RM-ZKX"/>
- <exclude reference="XNA-6o-O1F"/>
- <exclude reference="f2y-V2-agt"/>
- <exclude reference="qfM-qs-IL5"/>
- <exclude reference="voB-h4-6Y8"/>
- <exclude reference="DHo-fJ-3sD"/>
- <exclude reference="OOM-rU-FWY"/>
- <exclude reference="Y84-Q0-CLh"/>
- <exclude reference="dBS-EK-0Lz"/>
- <exclude reference="KUf-BC-vQW"/>
- <exclude reference="fwS-gT-n0c"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="qn4-VM-gJZ"/>
- <include reference="NKN-Fd-syZ"/>
- <include reference="vq6-WV-Sn9"/>
- <include reference="wMl-Kh-gr1"/>
- <include reference="FsK-Hc-2nk"/>
- <include reference="0qf-Nc-v3C"/>
- <include reference="JAU-za-I2Q"/>
- <include reference="cja-ty-PC5"/>
- <include reference="Fhk-o3-zbi"/>
- <include reference="yWp-oq-Nog"/>
- <include reference="O8a-Z4-fzx"/>
- <include reference="aml-ht-jPD"/>
- </mask>
- <mask key="constraints">
- <include reference="KgE-wf-Ksw"/>
- <include reference="EjH-hK-mYT"/>
- <include reference="wf8-jz-Xia"/>
- <include reference="LOi-VX-Ek6"/>
- <include reference="mH7-35-qra"/>
- <include reference="05p-pu-uCB"/>
- <include reference="qaR-NM-L4G"/>
- <include reference="lam-Gn-VDQ"/>
- <include reference="pcn-qO-xrO"/>
- <include reference="Fsb-yE-XgS"/>
- <include reference="YGx-2F-gtL"/>
- <include reference="cqR-5x-3xS"/>
- <include reference="11O-h2-iVL"/>
- <include reference="MIp-Z1-ioX"/>
- <include reference="lHG-2r-l3F"/>
- <include reference="Uhe-RM-ZKX"/>
- <include reference="XNA-6o-O1F"/>
- <include reference="f2y-V2-agt"/>
- <include reference="qfM-qs-IL5"/>
- <include reference="voB-h4-6Y8"/>
- <include reference="DHo-fJ-3sD"/>
- <include reference="OOM-rU-FWY"/>
- <include reference="Y84-Q0-CLh"/>
- <include reference="dBS-EK-0Lz"/>
- <include reference="KUf-BC-vQW"/>
- <include reference="fwS-gT-n0c"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.77653595246086926" green="0.96839857299389853" blue="1" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="IEy-w3-JG7" firstAttribute="leading" secondItem="sFQ-5M-PTh" secondAttribute="leading" id="0Ch-2v-ZEi"/>
- <constraint firstAttribute="trailing" secondItem="IEy-w3-JG7" secondAttribute="trailing" id="3z7-f0-b1m"/>
- <constraint firstItem="ArO-oP-hjz" firstAttribute="top" secondItem="IEy-w3-JG7" secondAttribute="bottom" id="BNy-Md-iRV">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="Ewm-zz-hf9" secondAttribute="trailing" id="CZ8-pX-vLd"/>
- <constraint firstAttribute="trailing" secondItem="ArO-oP-hjz" secondAttribute="trailing" id="G7x-j7-ZZR"/>
- <constraint firstItem="Ewm-zz-hf9" firstAttribute="leading" secondItem="sFQ-5M-PTh" secondAttribute="leading" id="Ks1-Uh-Pg3"/>
- <constraint firstItem="Ewm-zz-hf9" firstAttribute="top" secondItem="sFQ-5M-PTh" secondAttribute="top" id="a8p-Z3-lgP"/>
- <constraint firstItem="ArO-oP-hjz" firstAttribute="leading" secondItem="sFQ-5M-PTh" secondAttribute="leading" id="d9h-9E-L5Z"/>
- <constraint firstItem="Ewm-zz-hf9" firstAttribute="height" secondItem="sFQ-5M-PTh" secondAttribute="height" id="qTW-Lc-B5f">
- <variation key="heightClass=regular-widthClass=compact" constant="-70"/>
- </constraint>
- <constraint firstItem="IEy-w3-JG7" firstAttribute="top" secondItem="Ewm-zz-hf9" secondAttribute="bottom" id="xrb-E7-dX9"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="IEy-w3-JG7"/>
- <exclude reference="Ewm-zz-hf9"/>
- <exclude reference="ArO-oP-hjz"/>
- </mask>
- <mask key="constraints">
- <exclude reference="BNy-Md-iRV"/>
- <exclude reference="G7x-j7-ZZR"/>
- <exclude reference="d9h-9E-L5Z"/>
- <exclude reference="CZ8-pX-vLd"/>
- <exclude reference="Ks1-Uh-Pg3"/>
- <exclude reference="a8p-Z3-lgP"/>
- <exclude reference="qTW-Lc-B5f"/>
- <exclude reference="0Ch-2v-ZEi"/>
- <exclude reference="3z7-f0-b1m"/>
- <exclude reference="xrb-E7-dX9"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="IEy-w3-JG7"/>
- <include reference="Ewm-zz-hf9"/>
- <include reference="ArO-oP-hjz"/>
- </mask>
- <mask key="constraints">
- <include reference="BNy-Md-iRV"/>
- <include reference="G7x-j7-ZZR"/>
- <include reference="d9h-9E-L5Z"/>
- <include reference="CZ8-pX-vLd"/>
- <include reference="Ks1-Uh-Pg3"/>
- <include reference="a8p-Z3-lgP"/>
- <include reference="qTW-Lc-B5f"/>
- <include reference="0Ch-2v-ZEi"/>
- <include reference="3z7-f0-b1m"/>
- <include reference="xrb-E7-dX9"/>
- </mask>
- </variation>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="btnHomeHub" destination="yWp-oq-Nog" id="OPd-mQ-v7m"/>
- <outlet property="btnHomegrpImage" destination="aml-ht-jPD" id="I1S-45-Pu0"/>
- <outlet property="btnModeAway" destination="FsK-Hc-2nk" id="LBI-1z-fT9"/>
- <outlet property="btnModeHome" destination="wMl-Kh-gr1" id="hzt-NK-x7e"/>
- <outlet property="btnModeMorning" destination="0qf-Nc-v3C" id="1tl-jz-JNM"/>
- <outlet property="btnModeNight" destination="JAU-za-I2Q" id="nJA-IY-lHm"/>
- <outlet property="constraintExpandViewTop" destination="BNy-Md-iRV" id="z7v-B3-RLi"/>
- <outlet property="scrollView" destination="Ewm-zz-hf9" id="mGL-QO-9kk"/>
- <outlet property="tabBar" destination="IEy-w3-JG7" id="ytg-8v-AxW"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="d6X-zT-6Nd" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1359" y="385.5"/>
- </scene>
- <!--Invitation List View Controller-->
- <scene sceneID="qUs-or-zSy">
- <objects>
- <viewController storyboardIdentifier="InvitationListViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="zvi-fA-6LP" customClass="InvitationListViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="8nx-uM-TUg"/>
- <viewControllerLayoutGuide type="bottom" id="RIl-wl-W4O"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="hwA-8l-CG0" userLabel="View - ViewControllers">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="pDc-4E-P0G" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Qeu-4k-Xbw" 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="NM6-IH-C1T" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="SNn-Ad-g7o">
- <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="SNn-Ad-g7o"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="SNn-Ad-g7o"/>
- </mask>
- </variation>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="QCj-yy-Zue" 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="GWX-nq-Hom"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="GWX-nq-Hom"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="GWX-nq-Hom"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="NM6-IH-C1T" firstAttribute="top" secondItem="Qeu-4k-Xbw" secondAttribute="top" constant="43" id="0cd-Am-vgj">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="QCj-yy-Zue" secondAttribute="trailing" id="2V5-qd-GwD"/>
- <constraint firstAttribute="bottom" secondItem="QCj-yy-Zue" secondAttribute="bottom" id="WeY-aP-JH4"/>
- <constraint firstAttribute="bottom" secondItem="NM6-IH-C1T" secondAttribute="bottom" constant="22" id="bcA-S4-WFH">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstAttribute="height" constant="80" id="dEq-5p-hUQ"/>
- <constraint firstItem="NM6-IH-C1T" firstAttribute="leading" secondItem="Qeu-4k-Xbw" secondAttribute="leading" constant="10" id="faY-f6-nOk"/>
- <constraint firstItem="QCj-yy-Zue" firstAttribute="leading" secondItem="Qeu-4k-Xbw" secondAttribute="leading" id="jbF-kg-2WY"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="NM6-IH-C1T"/>
- <exclude reference="QCj-yy-Zue"/>
- </mask>
- <mask key="constraints">
- <exclude reference="dEq-5p-hUQ"/>
- <exclude reference="2V5-qd-GwD"/>
- <exclude reference="WeY-aP-JH4"/>
- <exclude reference="jbF-kg-2WY"/>
- <exclude reference="0cd-Am-vgj"/>
- <exclude reference="bcA-S4-WFH"/>
- <exclude reference="faY-f6-nOk"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="NM6-IH-C1T"/>
- <include reference="QCj-yy-Zue"/>
- </mask>
- <mask key="constraints">
- <include reference="dEq-5p-hUQ"/>
- <include reference="2V5-qd-GwD"/>
- <include reference="WeY-aP-JH4"/>
- <include reference="jbF-kg-2WY"/>
- <include reference="0cd-Am-vgj"/>
- <include reference="bcA-S4-WFH"/>
- <include reference="faY-f6-nOk"/>
- </mask>
- </variation>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="AoX-R0-skZ" userLabel="View - Guide">
- <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="AGz-Uc-fLC" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="o3O-PX-eR0">
- <variation key="heightClass=regular-widthClass=compact" constant="280"/>
- </constraint>
- </constraints>
- <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"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="o3O-PX-eR0"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="o3O-PX-eR0"/>
- </mask>
- </variation>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="z6D-LR-pgx" 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="mah-XD-PUC"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="mah-XD-PUC"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="mah-XD-PUC"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="z6D-LR-pgx" secondAttribute="bottom" id="81C-EI-iFw">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="height" constant="80" id="PkJ-Wp-XcP">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- <constraint firstAttribute="bottom" secondItem="AGz-Uc-fLC" secondAttribute="bottom" constant="22" id="U5A-O8-sph">
- <variation key="heightClass=regular-widthClass=compact" constant="15"/>
- </constraint>
- <constraint firstItem="AGz-Uc-fLC" firstAttribute="leading" secondItem="AoX-R0-skZ" secondAttribute="leading" constant="10" id="cHr-J5-uP6">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="AGz-Uc-fLC" firstAttribute="top" secondItem="AoX-R0-skZ" secondAttribute="top" constant="43" id="otZ-3m-Uhi">
- <variation key="heightClass=regular-widthClass=compact" constant="15"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="z6D-LR-pgx" secondAttribute="trailing" id="sYp-Hi-hDF"/>
- <constraint firstItem="z6D-LR-pgx" firstAttribute="leading" secondItem="AoX-R0-skZ" secondAttribute="leading" id="xMc-YG-y7K"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="AGz-Uc-fLC"/>
- <exclude reference="z6D-LR-pgx"/>
- </mask>
- <mask key="constraints">
- <exclude reference="PkJ-Wp-XcP"/>
- <exclude reference="81C-EI-iFw"/>
- <exclude reference="sYp-Hi-hDF"/>
- <exclude reference="xMc-YG-y7K"/>
- <exclude reference="U5A-O8-sph"/>
- <exclude reference="cHr-J5-uP6"/>
- <exclude reference="otZ-3m-Uhi"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="AGz-Uc-fLC"/>
- <include reference="z6D-LR-pgx"/>
- </mask>
- <mask key="constraints">
- <include reference="PkJ-Wp-XcP"/>
- <include reference="81C-EI-iFw"/>
- <include reference="sYp-Hi-hDF"/>
- <include reference="xMc-YG-y7K"/>
- <include reference="U5A-O8-sph"/>
- <include reference="cHr-J5-uP6"/>
- <include reference="otZ-3m-Uhi"/>
- </mask>
- </variation>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="150" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="sqZ-mL-jZY" customClass="CustomTableView">
- <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 clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="InvitationCellIdentifier" rowHeight="95" id="dvW-0I-FNk" customClass="InvitationTableViewCell">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dvW-0I-FNk" id="hAw-sm-QO1">
- <rect key="frame" x="0.0" y="0.0" width="320" height="94"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="hYB-Fq-uod" customClass="CustomImageView">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="55" id="Yai-Jc-PvG"/>
- <constraint firstAttribute="height" constant="55" id="kmq-kR-j5P"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Yai-Jc-PvG"/>
- <exclude reference="kmq-kR-j5P"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Yai-Jc-PvG"/>
- <include reference="kmq-kR-j5P"/>
- </mask>
- </variation>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="150" placeholderIntrinsicHeight="20" text="초대자" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Rjb-JZ-Cf3" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="mLe-nF-Uca">
- <variation key="heightClass=regular-widthClass=compact" constant="150"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="13"/>
- <color key="textColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="mLe-nF-Uca"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="mLe-nF-Uca"/>
- </mask>
- </variation>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" placeholderIntrinsicWidth="150" placeholderIntrinsicHeight="20" text="초대자" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7c0-SI-IJ0" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="sg4-hr-hXG">
- <variation key="heightClass=regular-widthClass=compact" constant="150"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="sg4-hr-hXG"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="sg4-hr-hXG"/>
- </mask>
- </variation>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" placeholderIntrinsicWidth="35" placeholderIntrinsicHeight="20" text="거절" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3Mc-3d-klT" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="20" id="0Pr-Qj-T0Z"/>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" 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="0Pr-Qj-T0Z"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="0Pr-Qj-T0Z"/>
- </mask>
- </variation>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dhN-AI-0Qn" 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="CXM-n4-eEo"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="CXM-n4-eEo"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="CXM-n4-eEo"/>
- </mask>
- </variation>
- </view>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="35" placeholderIntrinsicHeight="20" text="참여" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TeW-4e-z81" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="dhN-AI-0Qn" secondAttribute="bottom" constant="1" id="6a8-K8-osK">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="3Mc-3d-klT" secondAttribute="trailing" constant="15" id="95i-HK-Yhg"/>
- <constraint firstItem="Rjb-JZ-Cf3" firstAttribute="top" secondItem="hAw-sm-QO1" secondAttribute="top" constant="27" id="D7I-L0-8xA"/>
- <constraint firstItem="dhN-AI-0Qn" firstAttribute="leading" secondItem="hAw-sm-QO1" secondAttribute="leading" id="EVV-Nb-quU"/>
- <constraint firstItem="7c0-SI-IJ0" firstAttribute="leading" secondItem="hYB-Fq-uod" secondAttribute="trailing" constant="5" id="EuF-d3-XIT"/>
- <constraint firstItem="7c0-SI-IJ0" firstAttribute="top" secondItem="Rjb-JZ-Cf3" secondAttribute="bottom" constant="8" id="Fhk-w8-1OS"/>
- <constraint firstItem="TeW-4e-z81" firstAttribute="top" secondItem="hAw-sm-QO1" secondAttribute="top" constant="37" id="K9W-Xt-Ukn"/>
- <constraint firstAttribute="trailing" secondItem="dhN-AI-0Qn" secondAttribute="trailing" id="QRn-P9-u7r"/>
- <constraint firstItem="hYB-Fq-uod" firstAttribute="top" secondItem="hAw-sm-QO1" secondAttribute="top" constant="20" id="ZOJ-jE-01R"/>
- <constraint firstItem="Rjb-JZ-Cf3" firstAttribute="leading" secondItem="hYB-Fq-uod" secondAttribute="trailing" constant="5" id="crE-XY-9TK"/>
- <constraint firstItem="TeW-4e-z81" firstAttribute="leading" secondItem="Rjb-JZ-Cf3" secondAttribute="trailing" id="nDM-rl-AEl"/>
- <constraint firstItem="dhN-AI-0Qn" firstAttribute="top" secondItem="TeW-4e-z81" secondAttribute="bottom" constant="38" id="rg4-32-LO4"/>
- <constraint firstItem="3Mc-3d-klT" firstAttribute="top" secondItem="hAw-sm-QO1" secondAttribute="top" constant="37" id="tOK-Vj-huL"/>
- <constraint firstItem="3Mc-3d-klT" firstAttribute="leading" secondItem="TeW-4e-z81" secondAttribute="trailing" constant="10" id="tij-bg-2Kv"/>
- <constraint firstItem="hYB-Fq-uod" firstAttribute="leading" secondItem="hAw-sm-QO1" secondAttribute="leading" constant="15" id="ze3-TY-zQC"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="hYB-Fq-uod"/>
- <exclude reference="Rjb-JZ-Cf3"/>
- <exclude reference="7c0-SI-IJ0"/>
- <exclude reference="3Mc-3d-klT"/>
- <exclude reference="dhN-AI-0Qn"/>
- <exclude reference="TeW-4e-z81"/>
- </mask>
- <mask key="constraints">
- <exclude reference="6a8-K8-osK"/>
- <exclude reference="EVV-Nb-quU"/>
- <exclude reference="QRn-P9-u7r"/>
- <exclude reference="rg4-32-LO4"/>
- <exclude reference="95i-HK-Yhg"/>
- <exclude reference="tOK-Vj-huL"/>
- <exclude reference="tij-bg-2Kv"/>
- <exclude reference="EuF-d3-XIT"/>
- <exclude reference="Fhk-w8-1OS"/>
- <exclude reference="D7I-L0-8xA"/>
- <exclude reference="crE-XY-9TK"/>
- <exclude reference="K9W-Xt-Ukn"/>
- <exclude reference="nDM-rl-AEl"/>
- <exclude reference="ZOJ-jE-01R"/>
- <exclude reference="ze3-TY-zQC"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="hYB-Fq-uod"/>
- <include reference="Rjb-JZ-Cf3"/>
- <include reference="7c0-SI-IJ0"/>
- <include reference="3Mc-3d-klT"/>
- <include reference="dhN-AI-0Qn"/>
- <include reference="TeW-4e-z81"/>
- </mask>
- <mask key="constraints">
- <include reference="6a8-K8-osK"/>
- <include reference="EVV-Nb-quU"/>
- <include reference="QRn-P9-u7r"/>
- <include reference="rg4-32-LO4"/>
- <include reference="95i-HK-Yhg"/>
- <include reference="tOK-Vj-huL"/>
- <include reference="tij-bg-2Kv"/>
- <include reference="EuF-d3-XIT"/>
- <include reference="Fhk-w8-1OS"/>
- <include reference="D7I-L0-8xA"/>
- <include reference="crE-XY-9TK"/>
- <include reference="K9W-Xt-Ukn"/>
- <include reference="nDM-rl-AEl"/>
- <include reference="ZOJ-jE-01R"/>
- <include reference="ze3-TY-zQC"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <connections>
- <outlet property="imgvProfile" destination="hYB-Fq-uod" id="bH8-4J-iaU"/>
- <outlet property="lblFromNickname" destination="7c0-SI-IJ0" id="ic1-3I-glj"/>
- <outlet property="lblFromStatic" destination="Rjb-JZ-Cf3" id="dqN-hN-d1c"/>
- <outlet property="lblJoin" destination="TeW-4e-z81" id="Uqg-uK-YQ6"/>
- <outlet property="lblReject" destination="3Mc-3d-klT" id="kAZ-ZC-mQQ"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="VUG-5v-7LD" 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="z4C-Ik-BBZ" 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="height" constant="30" id="XYY-tl-aMP">
- <variation key="heightClass=regular-widthClass=compact" constant="69"/>
- </constraint>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" id="x07-Vi-FZ4"/>
- </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="XYY-tl-aMP"/>
- <exclude reference="x07-Vi-FZ4"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="XYY-tl-aMP"/>
- <include reference="x07-Vi-FZ4"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCloseTouched:" destination="zvi-fA-6LP" eventType="touchUpInside" id="eAr-kw-kOM"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="H7C-io-ebT" 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="OXy-WM-SKY"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="OXy-WM-SKY"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="OXy-WM-SKY"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="z4C-Ik-BBZ" secondAttribute="trailing" constant="202" id="93o-y7-RgM"/>
- <constraint firstItem="z4C-Ik-BBZ" firstAttribute="top" secondItem="VUG-5v-7LD" secondAttribute="top" id="SpT-WF-eZ6">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- <constraint firstItem="H7C-io-ebT" firstAttribute="top" secondItem="VUG-5v-7LD" secondAttribute="top" id="Uzz-GD-1aX"/>
- <constraint firstAttribute="trailing" secondItem="z4C-Ik-BBZ" secondAttribute="trailing" id="Z34-aM-3Ti"/>
- <constraint firstItem="H7C-io-ebT" firstAttribute="leading" secondItem="VUG-5v-7LD" secondAttribute="leading" id="dMy-ix-nXG"/>
- <constraint firstAttribute="height" constant="70" id="otC-Hr-vFv"/>
- <constraint firstAttribute="trailing" secondItem="H7C-io-ebT" secondAttribute="trailing" id="qxU-ul-KX0"/>
- <constraint firstItem="z4C-Ik-BBZ" firstAttribute="leading" secondItem="VUG-5v-7LD" secondAttribute="leading" constant="-2" id="zn0-DZ-6g7">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="otC-Hr-vFv"/>
- <exclude reference="Uzz-GD-1aX"/>
- <exclude reference="dMy-ix-nXG"/>
- <exclude reference="qxU-ul-KX0"/>
- <exclude reference="93o-y7-RgM"/>
- <exclude reference="SpT-WF-eZ6"/>
- <exclude reference="Z34-aM-3Ti"/>
- <exclude reference="zn0-DZ-6g7"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="otC-Hr-vFv"/>
- <include reference="Uzz-GD-1aX"/>
- <include reference="dMy-ix-nXG"/>
- <include reference="qxU-ul-KX0"/>
- <exclude reference="93o-y7-RgM"/>
- <include reference="SpT-WF-eZ6"/>
- <include reference="Z34-aM-3Ti"/>
- <include reference="zn0-DZ-6g7"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="Qeu-4k-Xbw" firstAttribute="leading" secondItem="pDc-4E-P0G" secondAttribute="leading" id="6gX-qe-VI9"/>
- <constraint firstItem="VUG-5v-7LD" firstAttribute="leading" secondItem="pDc-4E-P0G" secondAttribute="leading" id="7za-8F-sSI"/>
- <constraint firstItem="sqZ-mL-jZY" firstAttribute="top" secondItem="AoX-R0-skZ" secondAttribute="bottom" id="Kzg-Ln-5Ed"/>
- <constraint firstItem="Qeu-4k-Xbw" firstAttribute="top" secondItem="pDc-4E-P0G" secondAttribute="top" id="MUF-gi-gmy"/>
- <constraint firstAttribute="trailing" secondItem="Qeu-4k-Xbw" secondAttribute="trailing" id="OXc-NL-Hw4"/>
- <constraint firstAttribute="trailing" secondItem="sqZ-mL-jZY" secondAttribute="trailing" id="QmA-8P-nC8"/>
- <constraint firstItem="AoX-R0-skZ" firstAttribute="top" secondItem="Qeu-4k-Xbw" secondAttribute="bottom" id="Tce-w8-TQS"/>
- <constraint firstItem="VUG-5v-7LD" firstAttribute="top" secondItem="sqZ-mL-jZY" secondAttribute="bottom" id="ajT-I4-LOq"/>
- <constraint firstAttribute="trailing" secondItem="AoX-R0-skZ" secondAttribute="trailing" id="cIu-qZ-3IZ"/>
- <constraint firstAttribute="trailing" secondItem="VUG-5v-7LD" secondAttribute="trailing" id="eL7-iL-oG5"/>
- <constraint firstItem="AoX-R0-skZ" firstAttribute="leading" secondItem="pDc-4E-P0G" secondAttribute="leading" id="hys-ue-bJw"/>
- <constraint firstItem="sqZ-mL-jZY" firstAttribute="leading" secondItem="pDc-4E-P0G" secondAttribute="leading" id="iCa-oK-bLl"/>
- <constraint firstAttribute="bottom" secondItem="VUG-5v-7LD" secondAttribute="bottom" id="o2y-HR-brf">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Qeu-4k-Xbw"/>
- <exclude reference="AoX-R0-skZ"/>
- <exclude reference="VUG-5v-7LD"/>
- </mask>
- <mask key="constraints">
- <exclude reference="7za-8F-sSI"/>
- <exclude reference="ajT-I4-LOq"/>
- <exclude reference="eL7-iL-oG5"/>
- <exclude reference="o2y-HR-brf"/>
- <exclude reference="Tce-w8-TQS"/>
- <exclude reference="cIu-qZ-3IZ"/>
- <exclude reference="hys-ue-bJw"/>
- <exclude reference="6gX-qe-VI9"/>
- <exclude reference="MUF-gi-gmy"/>
- <exclude reference="OXc-NL-Hw4"/>
- <exclude reference="Kzg-Ln-5Ed"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Qeu-4k-Xbw"/>
- <include reference="AoX-R0-skZ"/>
- <include reference="VUG-5v-7LD"/>
- </mask>
- <mask key="constraints">
- <include reference="7za-8F-sSI"/>
- <include reference="ajT-I4-LOq"/>
- <include reference="eL7-iL-oG5"/>
- <include reference="o2y-HR-brf"/>
- <include reference="Tce-w8-TQS"/>
- <include reference="cIu-qZ-3IZ"/>
- <include reference="hys-ue-bJw"/>
- <include reference="6gX-qe-VI9"/>
- <include reference="MUF-gi-gmy"/>
- <include reference="OXc-NL-Hw4"/>
- <include reference="Kzg-Ln-5Ed"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="RIl-wl-W4O" firstAttribute="top" secondItem="pDc-4E-P0G" secondAttribute="bottom" id="7l6-HJ-vIe"/>
- <constraint firstItem="pDc-4E-P0G" firstAttribute="top" secondItem="hwA-8l-CG0" secondAttribute="top" id="ZYa-Z9-Eau"/>
- <constraint firstItem="pDc-4E-P0G" firstAttribute="leading" secondItem="hwA-8l-CG0" secondAttribute="leading" id="kiG-FR-key"/>
- <constraint firstAttribute="trailing" secondItem="pDc-4E-P0G" secondAttribute="trailing" id="mNK-U5-FDM"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="pDc-4E-P0G"/>
- </mask>
- <mask key="constraints">
- <exclude reference="7l6-HJ-vIe"/>
- <exclude reference="ZYa-Z9-Eau"/>
- <exclude reference="kiG-FR-key"/>
- <exclude reference="mNK-U5-FDM"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="pDc-4E-P0G"/>
- </mask>
- <mask key="constraints">
- <include reference="7l6-HJ-vIe"/>
- <include reference="ZYa-Z9-Eau"/>
- <include reference="kiG-FR-key"/>
- <include reference="mNK-U5-FDM"/>
- </mask>
- </variation>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="tableView" destination="sqZ-mL-jZY" id="QRf-dV-qZk"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="K1k-T2-mo8" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1926" y="385.5"/>
- </scene>
- <!--Notice View Controller-->
- <scene sceneID="ABz-8d-u3M">
- <objects>
- <viewController storyboardIdentifier="NoticeViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="n2O-Hc-HGH" customClass="NoticeViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="0Nc-fO-PGv"/>
- <viewControllerLayoutGuide type="bottom" id="vOv-xJ-DDM"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="cHu-at-v8w" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="KKv-xe-HDR" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="JlY-0M-ZBU" 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="Aid-UM-dcw" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="Jp4-2g-l4q">
- <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="Jp4-2g-l4q"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Jp4-2g-l4q"/>
- </mask>
- </variation>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="b2n-S5-xVi" 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="4Ek-Qh-u63"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="4Ek-Qh-u63"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="4Ek-Qh-u63"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="Aid-UM-dcw" firstAttribute="leading" secondItem="JlY-0M-ZBU" secondAttribute="leading" constant="10" id="N3k-dX-We9"/>
- <constraint firstAttribute="bottom" secondItem="b2n-S5-xVi" secondAttribute="bottom" id="gTr-vR-SWk"/>
- <constraint firstItem="b2n-S5-xVi" firstAttribute="leading" secondItem="JlY-0M-ZBU" secondAttribute="leading" id="gcS-Fj-PUn"/>
- <constraint firstItem="Aid-UM-dcw" firstAttribute="top" secondItem="JlY-0M-ZBU" secondAttribute="top" constant="43" id="gwN-p2-Toz">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstAttribute="height" constant="80" id="i6c-TJ-kZI"/>
- <constraint firstAttribute="trailing" secondItem="b2n-S5-xVi" secondAttribute="trailing" id="rXo-Xr-aqt"/>
- <constraint firstAttribute="bottom" secondItem="Aid-UM-dcw" secondAttribute="bottom" constant="22" id="z5Q-Rj-H2m">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Aid-UM-dcw"/>
- <exclude reference="b2n-S5-xVi"/>
- </mask>
- <mask key="constraints">
- <exclude reference="i6c-TJ-kZI"/>
- <exclude reference="gTr-vR-SWk"/>
- <exclude reference="gcS-Fj-PUn"/>
- <exclude reference="rXo-Xr-aqt"/>
- <exclude reference="N3k-dX-We9"/>
- <exclude reference="gwN-p2-Toz"/>
- <exclude reference="z5Q-Rj-H2m"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Aid-UM-dcw"/>
- <include reference="b2n-S5-xVi"/>
- </mask>
- <mask key="constraints">
- <include reference="i6c-TJ-kZI"/>
- <include reference="gTr-vR-SWk"/>
- <include reference="gcS-Fj-PUn"/>
- <include reference="rXo-Xr-aqt"/>
- <include reference="N3k-dX-We9"/>
- <include reference="gwN-p2-Toz"/>
- <include reference="z5Q-Rj-H2m"/>
- </mask>
- </variation>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="150" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="s9m-pP-L5S" customClass="CustomTableView">
- <rect key="frame" x="0.0" y="0.0" width="320" height="488"/>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="NoticeCellIdentifier" rowHeight="120" id="T3G-5j-2mg" customClass="NoticeTableViewCell">
- <rect key="frame" x="0.0" y="22" width="320" height="120"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="T3G-5j-2mg" id="jBD-gu-tIo">
- <rect key="frame" x="0.0" y="0.0" width="320" height="119"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="ao4-Ln-DUx" userLabel="View - Cell">
- <rect key="frame" x="-5" y="0.0" width="315" height="95"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="1cS-pJ-g6U" customClass="CustomImageView">
- <rect key="frame" x="20" y="25" width="10" height="10"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="10" id="PoZ-0n-B85"/>
- <constraint firstAttribute="width" constant="10" id="gaN-cn-p6e"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="PoZ-0n-B85"/>
- <exclude reference="gaN-cn-p6e"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="PoZ-0n-B85"/>
- <include reference="gaN-cn-p6e"/>
- </mask>
- </variation>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="250" placeholderIntrinsicHeight="15" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pHZ-Mj-qq8" userLabel="Label - date" customClass="CustomLabel">
- <rect key="frame" x="45" y="60" width="250" height="15"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="250" placeholderIntrinsicHeight="20" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eSe-UQ-IR0" userLabel="Label - content" customClass="CustomLabel">
- <rect key="frame" x="45" y="20" width="250" height="20"/>
- <animations/>
- <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"/>
- </label>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="pHZ-Mj-qq8" firstAttribute="leading" secondItem="eSe-UQ-IR0" secondAttribute="leading" id="638-k9-e8c"/>
- <constraint firstItem="1cS-pJ-g6U" firstAttribute="top" secondItem="ao4-Ln-DUx" secondAttribute="top" constant="15" id="ULN-19-rLP">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstAttribute="bottom" secondItem="pHZ-Mj-qq8" secondAttribute="bottom" constant="25" id="V18-qo-knh"/>
- <constraint firstAttribute="trailing" secondItem="pHZ-Mj-qq8" secondAttribute="trailing" constant="35" id="fe1-EK-TPb"/>
- <constraint firstItem="eSe-UQ-IR0" firstAttribute="top" secondItem="ao4-Ln-DUx" secondAttribute="top" constant="25" id="hO8-rc-dev"/>
- <constraint firstItem="pHZ-Mj-qq8" firstAttribute="top" secondItem="eSe-UQ-IR0" secondAttribute="bottom" constant="20" id="hkV-LZ-bA8"/>
- <constraint firstAttribute="trailing" secondItem="eSe-UQ-IR0" secondAttribute="trailing" constant="35" id="q0d-no-nRb"/>
- <constraint firstItem="eSe-UQ-IR0" firstAttribute="leading" secondItem="1cS-pJ-g6U" secondAttribute="trailing" constant="15" id="x2e-LM-DkC"/>
- <constraint firstItem="1cS-pJ-g6U" firstAttribute="leading" secondItem="ao4-Ln-DUx" secondAttribute="leading" constant="10" id="y0Y-nl-zhZ"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="ULN-19-rLP"/>
- <exclude reference="y0Y-nl-zhZ"/>
- <exclude reference="hO8-rc-dev"/>
- <exclude reference="q0d-no-nRb"/>
- <exclude reference="x2e-LM-DkC"/>
- <exclude reference="638-k9-e8c"/>
- <exclude reference="V18-qo-knh"/>
- <exclude reference="fe1-EK-TPb"/>
- <exclude reference="hkV-LZ-bA8"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="ULN-19-rLP"/>
- <include reference="y0Y-nl-zhZ"/>
- <include reference="hO8-rc-dev"/>
- <include reference="q0d-no-nRb"/>
- <include reference="x2e-LM-DkC"/>
- <include reference="638-k9-e8c"/>
- <include reference="V18-qo-knh"/>
- <include reference="fe1-EK-TPb"/>
- <include reference="hkV-LZ-bA8"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="ao4-Ln-DUx" secondAttribute="trailing" id="1gq-Rm-tCa"/>
- <constraint firstItem="ao4-Ln-DUx" firstAttribute="top" secondItem="jBD-gu-tIo" secondAttribute="top" id="Hfv-bg-IM3"/>
- <constraint firstAttribute="bottom" secondItem="ao4-Ln-DUx" secondAttribute="bottom" constant="6" id="SBf-ii-3rk">
- <variation key="heightClass=regular-widthClass=compact" constant="14"/>
- </constraint>
- <constraint firstItem="ao4-Ln-DUx" firstAttribute="leading" secondItem="jBD-gu-tIo" secondAttribute="leading" id="Y73-V4-v2P"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="1gq-Rm-tCa"/>
- <exclude reference="Hfv-bg-IM3"/>
- <exclude reference="SBf-ii-3rk"/>
- <exclude reference="Y73-V4-v2P"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="1gq-Rm-tCa"/>
- <include reference="Hfv-bg-IM3"/>
- <include reference="SBf-ii-3rk"/>
- <include reference="Y73-V4-v2P"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <connections>
- <outlet property="imgvStatus" destination="1cS-pJ-g6U" id="Lup-bP-PUD"/>
- <outlet property="lblContent" destination="eSe-UQ-IR0" id="DWU-Ol-eT1"/>
- <outlet property="lblCreateDatetime" destination="pHZ-Mj-qq8" id="TUR-rU-RE5"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Hz7-xb-Nhw" 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="mAH-Qz-VYm" 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="GM0-YB-RXS"/>
- <constraint firstAttribute="height" constant="30" id="dZl-vm-2Z6">
- <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="GM0-YB-RXS"/>
- <exclude reference="dZl-vm-2Z6"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="GM0-YB-RXS"/>
- <include reference="dZl-vm-2Z6"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCloseTouched:" destination="n2O-Hc-HGH" eventType="touchUpInside" id="5OD-3Q-02s"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="tbJ-pm-GoU" 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="dXs-PR-Lms"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="dXs-PR-Lms"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="dXs-PR-Lms"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="tbJ-pm-GoU" firstAttribute="top" secondItem="Hz7-xb-Nhw" secondAttribute="top" id="26Z-l3-jS4"/>
- <constraint firstAttribute="trailing" secondItem="mAH-Qz-VYm" secondAttribute="trailing" constant="202" id="7Td-LB-pf0"/>
- <constraint firstAttribute="trailing" secondItem="mAH-Qz-VYm" secondAttribute="trailing" id="Gjv-xc-vY2"/>
- <constraint firstItem="mAH-Qz-VYm" firstAttribute="leading" secondItem="Hz7-xb-Nhw" secondAttribute="leading" constant="-2" id="RSA-M2-VY8">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="tbJ-pm-GoU" firstAttribute="leading" secondItem="Hz7-xb-Nhw" secondAttribute="leading" id="TyU-pd-gmP"/>
- <constraint firstAttribute="trailing" secondItem="tbJ-pm-GoU" secondAttribute="trailing" id="Uxl-El-QKg"/>
- <constraint firstAttribute="height" constant="70" id="f8k-HH-MjP"/>
- <constraint firstItem="mAH-Qz-VYm" firstAttribute="top" secondItem="Hz7-xb-Nhw" secondAttribute="top" id="uZX-3Y-kbs">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="f8k-HH-MjP"/>
- <exclude reference="26Z-l3-jS4"/>
- <exclude reference="TyU-pd-gmP"/>
- <exclude reference="Uxl-El-QKg"/>
- <exclude reference="7Td-LB-pf0"/>
- <exclude reference="Gjv-xc-vY2"/>
- <exclude reference="RSA-M2-VY8"/>
- <exclude reference="uZX-3Y-kbs"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="f8k-HH-MjP"/>
- <include reference="26Z-l3-jS4"/>
- <include reference="TyU-pd-gmP"/>
- <include reference="Uxl-El-QKg"/>
- <exclude reference="7Td-LB-pf0"/>
- <include reference="Gjv-xc-vY2"/>
- <include reference="RSA-M2-VY8"/>
- <include reference="uZX-3Y-kbs"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="s9m-pP-L5S" firstAttribute="leading" secondItem="KKv-xe-HDR" secondAttribute="leading" id="3ox-zJ-bdO"/>
- <constraint firstItem="Hz7-xb-Nhw" firstAttribute="top" secondItem="s9m-pP-L5S" secondAttribute="bottom" id="4C2-Ip-91h"/>
- <constraint firstAttribute="trailing" secondItem="s9m-pP-L5S" secondAttribute="trailing" id="6GO-Y2-reK"/>
- <constraint firstAttribute="trailing" secondItem="Hz7-xb-Nhw" secondAttribute="trailing" id="9Fn-Bh-rxF"/>
- <constraint firstItem="Hz7-xb-Nhw" firstAttribute="leading" secondItem="KKv-xe-HDR" secondAttribute="leading" id="EAY-zy-H1L"/>
- <constraint firstItem="JlY-0M-ZBU" firstAttribute="leading" secondItem="KKv-xe-HDR" secondAttribute="leading" id="I3n-F9-RVf"/>
- <constraint firstItem="s9m-pP-L5S" firstAttribute="top" secondItem="JlY-0M-ZBU" secondAttribute="bottom" id="ObS-rt-H3f"/>
- <constraint firstAttribute="trailing" secondItem="JlY-0M-ZBU" secondAttribute="trailing" id="gvQ-Ae-cW5"/>
- <constraint firstItem="JlY-0M-ZBU" firstAttribute="top" secondItem="KKv-xe-HDR" secondAttribute="top" id="k9G-pR-SAt"/>
- <constraint firstAttribute="bottom" secondItem="Hz7-xb-Nhw" secondAttribute="bottom" id="kOg-v1-56g">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="JlY-0M-ZBU"/>
- <exclude reference="Hz7-xb-Nhw"/>
- </mask>
- <mask key="constraints">
- <exclude reference="4C2-Ip-91h"/>
- <exclude reference="9Fn-Bh-rxF"/>
- <exclude reference="EAY-zy-H1L"/>
- <exclude reference="kOg-v1-56g"/>
- <exclude reference="I3n-F9-RVf"/>
- <exclude reference="gvQ-Ae-cW5"/>
- <exclude reference="k9G-pR-SAt"/>
- <exclude reference="ObS-rt-H3f"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="JlY-0M-ZBU"/>
- <include reference="Hz7-xb-Nhw"/>
- </mask>
- <mask key="constraints">
- <include reference="4C2-Ip-91h"/>
- <include reference="9Fn-Bh-rxF"/>
- <include reference="EAY-zy-H1L"/>
- <include reference="kOg-v1-56g"/>
- <include reference="I3n-F9-RVf"/>
- <include reference="gvQ-Ae-cW5"/>
- <include reference="k9G-pR-SAt"/>
- <include reference="ObS-rt-H3f"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="vOv-xJ-DDM" firstAttribute="top" secondItem="KKv-xe-HDR" secondAttribute="bottom" id="8bt-Mn-D7c"/>
- <constraint firstAttribute="trailing" secondItem="KKv-xe-HDR" secondAttribute="trailing" id="G5t-6m-yft"/>
- <constraint firstItem="KKv-xe-HDR" firstAttribute="top" secondItem="0Nc-fO-PGv" secondAttribute="bottom" id="fhI-N6-GEc">
- <variation key="heightClass=regular-widthClass=compact" constant="-20"/>
- </constraint>
- <constraint firstItem="KKv-xe-HDR" firstAttribute="leading" secondItem="cHu-at-v8w" secondAttribute="leading" id="kPE-XB-1Xf"/>
- </constraints>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="btnClose" destination="mAH-Qz-VYm" id="oHW-CT-e5a"/>
- <outlet property="lblTitle" destination="Aid-UM-dcw" id="7wl-nc-353"/>
- <outlet property="tableView" destination="s9m-pP-L5S" id="OBB-cC-6HK"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="aly-lG-Q22" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1353" y="871.5"/>
- </scene>
- <!--Message Box View Controller-->
- <scene sceneID="vDm-Qf-6T7">
- <objects>
- <viewController storyboardIdentifier="MessageBoxViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="9FH-Gi-zDb" customClass="MessageBoxViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="SNZ-dq-GFi"/>
- <viewControllerLayoutGuide type="bottom" id="vuI-rH-sFO"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="yXR-bI-I8z" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Scn-lG-xad" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="biT-if-f93" 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="mdq-5L-Ukc" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="Zob-f9-fcw">
- <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="Zob-f9-fcw"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Zob-f9-fcw"/>
- </mask>
- </variation>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gCf-uo-QYh" 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="38Q-Lm-fRj"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="38Q-Lm-fRj"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="38Q-Lm-fRj"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="gCf-uo-QYh" secondAttribute="trailing" id="8cZ-Wn-5ET"/>
- <constraint firstItem="mdq-5L-Ukc" firstAttribute="leading" secondItem="biT-if-f93" secondAttribute="leading" constant="10" id="MOA-tg-SFB"/>
- <constraint firstAttribute="bottom" secondItem="mdq-5L-Ukc" secondAttribute="bottom" constant="22" id="PaA-Vd-PD7">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstAttribute="height" constant="80" id="SL0-YS-SBP"/>
- <constraint firstItem="gCf-uo-QYh" firstAttribute="leading" secondItem="biT-if-f93" secondAttribute="leading" id="UD4-KD-NaV"/>
- <constraint firstItem="mdq-5L-Ukc" firstAttribute="top" secondItem="biT-if-f93" secondAttribute="top" constant="43" id="bwA-bD-9Kf">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstAttribute="bottom" secondItem="gCf-uo-QYh" secondAttribute="bottom" id="i6a-dI-LzJ"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="mdq-5L-Ukc"/>
- <exclude reference="gCf-uo-QYh"/>
- </mask>
- <mask key="constraints">
- <exclude reference="SL0-YS-SBP"/>
- <exclude reference="8cZ-Wn-5ET"/>
- <exclude reference="UD4-KD-NaV"/>
- <exclude reference="i6a-dI-LzJ"/>
- <exclude reference="MOA-tg-SFB"/>
- <exclude reference="PaA-Vd-PD7"/>
- <exclude reference="bwA-bD-9Kf"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="mdq-5L-Ukc"/>
- <include reference="gCf-uo-QYh"/>
- </mask>
- <mask key="constraints">
- <include reference="SL0-YS-SBP"/>
- <include reference="8cZ-Wn-5ET"/>
- <include reference="UD4-KD-NaV"/>
- <include reference="i6a-dI-LzJ"/>
- <include reference="MOA-tg-SFB"/>
- <include reference="PaA-Vd-PD7"/>
- <include reference="bwA-bD-9Kf"/>
- </mask>
- </variation>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="150" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="Br6-Zd-n3x">
- <rect key="frame" x="0.0" y="0.0" width="320" height="488"/>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PersonalNoticeCellIdentifier" rowHeight="160" id="13O-oy-kzr" customClass="MessageBoxTableViewCell">
- <rect key="frame" x="0.0" y="22" width="320" height="160"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="13O-oy-kzr" id="qha-y8-7bn">
- <rect key="frame" x="0.0" y="0.0" width="320" height="159"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="2a0-x7-jc2" userLabel="View - Cell">
- <rect key="frame" x="-5" y="0.0" width="315" height="140"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Ggs-kS-v3C" customClass="CustomImageView">
- <rect key="frame" x="20" y="25" width="10" height="10"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="10" id="atf-Zb-Vjm"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="atf-Zb-Vjm"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="atf-Zb-Vjm"/>
- </mask>
- </variation>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="250" placeholderIntrinsicHeight="20" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="tla-ML-KLT" customClass="CustomLabel">
- <rect key="frame" x="45" y="20" width="250" height="20"/>
- <animations/>
- <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"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="250" placeholderIntrinsicHeight="20" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RUV-FQ-PGy" customClass="CustomLabel">
- <rect key="frame" x="45" y="100" width="250" height="20"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="250" placeholderIntrinsicHeight="20" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3qW-R8-9BC" customClass="CustomLabel">
- <rect key="frame" x="45" y="60" width="250" height="20"/>
- <animations/>
- <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"/>
- </label>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="RUV-FQ-PGy" secondAttribute="trailing" constant="25" id="D55-bz-qpc"/>
- <constraint firstItem="RUV-FQ-PGy" firstAttribute="top" secondItem="3qW-R8-9BC" secondAttribute="bottom" constant="20" id="Dva-fd-K5C"/>
- <constraint firstItem="tla-ML-KLT" firstAttribute="leading" secondItem="Ggs-kS-v3C" secondAttribute="trailing" constant="15" id="Fr4-Ll-Wim"/>
- <constraint firstAttribute="trailing" secondItem="tla-ML-KLT" secondAttribute="trailing" constant="25" id="If8-B8-tQ0"/>
- <constraint firstItem="RUV-FQ-PGy" firstAttribute="leading" secondItem="3qW-R8-9BC" secondAttribute="leading" id="M89-eQ-yTJ"/>
- <constraint firstItem="tla-ML-KLT" firstAttribute="top" secondItem="2a0-x7-jc2" secondAttribute="top" constant="20" id="bG0-bN-xax"/>
- <constraint firstItem="Ggs-kS-v3C" firstAttribute="leading" secondItem="2a0-x7-jc2" secondAttribute="leading" constant="20" id="dR8-5Q-AFG"/>
- <constraint firstItem="3qW-R8-9BC" firstAttribute="leading" secondItem="tla-ML-KLT" secondAttribute="leading" id="hcb-Sc-5s9"/>
- <constraint firstItem="Ggs-kS-v3C" firstAttribute="top" secondItem="2a0-x7-jc2" secondAttribute="top" constant="25" id="iyj-D4-lKG"/>
- <constraint firstItem="3qW-R8-9BC" firstAttribute="top" secondItem="tla-ML-KLT" secondAttribute="bottom" constant="20" id="kd1-Rt-PNf"/>
- <constraint firstAttribute="bottom" secondItem="RUV-FQ-PGy" secondAttribute="bottom" constant="25" id="xuy-g0-Yah"/>
- <constraint firstAttribute="trailing" secondItem="3qW-R8-9BC" secondAttribute="trailing" constant="25" id="zdA-Ka-Wgo"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="dR8-5Q-AFG"/>
- <exclude reference="iyj-D4-lKG"/>
- <exclude reference="Fr4-Ll-Wim"/>
- <exclude reference="If8-B8-tQ0"/>
- <exclude reference="bG0-bN-xax"/>
- <exclude reference="hcb-Sc-5s9"/>
- <exclude reference="kd1-Rt-PNf"/>
- <exclude reference="zdA-Ka-Wgo"/>
- <exclude reference="D55-bz-qpc"/>
- <exclude reference="Dva-fd-K5C"/>
- <exclude reference="M89-eQ-yTJ"/>
- <exclude reference="xuy-g0-Yah"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="dR8-5Q-AFG"/>
- <include reference="iyj-D4-lKG"/>
- <include reference="Fr4-Ll-Wim"/>
- <include reference="If8-B8-tQ0"/>
- <include reference="bG0-bN-xax"/>
- <include reference="hcb-Sc-5s9"/>
- <include reference="kd1-Rt-PNf"/>
- <include reference="zdA-Ka-Wgo"/>
- <include reference="D55-bz-qpc"/>
- <include reference="Dva-fd-K5C"/>
- <include reference="M89-eQ-yTJ"/>
- <include reference="xuy-g0-Yah"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="2a0-x7-jc2" firstAttribute="top" secondItem="qha-y8-7bn" secondAttribute="top" id="CPR-Dw-nYV"/>
- <constraint firstItem="2a0-x7-jc2" firstAttribute="leading" secondItem="qha-y8-7bn" secondAttribute="leading" id="UNz-wh-4AT"/>
- <constraint firstAttribute="bottom" secondItem="2a0-x7-jc2" secondAttribute="bottom" constant="14" id="YNZ-th-2Ep"/>
- <constraint firstAttribute="trailing" secondItem="2a0-x7-jc2" secondAttribute="trailing" id="jo8-2O-sdp"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="CPR-Dw-nYV"/>
- <exclude reference="UNz-wh-4AT"/>
- <exclude reference="YNZ-th-2Ep"/>
- <exclude reference="jo8-2O-sdp"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="CPR-Dw-nYV"/>
- <include reference="UNz-wh-4AT"/>
- <include reference="YNZ-th-2Ep"/>
- <include reference="jo8-2O-sdp"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <connections>
- <outlet property="imgvStatus" destination="Ggs-kS-v3C" id="dGb-tE-uM2"/>
- <outlet property="lblContent" destination="tla-ML-KLT" id="4Nt-HF-jvq"/>
- <outlet property="lblReadDatatime" destination="RUV-FQ-PGy" id="brR-8j-diL"/>
- <outlet property="lblSubContent" destination="3qW-R8-9BC" id="ICH-CG-ZpZ"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="sBO-aa-fcd" 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="a2s-NZ-mzX" 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="height" constant="30" id="njb-L2-DXI">
- <variation key="heightClass=regular-widthClass=compact" constant="69"/>
- </constraint>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" id="pwb-Hi-z0A"/>
- </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="njb-L2-DXI"/>
- <exclude reference="pwb-Hi-z0A"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="njb-L2-DXI"/>
- <include reference="pwb-Hi-z0A"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCloseTouched:" destination="9FH-Gi-zDb" eventType="touchUpInside" id="4h0-7S-iVe"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="grb-gm-MwJ" 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="hSq-fj-1Sr"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="hSq-fj-1Sr"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="hSq-fj-1Sr"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="a2s-NZ-mzX" secondAttribute="trailing" constant="202" id="2dZ-oP-nPT"/>
- <constraint firstItem="grb-gm-MwJ" firstAttribute="top" secondItem="sBO-aa-fcd" secondAttribute="top" id="Bbc-A0-l0r"/>
- <constraint firstAttribute="height" constant="70" id="Jnx-YN-9Zl"/>
- <constraint firstItem="grb-gm-MwJ" firstAttribute="leading" secondItem="sBO-aa-fcd" secondAttribute="leading" id="RuE-8R-OqN"/>
- <constraint firstItem="a2s-NZ-mzX" firstAttribute="top" secondItem="sBO-aa-fcd" secondAttribute="top" id="SgF-nZ-qEh">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- <constraint firstItem="a2s-NZ-mzX" firstAttribute="leading" secondItem="sBO-aa-fcd" secondAttribute="leading" constant="-2" id="VGd-a6-8kP">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="a2s-NZ-mzX" secondAttribute="trailing" id="jgI-ea-HaX"/>
- <constraint firstAttribute="trailing" secondItem="grb-gm-MwJ" secondAttribute="trailing" id="ycf-ep-Tew"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Jnx-YN-9Zl"/>
- <exclude reference="Bbc-A0-l0r"/>
- <exclude reference="RuE-8R-OqN"/>
- <exclude reference="ycf-ep-Tew"/>
- <exclude reference="2dZ-oP-nPT"/>
- <exclude reference="SgF-nZ-qEh"/>
- <exclude reference="VGd-a6-8kP"/>
- <exclude reference="jgI-ea-HaX"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Jnx-YN-9Zl"/>
- <include reference="Bbc-A0-l0r"/>
- <include reference="RuE-8R-OqN"/>
- <include reference="ycf-ep-Tew"/>
- <exclude reference="2dZ-oP-nPT"/>
- <include reference="SgF-nZ-qEh"/>
- <include reference="VGd-a6-8kP"/>
- <include reference="jgI-ea-HaX"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="Br6-Zd-n3x" secondAttribute="trailing" id="328-iT-IKt"/>
- <constraint firstAttribute="trailing" secondItem="biT-if-f93" secondAttribute="trailing" id="7x9-Ag-6CP"/>
- <constraint firstAttribute="bottom" secondItem="sBO-aa-fcd" secondAttribute="bottom" id="DYm-Du-IJh">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="biT-if-f93" firstAttribute="leading" secondItem="Scn-lG-xad" secondAttribute="leading" id="Hd9-GR-Mes"/>
- <constraint firstItem="Br6-Zd-n3x" firstAttribute="leading" secondItem="Scn-lG-xad" secondAttribute="leading" id="Juq-oA-SP1"/>
- <constraint firstItem="sBO-aa-fcd" firstAttribute="top" secondItem="Br6-Zd-n3x" secondAttribute="bottom" id="SBI-B0-EP7"/>
- <constraint firstItem="sBO-aa-fcd" firstAttribute="leading" secondItem="Scn-lG-xad" secondAttribute="leading" id="agd-c5-VSa"/>
- <constraint firstItem="biT-if-f93" firstAttribute="top" secondItem="Scn-lG-xad" secondAttribute="top" id="eyh-hA-I5d"/>
- <constraint firstItem="Br6-Zd-n3x" firstAttribute="top" secondItem="biT-if-f93" secondAttribute="bottom" id="hRO-pS-Azo"/>
- <constraint firstAttribute="trailing" secondItem="sBO-aa-fcd" secondAttribute="trailing" id="wBn-s6-BSE"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="biT-if-f93"/>
- <exclude reference="sBO-aa-fcd"/>
- </mask>
- <mask key="constraints">
- <exclude reference="DYm-Du-IJh"/>
- <exclude reference="SBI-B0-EP7"/>
- <exclude reference="agd-c5-VSa"/>
- <exclude reference="wBn-s6-BSE"/>
- <exclude reference="7x9-Ag-6CP"/>
- <exclude reference="Hd9-GR-Mes"/>
- <exclude reference="eyh-hA-I5d"/>
- <exclude reference="hRO-pS-Azo"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="biT-if-f93"/>
- <include reference="sBO-aa-fcd"/>
- </mask>
- <mask key="constraints">
- <include reference="DYm-Du-IJh"/>
- <include reference="SBI-B0-EP7"/>
- <include reference="agd-c5-VSa"/>
- <include reference="wBn-s6-BSE"/>
- <include reference="7x9-Ag-6CP"/>
- <include reference="Hd9-GR-Mes"/>
- <include reference="eyh-hA-I5d"/>
- <include reference="hRO-pS-Azo"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="Scn-lG-xad" firstAttribute="top" secondItem="SNZ-dq-GFi" secondAttribute="bottom" id="8ga-pg-p5d">
- <variation key="heightClass=regular-widthClass=compact" constant="-20"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="Scn-lG-xad" secondAttribute="trailing" id="8vT-li-3IM"/>
- <constraint firstItem="Scn-lG-xad" firstAttribute="leading" secondItem="yXR-bI-I8z" secondAttribute="leading" id="Ior-yi-r1D"/>
- <constraint firstItem="vuI-rH-sFO" firstAttribute="top" secondItem="Scn-lG-xad" secondAttribute="bottom" id="oFz-Oi-ytW"/>
- </constraints>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="btnClose" destination="a2s-NZ-mzX" id="ToD-VD-Gwv"/>
- <outlet property="tableView" destination="Br6-Zd-n3x" id="6aF-yL-tUT"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="ehY-71-XZn" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1926" y="871.5"/>
- </scene>
- <!--Invitation Answer View Controller-->
- <scene sceneID="1nL-qQ-kHl">
- <objects>
- <viewController storyboardIdentifier="InvitationAnswerViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="9f7-i7-Gqo" customClass="InvitationAnswerViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="zQT-Qj-ju1"/>
- <viewControllerLayoutGuide type="bottom" id="4An-OE-XJW"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="gXQ-CR-MvU" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2Dp-Co-wB5" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="FoS-zf-gpj">
- <rect key="frame" x="0.0" y="182" width="320" height="60"/>
- <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="xTi-Pq-wHg" customClass="CustomLabel">
- <rect key="frame" x="20" y="20" width="280" height="20"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="lfZ-HG-Ebz">
- <variation key="heightClass=regular-widthClass=compact" constant="240"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="0.96470588239999999" green="0.27058823529999998" blue="0.30196078430000001" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="lfZ-HG-Ebz"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="lfZ-HG-Ebz"/>
- </mask>
- </variation>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="6OM-gh-rpm" customClass="CustomImageView">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="100" id="2K3-5N-KiC"/>
- <constraint firstAttribute="height" constant="100" id="v5e-O3-c6L"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="2K3-5N-KiC"/>
- <exclude reference="v5e-O3-c6L"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="2K3-5N-KiC"/>
- <include reference="v5e-O3-c6L"/>
- </mask>
- </variation>
- </imageView>
- <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="HWa-MT-I8B" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="Y11-WK-LBu">
- <variation key="heightClass=regular-widthClass=compact" constant="240"/>
- </constraint>
- <constraint firstAttribute="height" constant="20" id="ekv-Vl-TMf"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Y11-WK-LBu"/>
- <exclude reference="ekv-Vl-TMf"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Y11-WK-LBu"/>
- <include reference="ekv-Vl-TMf"/>
- </mask>
- </variation>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="eyU-Aw-ymc" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <color key="backgroundColor" red="0.96470588239999999" green="0.27058823529999998" blue="0.30196078430000001" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="width" constant="100" id="1bO-P4-8ol"/>
- <constraint firstAttribute="height" constant="30" id="9Uj-b3-jHh"/>
- </constraints>
- <state key="normal" title="정답날짜 입력">
- <color key="titleColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="1bO-P4-8ol"/>
- <exclude reference="9Uj-b3-jHh"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="1bO-P4-8ol"/>
- <include reference="9Uj-b3-jHh"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnAnswerTouched:" destination="9f7-i7-Gqo" eventType="touchUpInside" id="s6A-eE-P0X"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="xTi-Pq-wHg" firstAttribute="centerX" secondItem="FoS-zf-gpj" secondAttribute="centerX" id="AvP-iT-XjQ"/>
- <constraint firstItem="xTi-Pq-wHg" firstAttribute="top" secondItem="FoS-zf-gpj" secondAttribute="top" constant="50" id="Cf6-Of-roQ"/>
- <constraint firstItem="eyU-Aw-ymc" firstAttribute="centerX" secondItem="HWa-MT-I8B" secondAttribute="centerX" id="INj-JG-D29"/>
- <constraint firstItem="6OM-gh-rpm" firstAttribute="centerX" secondItem="xTi-Pq-wHg" secondAttribute="centerX" id="LiA-Iy-blX"/>
- <constraint firstItem="6OM-gh-rpm" firstAttribute="top" secondItem="xTi-Pq-wHg" secondAttribute="bottom" constant="59" id="Lv6-Bk-GBH"/>
- <constraint firstItem="eyU-Aw-ymc" firstAttribute="top" secondItem="HWa-MT-I8B" secondAttribute="bottom" constant="20" id="Udc-ss-i3O"/>
- <constraint firstItem="HWa-MT-I8B" firstAttribute="top" secondItem="6OM-gh-rpm" secondAttribute="bottom" constant="20" id="XPA-Im-Qdt"/>
- <constraint firstItem="HWa-MT-I8B" firstAttribute="centerX" secondItem="6OM-gh-rpm" secondAttribute="centerX" id="YDA-cy-FJc"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="6OM-gh-rpm"/>
- <exclude reference="HWa-MT-I8B"/>
- <exclude reference="eyU-Aw-ymc"/>
- </mask>
- <mask key="constraints">
- <exclude reference="INj-JG-D29"/>
- <exclude reference="Udc-ss-i3O"/>
- <exclude reference="XPA-Im-Qdt"/>
- <exclude reference="YDA-cy-FJc"/>
- <exclude reference="LiA-Iy-blX"/>
- <exclude reference="Lv6-Bk-GBH"/>
- <exclude reference="AvP-iT-XjQ"/>
- <exclude reference="Cf6-Of-roQ"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="6OM-gh-rpm"/>
- <include reference="HWa-MT-I8B"/>
- <include reference="eyU-Aw-ymc"/>
- </mask>
- <mask key="constraints">
- <include reference="INj-JG-D29"/>
- <include reference="Udc-ss-i3O"/>
- <include reference="XPA-Im-Qdt"/>
- <include reference="YDA-cy-FJc"/>
- <include reference="LiA-Iy-blX"/>
- <include reference="Lv6-Bk-GBH"/>
- <include reference="AvP-iT-XjQ"/>
- <include reference="Cf6-Of-roQ"/>
- </mask>
- </variation>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ook-wv-0a4" 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="1nX-WR-B3Y" customClass="CustomButton">
- <rect key="frame" x="28" y="25" width="160" height="70"/>
- <animations/>
- <color key="backgroundColor" red="0.96470588239999999" green="0.27058823529999998" blue="0.30196078430000001" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" id="h42-Nv-L12"/>
- <constraint firstAttribute="height" constant="30" id="iRB-aL-8td">
- <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="1" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="h42-Nv-L12"/>
- <exclude reference="iRB-aL-8td"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="h42-Nv-L12"/>
- <include reference="iRB-aL-8td"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCloseTouched:" destination="9f7-i7-Gqo" eventType="touchUpInside" id="xsY-AT-e1q"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="abQ-Jn-6d0" 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="bs6-OC-Pjm"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="bs6-OC-Pjm"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="bs6-OC-Pjm"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="1nX-WR-B3Y" secondAttribute="trailing" constant="202" id="3cx-ze-rN0"/>
- <constraint firstAttribute="height" constant="70" id="7fy-JU-SJs"/>
- <constraint firstItem="abQ-Jn-6d0" firstAttribute="leading" secondItem="Ook-wv-0a4" secondAttribute="leading" id="AeC-ku-tmM"/>
- <constraint firstAttribute="trailing" secondItem="1nX-WR-B3Y" secondAttribute="trailing" id="Onv-vB-I74"/>
- <constraint firstAttribute="trailing" secondItem="abQ-Jn-6d0" secondAttribute="trailing" id="UOT-mJ-C8q"/>
- <constraint firstItem="abQ-Jn-6d0" firstAttribute="top" secondItem="Ook-wv-0a4" secondAttribute="top" id="aWa-nc-Ob3"/>
- <constraint firstItem="1nX-WR-B3Y" firstAttribute="leading" secondItem="Ook-wv-0a4" secondAttribute="leading" constant="-2" id="h9h-M9-K92">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="1nX-WR-B3Y" firstAttribute="top" secondItem="Ook-wv-0a4" secondAttribute="top" id="x0U-zO-TSO">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="7fy-JU-SJs"/>
- <exclude reference="AeC-ku-tmM"/>
- <exclude reference="UOT-mJ-C8q"/>
- <exclude reference="aWa-nc-Ob3"/>
- <exclude reference="3cx-ze-rN0"/>
- <exclude reference="Onv-vB-I74"/>
- <exclude reference="h9h-M9-K92"/>
- <exclude reference="x0U-zO-TSO"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="7fy-JU-SJs"/>
- <include reference="AeC-ku-tmM"/>
- <include reference="UOT-mJ-C8q"/>
- <include reference="aWa-nc-Ob3"/>
- <exclude reference="3cx-ze-rN0"/>
- <include reference="Onv-vB-I74"/>
- <include reference="h9h-M9-K92"/>
- <include reference="x0U-zO-TSO"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="Ook-wv-0a4" secondAttribute="bottom" id="2eD-KV-ztk">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="FoS-zf-gpj" firstAttribute="top" secondItem="2Dp-Co-wB5" secondAttribute="top" id="7JR-6M-xqA"/>
- <constraint firstItem="FoS-zf-gpj" firstAttribute="leading" secondItem="2Dp-Co-wB5" secondAttribute="leading" id="AdP-jr-wcf"/>
- <constraint firstAttribute="trailing" secondItem="Ook-wv-0a4" secondAttribute="trailing" id="FHS-5W-CJU"/>
- <constraint firstAttribute="trailing" secondItem="FoS-zf-gpj" secondAttribute="trailing" id="Wqh-CQ-IxE"/>
- <constraint firstItem="Ook-wv-0a4" firstAttribute="top" secondItem="FoS-zf-gpj" secondAttribute="bottom" id="gA5-fg-KQI"/>
- <constraint firstItem="Ook-wv-0a4" firstAttribute="leading" secondItem="2Dp-Co-wB5" secondAttribute="leading" id="nn1-uI-7H0"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Ook-wv-0a4"/>
- </mask>
- <mask key="constraints">
- <exclude reference="2eD-KV-ztk"/>
- <exclude reference="FHS-5W-CJU"/>
- <exclude reference="gA5-fg-KQI"/>
- <exclude reference="nn1-uI-7H0"/>
- <exclude reference="7JR-6M-xqA"/>
- <exclude reference="AdP-jr-wcf"/>
- <exclude reference="Wqh-CQ-IxE"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Ook-wv-0a4"/>
- </mask>
- <mask key="constraints">
- <include reference="2eD-KV-ztk"/>
- <include reference="FHS-5W-CJU"/>
- <include reference="gA5-fg-KQI"/>
- <include reference="nn1-uI-7H0"/>
- <include reference="7JR-6M-xqA"/>
- <include reference="AdP-jr-wcf"/>
- <include reference="Wqh-CQ-IxE"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="2Dp-Co-wB5" firstAttribute="leading" secondItem="gXQ-CR-MvU" secondAttribute="leading" id="7E1-5D-5ky"/>
- <constraint firstAttribute="trailing" secondItem="2Dp-Co-wB5" secondAttribute="trailing" id="CBp-4B-uZm"/>
- <constraint firstItem="4An-OE-XJW" firstAttribute="top" secondItem="2Dp-Co-wB5" secondAttribute="bottom" id="jr7-CR-cac"/>
- <constraint firstItem="2Dp-Co-wB5" firstAttribute="top" secondItem="gXQ-CR-MvU" secondAttribute="top" id="pZq-qK-R4I"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="2Dp-Co-wB5"/>
- </mask>
- <mask key="constraints">
- <exclude reference="jr7-CR-cac"/>
- <exclude reference="7E1-5D-5ky"/>
- <exclude reference="CBp-4B-uZm"/>
- <exclude reference="pZq-qK-R4I"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="2Dp-Co-wB5"/>
- </mask>
- <mask key="constraints">
- <include reference="jr7-CR-cac"/>
- <include reference="7E1-5D-5ky"/>
- <include reference="CBp-4B-uZm"/>
- <include reference="pZq-qK-R4I"/>
- </mask>
- </variation>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="imgvFromProfile" destination="6OM-gh-rpm" id="Hhj-D4-VC1"/>
- <outlet property="lblQuiz" destination="HWa-MT-I8B" id="kEL-9H-s4d"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="yJB-86-nBf" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2485.5" y="385.5"/>
- </scene>
- <!--Home Hub View Controller-->
- <scene sceneID="65o-2H-nC6">
- <objects>
- <viewController storyboardIdentifier="HomeHubViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="fPb-aa-Esq" customClass="HomeHubViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="GM3-Ym-ene"/>
- <viewControllerLayoutGuide type="bottom" id="5KK-VG-ZuR"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="McF-Be-yE8" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="imi-ou-EL3" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RrJ-IO-ZkL" 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="YMA-Z3-uHr" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="MCt-7F-lys">
- <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="MCt-7F-lys"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="MCt-7F-lys"/>
- </mask>
- </variation>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="SFO-h7-m9q" 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="K7u-Wf-ous"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="K7u-Wf-ous"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="K7u-Wf-ous"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="80" id="CsI-ib-JU0"/>
- <constraint firstItem="SFO-h7-m9q" firstAttribute="leading" secondItem="RrJ-IO-ZkL" secondAttribute="leading" id="IB3-gZ-ob9"/>
- <constraint firstAttribute="trailing" secondItem="SFO-h7-m9q" secondAttribute="trailing" id="OMA-2m-0Ac"/>
- <constraint firstItem="YMA-Z3-uHr" firstAttribute="top" secondItem="RrJ-IO-ZkL" secondAttribute="top" constant="43" id="Sdd-3e-fIk">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstItem="YMA-Z3-uHr" firstAttribute="leading" secondItem="RrJ-IO-ZkL" secondAttribute="leading" constant="10" id="WPM-VB-Z8D"/>
- <constraint firstAttribute="bottom" secondItem="SFO-h7-m9q" secondAttribute="bottom" id="eq4-UJ-oRy"/>
- <constraint firstAttribute="bottom" secondItem="YMA-Z3-uHr" secondAttribute="bottom" constant="22" id="sjX-Z5-6oA">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="YMA-Z3-uHr"/>
- <exclude reference="SFO-h7-m9q"/>
- </mask>
- <mask key="constraints">
- <exclude reference="CsI-ib-JU0"/>
- <exclude reference="IB3-gZ-ob9"/>
- <exclude reference="OMA-2m-0Ac"/>
- <exclude reference="eq4-UJ-oRy"/>
- <exclude reference="Sdd-3e-fIk"/>
- <exclude reference="WPM-VB-Z8D"/>
- <exclude reference="sjX-Z5-6oA"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="YMA-Z3-uHr"/>
- <include reference="SFO-h7-m9q"/>
- </mask>
- <mask key="constraints">
- <include reference="CsI-ib-JU0"/>
- <include reference="IB3-gZ-ob9"/>
- <include reference="OMA-2m-0Ac"/>
- <include reference="eq4-UJ-oRy"/>
- <include reference="Sdd-3e-fIk"/>
- <include reference="WPM-VB-Z8D"/>
- <include reference="sjX-Z5-6oA"/>
- </mask>
- </variation>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="150" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="1lg-Ya-oAZ" customClass="CustomTableView">
- <rect key="frame" x="0.0" y="0.0" width="320" height="488"/>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HubCellIdentifier" rowHeight="110" id="4HR-Ap-zi5" customClass="HomeHubTableViewCell">
- <rect key="frame" x="0.0" y="22" width="320" height="110"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4HR-Ap-zi5" id="FYL-I3-Ct3">
- <rect key="frame" x="0.0" y="0.0" width="320" height="109"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="DqJ-gM-iax" userLabel="View - Cell">
- <rect key="frame" x="-5" y="0.0" width="315" height="140"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" verticalCompressionResistancePriority="749" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="15" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4la-8n-Tgq" customClass="CustomLabel">
- <rect key="frame" x="45" y="100" width="250" height="20"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="20" text="연결상태" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9h4-U0-Xx1" customClass="CustomLabel">
- <rect key="frame" x="45" y="20" width="250" height="20"/>
- <animations/>
- <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"/>
- </label>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="4la-8n-Tgq" firstAttribute="top" secondItem="9h4-U0-Xx1" secondAttribute="bottom" constant="8" id="Aeg-cH-ywB"/>
- <constraint firstItem="9h4-U0-Xx1" firstAttribute="top" secondItem="DqJ-gM-iax" secondAttribute="top" constant="20" id="HFF-OP-yS0">
- <variation key="heightClass=regular-widthClass=compact" constant="25"/>
- </constraint>
- <constraint firstAttribute="bottom" secondItem="4la-8n-Tgq" secondAttribute="bottom" constant="25" id="L3O-1q-rcK">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstItem="9h4-U0-Xx1" firstAttribute="leading" secondItem="DqJ-gM-iax" secondAttribute="leading" constant="30" id="m08-TV-53Z"/>
- <constraint firstItem="4la-8n-Tgq" firstAttribute="leading" secondItem="DqJ-gM-iax" secondAttribute="leading" constant="30" id="uVZ-xg-yCV"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="HFF-OP-yS0"/>
- <exclude reference="m08-TV-53Z"/>
- <exclude reference="Aeg-cH-ywB"/>
- <exclude reference="L3O-1q-rcK"/>
- <exclude reference="uVZ-xg-yCV"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="HFF-OP-yS0"/>
- <include reference="m08-TV-53Z"/>
- <include reference="Aeg-cH-ywB"/>
- <include reference="L3O-1q-rcK"/>
- <include reference="uVZ-xg-yCV"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="DqJ-gM-iax" firstAttribute="leading" secondItem="FYL-I3-Ct3" secondAttribute="leading" id="8fd-YK-Nhq"/>
- <constraint firstItem="DqJ-gM-iax" firstAttribute="top" secondItem="FYL-I3-Ct3" secondAttribute="top" id="UXs-Kh-f8G"/>
- <constraint firstAttribute="trailing" secondItem="DqJ-gM-iax" secondAttribute="trailing" id="VxT-HL-kCu"/>
- <constraint firstAttribute="bottom" secondItem="DqJ-gM-iax" secondAttribute="bottom" constant="14" id="cTk-VZ-YTr"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="8fd-YK-Nhq"/>
- <exclude reference="UXs-Kh-f8G"/>
- <exclude reference="VxT-HL-kCu"/>
- <exclude reference="cTk-VZ-YTr"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="8fd-YK-Nhq"/>
- <include reference="UXs-Kh-f8G"/>
- <include reference="VxT-HL-kCu"/>
- <include reference="cTk-VZ-YTr"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <connections>
- <outlet property="lblStatus" destination="4la-8n-Tgq" id="MbK-1I-GT3"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="RegistCellIdentifier" rowHeight="110" id="xsB-wP-ggW" customClass="HomeHubRegistTableViewCell">
- <rect key="frame" x="0.0" y="132" width="320" height="110"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xsB-wP-ggW" id="qqk-dn-Ftx">
- <rect key="frame" x="0.0" y="0.0" width="320" height="109"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="i69-BM-Qfs" userLabel="View - Cell">
- <rect key="frame" x="-5" y="0.0" width="315" height="140"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" verticalCompressionResistancePriority="749" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="15" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="i8u-vg-kcI" customClass="CustomLabel">
- <rect key="frame" x="45" y="100" width="250" height="20"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="20" text="등록일시" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7vf-Li-wHI" customClass="CustomLabel">
- <rect key="frame" x="45" y="20" width="250" height="20"/>
- <animations/>
- <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"/>
- </label>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="7vf-Li-wHI" firstAttribute="top" secondItem="i69-BM-Qfs" secondAttribute="top" constant="20" id="9dx-QF-KqE">
- <variation key="heightClass=regular-widthClass=compact" constant="25"/>
- </constraint>
- <constraint firstItem="7vf-Li-wHI" firstAttribute="leading" secondItem="i69-BM-Qfs" secondAttribute="leading" constant="30" id="Ftr-Kf-wCs"/>
- <constraint firstAttribute="trailing" secondItem="7vf-Li-wHI" secondAttribute="trailing" constant="80" id="P6F-gN-4bB"/>
- <constraint firstAttribute="trailing" secondItem="i8u-vg-kcI" secondAttribute="trailing" constant="80" id="aGW-ED-p1e"/>
- <constraint firstAttribute="bottom" secondItem="i8u-vg-kcI" secondAttribute="bottom" constant="25" id="cRR-yp-IXj">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstItem="i8u-vg-kcI" firstAttribute="leading" secondItem="i69-BM-Qfs" secondAttribute="leading" constant="30" id="kih-rX-vat"/>
- <constraint firstItem="i8u-vg-kcI" firstAttribute="top" secondItem="7vf-Li-wHI" secondAttribute="bottom" constant="8" id="w6H-JN-f7P"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="9dx-QF-KqE"/>
- <exclude reference="Ftr-Kf-wCs"/>
- <exclude reference="P6F-gN-4bB"/>
- <exclude reference="aGW-ED-p1e"/>
- <exclude reference="cRR-yp-IXj"/>
- <exclude reference="kih-rX-vat"/>
- <exclude reference="w6H-JN-f7P"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="9dx-QF-KqE"/>
- <include reference="Ftr-Kf-wCs"/>
- <include reference="P6F-gN-4bB"/>
- <include reference="aGW-ED-p1e"/>
- <include reference="cRR-yp-IXj"/>
- <include reference="kih-rX-vat"/>
- <include reference="w6H-JN-f7P"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="i69-BM-Qfs" secondAttribute="trailing" id="BjT-LE-33e"/>
- <constraint firstItem="i69-BM-Qfs" firstAttribute="leading" secondItem="qqk-dn-Ftx" secondAttribute="leading" id="ME4-au-uVC"/>
- <constraint firstAttribute="bottom" secondItem="i69-BM-Qfs" secondAttribute="bottom" constant="14" id="RGH-gH-OYs"/>
- <constraint firstItem="i69-BM-Qfs" firstAttribute="top" secondItem="qqk-dn-Ftx" secondAttribute="top" id="wCv-S5-n8a"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="BjT-LE-33e"/>
- <exclude reference="ME4-au-uVC"/>
- <exclude reference="RGH-gH-OYs"/>
- <exclude reference="wCv-S5-n8a"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="BjT-LE-33e"/>
- <include reference="ME4-au-uVC"/>
- <include reference="RGH-gH-OYs"/>
- <include reference="wCv-S5-n8a"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <connections>
- <outlet property="lblDate" destination="i8u-vg-kcI" id="nyQ-Cv-HUu"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="SecureCellIdentifier" rowHeight="195" id="MmC-pb-v0h" customClass="HomeHubSecureTableViewCell">
- <rect key="frame" x="0.0" y="242" width="320" height="195"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="MmC-pb-v0h" id="8E2-Ln-NRw">
- <rect key="frame" x="0.0" y="0.0" width="320" height="194"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="pRd-EU-brb" userLabel="View - Cell">
- <rect key="frame" x="-5" y="0.0" width="315" height="140"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="JLd-fv-WXA" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="90" id="C9v-O0-GP1"/>
- <constraint firstAttribute="height" constant="30" id="e8n-Ny-FR0">
- <variation key="heightClass=regular-widthClass=compact" constant="35"/>
- </constraint>
- </constraints>
- <state key="normal" title="보안키 변경"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="C9v-O0-GP1"/>
- <exclude reference="e8n-Ny-FR0"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="C9v-O0-GP1"/>
- <include reference="e8n-Ny-FR0"/>
- </mask>
- </variation>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" verticalCompressionResistancePriority="749" placeholderIntrinsicWidth="275" placeholderIntrinsicHeight="85" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8qK-Ip-HL8" customClass="CustomLabel">
- <rect key="frame" x="45" y="100" width="250" height="20"/>
- <animations/>
- <string key="text">아래의 경우에 보안키가 필요합니다. - 홈허브 에플리케이션을 다시 설치할 때 - 홈허브를 다른 사람에게 양도할 때</string>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="20" text="홈허브 보안키" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="MCr-KB-LQU" customClass="CustomLabel">
- <rect key="frame" x="45" y="20" width="250" height="20"/>
- <animations/>
- <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"/>
- </label>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="JLd-fv-WXA" secondAttribute="trailing" constant="15" id="ChZ-8p-8gj"/>
- <constraint firstAttribute="trailing" secondItem="8qK-Ip-HL8" secondAttribute="trailing" constant="15" id="Egm-1a-uoR"/>
- <constraint firstItem="JLd-fv-WXA" firstAttribute="top" secondItem="pRd-EU-brb" secondAttribute="top" constant="21" id="HrS-ep-gf8">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="8qK-Ip-HL8" firstAttribute="top" secondItem="JLd-fv-WXA" secondAttribute="bottom" constant="20" id="JgA-gV-rzQ"/>
- <constraint firstItem="MCr-KB-LQU" firstAttribute="top" secondItem="pRd-EU-brb" secondAttribute="top" constant="20" id="fJp-1U-Bf9">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstItem="JLd-fv-WXA" firstAttribute="leading" secondItem="MCr-KB-LQU" secondAttribute="trailing" constant="19" id="hLc-wQ-AdO">
- <variation key="heightClass=regular-widthClass=compact" constant="5"/>
- </constraint>
- <constraint firstItem="MCr-KB-LQU" firstAttribute="leading" secondItem="pRd-EU-brb" secondAttribute="leading" constant="30" id="mQI-gk-pff"/>
- <constraint firstItem="8qK-Ip-HL8" firstAttribute="leading" secondItem="pRd-EU-brb" secondAttribute="leading" constant="30" id="sfu-XM-M4N"/>
- <constraint firstAttribute="bottom" secondItem="8qK-Ip-HL8" secondAttribute="bottom" constant="20" id="wb8-Hq-Pyu">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="JLd-fv-WXA"/>
- <exclude reference="8qK-Ip-HL8"/>
- </mask>
- <mask key="constraints">
- <exclude reference="ChZ-8p-8gj"/>
- <exclude reference="HrS-ep-gf8"/>
- <exclude reference="hLc-wQ-AdO"/>
- <exclude reference="Egm-1a-uoR"/>
- <exclude reference="JgA-gV-rzQ"/>
- <exclude reference="sfu-XM-M4N"/>
- <exclude reference="wb8-Hq-Pyu"/>
- <exclude reference="fJp-1U-Bf9"/>
- <exclude reference="mQI-gk-pff"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="JLd-fv-WXA"/>
- <include reference="8qK-Ip-HL8"/>
- </mask>
- <mask key="constraints">
- <include reference="ChZ-8p-8gj"/>
- <include reference="HrS-ep-gf8"/>
- <include reference="hLc-wQ-AdO"/>
- <include reference="Egm-1a-uoR"/>
- <include reference="JgA-gV-rzQ"/>
- <include reference="sfu-XM-M4N"/>
- <include reference="wb8-Hq-Pyu"/>
- <include reference="fJp-1U-Bf9"/>
- <include reference="mQI-gk-pff"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="pRd-EU-brb" secondAttribute="trailing" id="7fx-ui-FfQ"/>
- <constraint firstAttribute="bottom" secondItem="pRd-EU-brb" secondAttribute="bottom" constant="14" id="I6o-9l-Nns">
- <variation key="heightClass=regular-widthClass=compact" constant="14"/>
- </constraint>
- <constraint firstItem="pRd-EU-brb" firstAttribute="leading" secondItem="8E2-Ln-NRw" secondAttribute="leading" id="Njv-na-xkg"/>
- <constraint firstItem="pRd-EU-brb" firstAttribute="top" secondItem="8E2-Ln-NRw" secondAttribute="top" id="TsC-Sh-G6k"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="7fx-ui-FfQ"/>
- <exclude reference="I6o-9l-Nns"/>
- <exclude reference="Njv-na-xkg"/>
- <exclude reference="TsC-Sh-G6k"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="7fx-ui-FfQ"/>
- <include reference="I6o-9l-Nns"/>
- <include reference="Njv-na-xkg"/>
- <include reference="TsC-Sh-G6k"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <connections>
- <outlet property="btnSecure" destination="JLd-fv-WXA" id="h2g-qt-pfy"/>
- <outlet property="lblCaution" destination="8qK-Ip-HL8" id="r1D-s0-Gly"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="InfoCellIdentifier" rowHeight="150" id="6X4-qV-UnG" customClass="HomeHubInfoTableViewCell">
- <rect key="frame" x="0.0" y="437" width="320" height="150"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6X4-qV-UnG" id="FBV-0P-d1z">
- <rect key="frame" x="0.0" y="0.0" width="320" height="149"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="hdO-mn-NUG" userLabel="View - Cell">
- <rect key="frame" x="-5" y="0.0" width="315" height="140"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="290" placeholderIntrinsicHeight="55" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="EBR-NQ-2Hp" customClass="CustomLabel">
- <rect key="frame" x="45" y="20" width="250" height="20"/>
- <animations/>
- <string key="text">● 홈허브 양도는 신중하게 결정하세요 양도 후에는 현재 홈을 더 이상 사용할 수 없게 되며 홈이 삭제됩니다</string>
- <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>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="EBR-NQ-2Hp" firstAttribute="leading" secondItem="hdO-mn-NUG" secondAttribute="leading" constant="30" id="Bi4-fB-ncm">
- <variation key="heightClass=regular-widthClass=compact" constant="15"/>
- </constraint>
- <constraint firstItem="EBR-NQ-2Hp" firstAttribute="top" secondItem="hdO-mn-NUG" secondAttribute="top" constant="20" id="N4L-GQ-HFP">
- <variation key="heightClass=regular-widthClass=compact" constant="40"/>
- </constraint>
- <constraint firstItem="EBR-NQ-2Hp" firstAttribute="leading" secondItem="hdO-mn-NUG" secondAttribute="leading" constant="15" id="OZO-n9-oNf"/>
- <constraint firstAttribute="trailing" secondItem="EBR-NQ-2Hp" secondAttribute="trailing" constant="15" id="cfv-xz-Imz"/>
- <constraint firstAttribute="bottom" secondItem="EBR-NQ-2Hp" secondAttribute="bottom" constant="40" id="hNk-dS-lHo"/>
- <constraint firstAttribute="trailing" secondItem="EBR-NQ-2Hp" secondAttribute="trailing" constant="80" id="kk9-IY-Qwy">
- <variation key="heightClass=regular-widthClass=compact" constant="15"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Bi4-fB-ncm"/>
- <exclude reference="N4L-GQ-HFP"/>
- <exclude reference="OZO-n9-oNf"/>
- <exclude reference="cfv-xz-Imz"/>
- <exclude reference="hNk-dS-lHo"/>
- <exclude reference="kk9-IY-Qwy"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <exclude reference="Bi4-fB-ncm"/>
- <include reference="N4L-GQ-HFP"/>
- <include reference="OZO-n9-oNf"/>
- <include reference="cfv-xz-Imz"/>
- <include reference="hNk-dS-lHo"/>
- <exclude reference="kk9-IY-Qwy"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="hdO-mn-NUG" firstAttribute="top" secondItem="FBV-0P-d1z" secondAttribute="top" id="FMQ-gy-L2Q"/>
- <constraint firstItem="hdO-mn-NUG" firstAttribute="leading" secondItem="FBV-0P-d1z" secondAttribute="leading" id="Kk9-La-nPO"/>
- <constraint firstAttribute="bottom" secondItem="hdO-mn-NUG" secondAttribute="bottom" constant="14" id="PYB-Uu-EDY"/>
- <constraint firstAttribute="trailing" secondItem="hdO-mn-NUG" secondAttribute="trailing" id="opG-Ph-bhR"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="FMQ-gy-L2Q"/>
- <exclude reference="Kk9-La-nPO"/>
- <exclude reference="PYB-Uu-EDY"/>
- <exclude reference="opG-Ph-bhR"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="FMQ-gy-L2Q"/>
- <include reference="Kk9-La-nPO"/>
- <include reference="PYB-Uu-EDY"/>
- <include reference="opG-Ph-bhR"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <connections>
- <outlet property="lblInfo" destination="EBR-NQ-2Hp" id="ZA0-Ma-rTl"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2Ue-0R-sNj" userLabel="View - actionTab">
- <rect key="frame" x="-20" y="-20" width="360" height="115"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ngW-QP-AeO" 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="tcl-qw-nmc"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="tcl-qw-nmc"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="tcl-qw-nmc"/>
- </mask>
- </variation>
- </view>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="wPw-A9-jMC" 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="ayb-2a-50c"/>
- <constraint firstAttribute="height" constant="30" id="dSg-xm-ahy">
- <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="ayb-2a-50c"/>
- <exclude reference="dSg-xm-ahy"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="ayb-2a-50c"/>
- <include reference="dSg-xm-ahy"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCloseTouched:" destination="fPb-aa-Esq" eventType="touchUpInside" id="KDy-ZF-bPJ"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="height" constant="70" id="FMC-ph-hoH"/>
- <constraint firstItem="wPw-A9-jMC" firstAttribute="top" secondItem="2Ue-0R-sNj" secondAttribute="top" id="WYm-AU-0dQ">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- <constraint firstItem="ngW-QP-AeO" firstAttribute="top" secondItem="2Ue-0R-sNj" secondAttribute="top" id="eh2-cA-MiK"/>
- <constraint firstAttribute="trailing" secondItem="wPw-A9-jMC" secondAttribute="trailing" constant="202" id="gCx-uB-WcP"/>
- <constraint firstItem="ngW-QP-AeO" firstAttribute="leading" secondItem="2Ue-0R-sNj" secondAttribute="leading" id="kCu-gh-FXU"/>
- <constraint firstItem="wPw-A9-jMC" firstAttribute="leading" secondItem="2Ue-0R-sNj" secondAttribute="leading" constant="-2" id="sON-KQ-eGg">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="wPw-A9-jMC" secondAttribute="trailing" id="tCk-fh-rda"/>
- <constraint firstAttribute="trailing" secondItem="ngW-QP-AeO" secondAttribute="trailing" id="xSI-fb-gAs"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="FMC-ph-hoH"/>
- <exclude reference="eh2-cA-MiK"/>
- <exclude reference="kCu-gh-FXU"/>
- <exclude reference="xSI-fb-gAs"/>
- <exclude reference="WYm-AU-0dQ"/>
- <exclude reference="gCx-uB-WcP"/>
- <exclude reference="sON-KQ-eGg"/>
- <exclude reference="tCk-fh-rda"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="FMC-ph-hoH"/>
- <include reference="eh2-cA-MiK"/>
- <include reference="kCu-gh-FXU"/>
- <include reference="xSI-fb-gAs"/>
- <include reference="WYm-AU-0dQ"/>
- <exclude reference="gCx-uB-WcP"/>
- <include reference="sON-KQ-eGg"/>
- <include reference="tCk-fh-rda"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="2Ue-0R-sNj" secondAttribute="bottom" id="9gW-6y-DsW">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="RrJ-IO-ZkL" secondAttribute="trailing" id="CBc-Tz-0MG"/>
- <constraint firstItem="1lg-Ya-oAZ" firstAttribute="top" secondItem="RrJ-IO-ZkL" secondAttribute="bottom" id="Hns-Ez-VQf"/>
- <constraint firstItem="RrJ-IO-ZkL" firstAttribute="leading" secondItem="imi-ou-EL3" secondAttribute="leading" id="Yx2-Oh-D3f"/>
- <constraint firstItem="RrJ-IO-ZkL" firstAttribute="top" secondItem="imi-ou-EL3" secondAttribute="top" id="aKs-Zl-5sf"/>
- <constraint firstItem="1lg-Ya-oAZ" firstAttribute="leading" secondItem="imi-ou-EL3" secondAttribute="leading" id="bao-hu-KHX"/>
- <constraint firstItem="2Ue-0R-sNj" firstAttribute="top" secondItem="1lg-Ya-oAZ" secondAttribute="bottom" id="fpr-j1-R7a"/>
- <constraint firstAttribute="trailing" secondItem="2Ue-0R-sNj" secondAttribute="trailing" id="l89-es-8Ro"/>
- <constraint firstItem="2Ue-0R-sNj" firstAttribute="leading" secondItem="imi-ou-EL3" secondAttribute="leading" id="o4C-2Q-D6N"/>
- <constraint firstAttribute="trailing" secondItem="1lg-Ya-oAZ" secondAttribute="trailing" id="sIv-1c-5i6"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="RrJ-IO-ZkL"/>
- <exclude reference="2Ue-0R-sNj"/>
- </mask>
- <mask key="constraints">
- <exclude reference="9gW-6y-DsW"/>
- <exclude reference="fpr-j1-R7a"/>
- <exclude reference="l89-es-8Ro"/>
- <exclude reference="o4C-2Q-D6N"/>
- <exclude reference="CBc-Tz-0MG"/>
- <exclude reference="Yx2-Oh-D3f"/>
- <exclude reference="aKs-Zl-5sf"/>
- <exclude reference="Hns-Ez-VQf"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="RrJ-IO-ZkL"/>
- <include reference="2Ue-0R-sNj"/>
- </mask>
- <mask key="constraints">
- <include reference="9gW-6y-DsW"/>
- <include reference="fpr-j1-R7a"/>
- <include reference="l89-es-8Ro"/>
- <include reference="o4C-2Q-D6N"/>
- <include reference="CBc-Tz-0MG"/>
- <include reference="Yx2-Oh-D3f"/>
- <include reference="aKs-Zl-5sf"/>
- <include reference="Hns-Ez-VQf"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="imi-ou-EL3" secondAttribute="trailing" id="fd3-4d-f02"/>
- <constraint firstItem="5KK-VG-ZuR" firstAttribute="top" secondItem="imi-ou-EL3" secondAttribute="bottom" id="hlN-MA-TF0"/>
- <constraint firstItem="imi-ou-EL3" firstAttribute="top" secondItem="GM3-Ym-ene" secondAttribute="bottom" id="nbr-f2-s9C">
- <variation key="heightClass=regular-widthClass=compact" constant="-20"/>
- </constraint>
- <constraint firstItem="imi-ou-EL3" firstAttribute="leading" secondItem="McF-Be-yE8" secondAttribute="leading" id="r64-3Q-aOz"/>
- </constraints>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="tableView" destination="1lg-Ya-oAZ" id="sYq-Vz-DhD"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="E5C-Re-Ydf" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="702" y="871.5"/>
- </scene>
- <!--Home Mode Update View Controller-->
- <scene sceneID="VMB-2A-V5n">
- <objects>
- <viewController storyboardIdentifier="HomeModeUpdateViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="F7m-Eg-1WY" customClass="HomeModeUpdateViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="xr8-J1-1mW"/>
- <viewControllerLayoutGuide type="bottom" id="UdN-Ge-x8c"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="7hx-Q3-gXO" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Izn-Dc-zAA" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="KbK-eA-Ahh" userLabel="View - container">
- <rect key="frame" x="0.0" y="182" width="320" height="60"/>
- <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="6wF-tc-wmk" customClass="CustomLabel">
- <rect key="frame" x="20" y="20" width="280" height="20"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="87" id="Bbw-C6-oRY">
- <variation key="heightClass=regular-widthClass=compact" constant="141"/>
- </constraint>
- <constraint firstAttribute="width" constant="56" id="kLG-b3-lsr">
- <variation key="heightClass=regular-widthClass=compact" constant="240"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Bbw-C6-oRY"/>
- <exclude reference="kLG-b3-lsr"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Bbw-C6-oRY"/>
- <include reference="kLG-b3-lsr"/>
- </mask>
- </variation>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Haw-bH-C8O" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="170" id="VVs-n1-QQi"/>
- <constraint firstAttribute="height" constant="170" id="hKY-Rt-LZJ"/>
- </constraints>
- <state key="normal" title="귀가"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="VVs-n1-QQi"/>
- <exclude reference="hKY-Rt-LZJ"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="VVs-n1-QQi"/>
- <include reference="hKY-Rt-LZJ"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnExecuteTouched:" destination="F7m-Eg-1WY" eventType="touchUpInside" id="Gqf-R1-xhr"/>
- </connections>
- </button>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="RbW-H3-pSU" customClass="CustomImageView">
- <rect key="frame" x="0.0" y="0.0" width="240" height="128"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="50" id="Rys-6r-69T"/>
- <constraint firstAttribute="height" constant="50" id="vEC-EC-50H"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Rys-6r-69T"/>
- <exclude reference="vEC-EC-50H"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Rys-6r-69T"/>
- <include reference="vEC-EC-50H"/>
- </mask>
- </variation>
- </imageView>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="N6e-EH-VFp" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="32" id="7Fp-OB-Prf"/>
- <constraint firstAttribute="height" constant="35" id="9Ku-Dg-Kot"/>
- </constraints>
- <state key="normal" title="설정">
- <color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="7Fp-OB-Prf"/>
- <exclude reference="9Ku-Dg-Kot"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="7Fp-OB-Prf"/>
- <include reference="9Ku-Dg-Kot"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnSettingTouched:" destination="F7m-Eg-1WY" eventType="touchUpInside" id="pk9-jN-cgd"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="DUt-WV-M2I" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="35" id="MAh-Xq-DSE"/>
- <constraint firstAttribute="width" constant="32" id="XD1-cp-AxZ"/>
- </constraints>
- <state key="normal" title="닫기">
- <color key="titleColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- </state>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="MAh-Xq-DSE"/>
- <exclude reference="XD1-cp-AxZ"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="MAh-Xq-DSE"/>
- <include reference="XD1-cp-AxZ"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCloseTouched:" destination="F7m-Eg-1WY" eventType="touchUpInside" id="Tgg-OQ-fcn"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="Haw-bH-C8O" firstAttribute="centerY" secondItem="KbK-eA-Ahh" secondAttribute="centerY" id="8HI-e0-Z1S"/>
- <constraint firstItem="RbW-H3-pSU" firstAttribute="centerX" secondItem="Haw-bH-C8O" secondAttribute="centerX" id="JgO-Q0-vBT"/>
- <constraint firstItem="Haw-bH-C8O" firstAttribute="centerX" secondItem="KbK-eA-Ahh" secondAttribute="centerX" id="Ln4-gb-8aW"/>
- <constraint firstItem="RbW-H3-pSU" firstAttribute="top" secondItem="Haw-bH-C8O" secondAttribute="bottom" constant="11" id="WZd-K2-Fnv"/>
- <constraint firstItem="6wF-tc-wmk" firstAttribute="centerX" secondItem="KbK-eA-Ahh" secondAttribute="centerX" id="cb9-9U-ahx"/>
- <constraint firstItem="6wF-tc-wmk" firstAttribute="top" secondItem="KbK-eA-Ahh" secondAttribute="top" constant="50" id="eHI-wB-0C9"/>
- <constraint firstAttribute="bottom" secondItem="N6e-EH-VFp" secondAttribute="bottom" constant="20" id="eTd-QV-oW4"/>
- <constraint firstAttribute="bottom" secondItem="DUt-WV-M2I" secondAttribute="bottom" constant="20" id="fN2-mP-jvm"/>
- <constraint firstItem="N6e-EH-VFp" firstAttribute="leading" secondItem="KbK-eA-Ahh" secondAttribute="leading" constant="20" id="twp-79-gru"/>
- <constraint firstAttribute="trailing" secondItem="DUt-WV-M2I" secondAttribute="trailing" constant="20" id="yIp-W0-aOH"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Haw-bH-C8O"/>
- <exclude reference="RbW-H3-pSU"/>
- <exclude reference="N6e-EH-VFp"/>
- <exclude reference="DUt-WV-M2I"/>
- </mask>
- <mask key="constraints">
- <exclude reference="fN2-mP-jvm"/>
- <exclude reference="yIp-W0-aOH"/>
- <exclude reference="8HI-e0-Z1S"/>
- <exclude reference="Ln4-gb-8aW"/>
- <exclude reference="eTd-QV-oW4"/>
- <exclude reference="twp-79-gru"/>
- <exclude reference="JgO-Q0-vBT"/>
- <exclude reference="WZd-K2-Fnv"/>
- <exclude reference="cb9-9U-ahx"/>
- <exclude reference="eHI-wB-0C9"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Haw-bH-C8O"/>
- <include reference="RbW-H3-pSU"/>
- <include reference="N6e-EH-VFp"/>
- <include reference="DUt-WV-M2I"/>
- </mask>
- <mask key="constraints">
- <include reference="fN2-mP-jvm"/>
- <include reference="yIp-W0-aOH"/>
- <include reference="8HI-e0-Z1S"/>
- <include reference="Ln4-gb-8aW"/>
- <include reference="eTd-QV-oW4"/>
- <include reference="twp-79-gru"/>
- <include reference="JgO-Q0-vBT"/>
- <include reference="WZd-K2-Fnv"/>
- <include reference="cb9-9U-ahx"/>
- <include reference="eHI-wB-0C9"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="KbK-eA-Ahh" firstAttribute="top" secondItem="Izn-Dc-zAA" secondAttribute="top" id="8ZA-bJ-NKh"/>
- <constraint firstAttribute="bottom" secondItem="KbK-eA-Ahh" secondAttribute="bottom" id="GCD-dA-uiV"/>
- <constraint firstAttribute="trailing" secondItem="KbK-eA-Ahh" secondAttribute="trailing" id="GuQ-z7-spY"/>
- <constraint firstItem="KbK-eA-Ahh" firstAttribute="leading" secondItem="Izn-Dc-zAA" secondAttribute="leading" id="HWa-JE-aAD"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="8ZA-bJ-NKh"/>
- <exclude reference="GCD-dA-uiV"/>
- <exclude reference="GuQ-z7-spY"/>
- <exclude reference="HWa-JE-aAD"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="8ZA-bJ-NKh"/>
- <include reference="GCD-dA-uiV"/>
- <include reference="GuQ-z7-spY"/>
- <include reference="HWa-JE-aAD"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="UdN-Ge-x8c" firstAttribute="top" secondItem="Izn-Dc-zAA" secondAttribute="bottom" id="Ept-qc-yxz"/>
- <constraint firstAttribute="trailing" secondItem="Izn-Dc-zAA" secondAttribute="trailing" id="Fwm-ta-siT"/>
- <constraint firstItem="Izn-Dc-zAA" firstAttribute="leading" secondItem="7hx-Q3-gXO" secondAttribute="leading" id="Odl-ZN-Sns"/>
- <constraint firstItem="Izn-Dc-zAA" firstAttribute="top" secondItem="7hx-Q3-gXO" secondAttribute="top" id="eYT-DM-raD"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Izn-Dc-zAA"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Ept-qc-yxz"/>
- <exclude reference="Fwm-ta-siT"/>
- <exclude reference="Odl-ZN-Sns"/>
- <exclude reference="eYT-DM-raD"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Izn-Dc-zAA"/>
- </mask>
- <mask key="constraints">
- <include reference="Ept-qc-yxz"/>
- <include reference="Fwm-ta-siT"/>
- <include reference="Odl-ZN-Sns"/>
- <include reference="eYT-DM-raD"/>
- </mask>
- </variation>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="btnExecute" destination="Haw-bH-C8O" id="Tei-sm-aLC"/>
- <outlet property="btnSetting" destination="N6e-EH-VFp" id="N9s-TQ-2Cn"/>
- <outlet property="imgvMode" destination="RbW-H3-pSU" id="R6G-dA-o2w"/>
- <outlet property="lblMessage" destination="6wF-tc-wmk" id="uu6-Wg-SqY"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="4Z9-d9-vgz" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2485.5" y="871.5"/>
- </scene>
- <!--Home Mode Settings View Controller-->
- <scene sceneID="Vvh-Q7-dFw">
- <objects>
- <viewController storyboardIdentifier="HomeModeSettingsViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Qh7-wj-mIc" customClass="HomeModeSettingsViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="yhA-VW-5ba"/>
- <viewControllerLayoutGuide type="bottom" id="4s5-mQ-4Ep"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="qbV-sP-dSu" userLabel="View - ViewController">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <view contentMode="scaleToFill" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="sUc-0p-33d" userLabel="View - Main">
- <rect key="frame" x="0.0" y="80" width="320" height="488"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Fxp-Lz-YS6" 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="C4H-Ry-rJa" customClass="CustomLabel">
- <rect key="frame" x="-42" y="-21" width="42" height="21"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="56" id="DZg-Uk-nTr">
- <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="DZg-Uk-nTr"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="DZg-Uk-nTr"/>
- </mask>
- </variation>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Lt6-LY-2ck" 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="Qax-GB-LnR"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Qax-GB-LnR"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Qax-GB-LnR"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="C4H-Ry-rJa" firstAttribute="top" secondItem="Fxp-Lz-YS6" secondAttribute="top" constant="43" id="8kG-OF-aWu">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- <constraint firstItem="Lt6-LY-2ck" firstAttribute="leading" secondItem="Fxp-Lz-YS6" secondAttribute="leading" id="FCW-VR-d6L"/>
- <constraint firstAttribute="bottom" secondItem="Lt6-LY-2ck" secondAttribute="bottom" id="MBp-RO-3bb"/>
- <constraint firstAttribute="bottom" secondItem="C4H-Ry-rJa" secondAttribute="bottom" constant="22" id="Qt8-nP-npp">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstAttribute="height" constant="80" id="UR2-SS-quL"/>
- <constraint firstItem="C4H-Ry-rJa" firstAttribute="leading" secondItem="Fxp-Lz-YS6" secondAttribute="leading" constant="10" id="oQj-vs-oro"/>
- <constraint firstAttribute="trailing" secondItem="Lt6-LY-2ck" secondAttribute="trailing" id="pmc-XT-GVE"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="C4H-Ry-rJa"/>
- <exclude reference="Lt6-LY-2ck"/>
- </mask>
- <mask key="constraints">
- <exclude reference="UR2-SS-quL"/>
- <exclude reference="FCW-VR-d6L"/>
- <exclude reference="MBp-RO-3bb"/>
- <exclude reference="pmc-XT-GVE"/>
- <exclude reference="8kG-OF-aWu"/>
- <exclude reference="Qt8-nP-npp"/>
- <exclude reference="oQj-vs-oro"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="C4H-Ry-rJa"/>
- <include reference="Lt6-LY-2ck"/>
- </mask>
- <mask key="constraints">
- <include reference="UR2-SS-quL"/>
- <include reference="FCW-VR-d6L"/>
- <include reference="MBp-RO-3bb"/>
- <include reference="pmc-XT-GVE"/>
- <include reference="8kG-OF-aWu"/>
- <include reference="Qt8-nP-npp"/>
- <include reference="oQj-vs-oro"/>
- </mask>
- </variation>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ibZ-cv-aT0" userLabel="View - actionTab">
- <rect key="frame" x="-20" y="-20" width="360" height="115"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="dxS-K4-3zs" 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="2il-gK-gRh"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="2il-gK-gRh"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="2il-gK-gRh"/>
- </mask>
- </variation>
- </view>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="P3W-xs-9bI" 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="height" constant="30" id="tEi-rX-Op2">
- <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="tEi-rX-Op2"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="tEi-rX-Op2"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCancelTouched:" destination="Qh7-wj-mIc" eventType="touchUpInside" id="zpa-I5-gcQ"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="MbC-6w-G7b" 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="height" constant="30" id="1LR-3N-j4H">
- <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="1LR-3N-j4H"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="1LR-3N-j4H"/>
- </mask>
- </variation>
- <connections>
- <action selector="btnCompleteTouched:" destination="Qh7-wj-mIc" eventType="touchUpInside" id="6Sk-1l-t25"/>
- </connections>
- </button>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="P3W-xs-9bI" secondAttribute="bottom" id="06r-QS-h0O"/>
- <constraint firstItem="MbC-6w-G7b" firstAttribute="leading" secondItem="ibZ-cv-aT0" secondAttribute="leading" constant="-2" id="GzG-jc-0f1">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="P3W-xs-9bI" firstAttribute="width" secondItem="MbC-6w-G7b" secondAttribute="width" id="HV7-If-0X4">
- <variation key="heightClass=regular-widthClass=compact" constant="-1"/>
- </constraint>
- <constraint firstItem="P3W-xs-9bI" firstAttribute="top" secondItem="dxS-K4-3zs" secondAttribute="bottom" id="Jkv-IX-mif"/>
- <constraint firstAttribute="trailing" secondItem="MbC-6w-G7b" secondAttribute="trailing" id="SNI-Fn-s8N"/>
- <constraint firstAttribute="height" constant="70" id="WFN-2B-4Ii"/>
- <constraint firstItem="P3W-xs-9bI" firstAttribute="leading" secondItem="MbC-6w-G7b" secondAttribute="trailing" constant="1" id="ddP-Zo-O0s"/>
- <constraint firstItem="MbC-6w-G7b" firstAttribute="top" secondItem="ibZ-cv-aT0" secondAttribute="top" id="fQM-1z-Tmy">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="MbC-6w-G7b" secondAttribute="trailing" constant="202" id="lG7-YL-dIs"/>
- <constraint firstAttribute="trailing" secondItem="dxS-K4-3zs" secondAttribute="trailing" id="s5q-0U-rD4"/>
- <constraint firstItem="dxS-K4-3zs" firstAttribute="leading" secondItem="ibZ-cv-aT0" secondAttribute="leading" id="wx4-Fc-hgY"/>
- <constraint firstAttribute="trailing" secondItem="P3W-xs-9bI" secondAttribute="trailing" id="ywN-Dx-dUX"/>
- <constraint firstItem="dxS-K4-3zs" firstAttribute="top" secondItem="ibZ-cv-aT0" secondAttribute="top" id="z2I-Oc-pAw"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="P3W-xs-9bI"/>
- </mask>
- <mask key="constraints">
- <exclude reference="WFN-2B-4Ii"/>
- <exclude reference="s5q-0U-rD4"/>
- <exclude reference="wx4-Fc-hgY"/>
- <exclude reference="z2I-Oc-pAw"/>
- <exclude reference="GzG-jc-0f1"/>
- <exclude reference="SNI-Fn-s8N"/>
- <exclude reference="fQM-1z-Tmy"/>
- <exclude reference="lG7-YL-dIs"/>
- <exclude reference="06r-QS-h0O"/>
- <exclude reference="HV7-If-0X4"/>
- <exclude reference="Jkv-IX-mif"/>
- <exclude reference="ddP-Zo-O0s"/>
- <exclude reference="ywN-Dx-dUX"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="P3W-xs-9bI"/>
- </mask>
- <mask key="constraints">
- <include reference="WFN-2B-4Ii"/>
- <include reference="s5q-0U-rD4"/>
- <include reference="wx4-Fc-hgY"/>
- <include reference="z2I-Oc-pAw"/>
- <include reference="GzG-jc-0f1"/>
- <exclude reference="SNI-Fn-s8N"/>
- <include reference="fQM-1z-Tmy"/>
- <exclude reference="lG7-YL-dIs"/>
- <include reference="06r-QS-h0O"/>
- <include reference="HV7-If-0X4"/>
- <include reference="Jkv-IX-mif"/>
- <include reference="ddP-Zo-O0s"/>
- <include reference="ywN-Dx-dUX"/>
- </mask>
- </variation>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" misplaced="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="150" sectionHeaderHeight="22" sectionFooterHeight="22" translatesAutoresizingMaskIntoConstraints="NO" id="RL5-0v-UoE">
- <rect key="frame" x="0.0" y="0.0" width="320" height="488"/>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="TitleCellIdentifier" rowHeight="110" id="UAD-3H-XiO" customClass="HomeSettingsTitleTableViewCell">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UAD-3H-XiO" id="AmL-Vh-h4h">
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="4Rm-nv-Cry" userLabel="View - Cell">
- <rect key="frame" x="-5" y="0.0" width="330" height="95"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="hXk-xQ-9nD" customClass="CustomImageView">
- <rect key="frame" x="20" y="20" width="55" height="55"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="width" constant="55" id="dqw-3l-flh"/>
- <constraint firstAttribute="height" constant="55" id="qOC-PO-ckO"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="dqw-3l-flh"/>
- <exclude reference="qOC-PO-ckO"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="dqw-3l-flh"/>
- <include reference="qOC-PO-ckO"/>
- </mask>
- </variation>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="230" placeholderIntrinsicHeight="20" text="Mode" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Sr7-hk-oTH" customClass="CustomLabel">
- <rect key="frame" x="80" y="25" width="230" height="20"/>
- <animations/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <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" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="230" placeholderIntrinsicHeight="20" text="모드 선택 시 동장학 장치를 선택하세요" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Lh8-p5-per" customClass="CustomLabel">
- <rect key="frame" x="80" y="53" width="230" height="20"/>
- <animations/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="0.0" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="Sr7-hk-oTH" firstAttribute="leading" secondItem="hXk-xQ-9nD" secondAttribute="trailing" constant="5" id="4A5-hT-4Xh"/>
- <constraint firstAttribute="trailing" secondItem="Lh8-p5-per" secondAttribute="trailing" constant="15" id="Dok-0A-RP6"/>
- <constraint firstItem="hXk-xQ-9nD" firstAttribute="top" secondItem="4Rm-nv-Cry" secondAttribute="top" constant="20" id="GNU-ie-2VF"/>
- <constraint firstItem="Lh8-p5-per" firstAttribute="top" secondItem="Sr7-hk-oTH" secondAttribute="bottom" constant="10" id="HXj-Zu-KpD"/>
- <constraint firstItem="hXk-xQ-9nD" firstAttribute="leading" secondItem="4Rm-nv-Cry" secondAttribute="leading" constant="15" id="N4c-je-JVd"/>
- <constraint firstAttribute="trailing" secondItem="Sr7-hk-oTH" secondAttribute="trailing" constant="15" id="X2q-sA-0j7"/>
- <constraint firstAttribute="bottom" secondItem="Lh8-p5-per" secondAttribute="bottom" constant="20" id="ZaQ-w1-Sda"/>
- <constraint firstItem="Sr7-hk-oTH" firstAttribute="top" secondItem="4Rm-nv-Cry" secondAttribute="top" constant="25" id="hcs-X9-80R"/>
- <constraint firstItem="Lh8-p5-per" firstAttribute="leading" secondItem="hXk-xQ-9nD" secondAttribute="trailing" constant="5" id="xgJ-zR-NLK"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="GNU-ie-2VF"/>
- <exclude reference="N4c-je-JVd"/>
- <exclude reference="4A5-hT-4Xh"/>
- <exclude reference="X2q-sA-0j7"/>
- <exclude reference="hcs-X9-80R"/>
- <exclude reference="Dok-0A-RP6"/>
- <exclude reference="HXj-Zu-KpD"/>
- <exclude reference="ZaQ-w1-Sda"/>
- <exclude reference="xgJ-zR-NLK"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="GNU-ie-2VF"/>
- <include reference="N4c-je-JVd"/>
- <include reference="4A5-hT-4Xh"/>
- <include reference="X2q-sA-0j7"/>
- <include reference="hcs-X9-80R"/>
- <include reference="Dok-0A-RP6"/>
- <include reference="HXj-Zu-KpD"/>
- <include reference="ZaQ-w1-Sda"/>
- <include reference="xgJ-zR-NLK"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="4Rm-nv-Cry" secondAttribute="bottom" constant="14" id="KHp-Lo-P8d"/>
- <constraint firstItem="4Rm-nv-Cry" firstAttribute="top" secondItem="AmL-Vh-h4h" secondAttribute="top" id="YHG-M0-xA1"/>
- <constraint firstAttribute="trailing" secondItem="4Rm-nv-Cry" secondAttribute="trailing" id="qOk-Bg-tOX"/>
- <constraint firstItem="4Rm-nv-Cry" firstAttribute="leading" secondItem="AmL-Vh-h4h" secondAttribute="leading" id="qSH-so-d5w"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="KHp-Lo-P8d"/>
- <exclude reference="YHG-M0-xA1"/>
- <exclude reference="qOk-Bg-tOX"/>
- <exclude reference="qSH-so-d5w"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="KHp-Lo-P8d"/>
- <include reference="YHG-M0-xA1"/>
- <include reference="qOk-Bg-tOX"/>
- <include reference="qSH-so-d5w"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <connections>
- <outlet property="imgvMode" destination="hXk-xQ-9nD" id="nKt-Va-PK1"/>
- <outlet property="lblModeTitle" destination="Sr7-hk-oTH" id="7wu-dj-Gbk"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="DeviceCellIdentifier" rowHeight="95" id="OAA-9W-GGd" customClass="HomeSettingsDeviceTableViewCell">
- <rect key="frame" x="0.0" y="22" width="320" height="160"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OAA-9W-GGd" id="cNB-1f-Prd">
- <rect key="frame" x="0.0" y="0.0" width="320" height="159"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Vqm-T4-8fo" userLabel="View - Cell">
- <rect key="frame" x="-5" y="0.0" width="315" height="140"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hp9-kY-qVp" 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="eSR-67-YPc"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="eSR-67-YPc"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="eSR-67-YPc"/>
- </mask>
- </variation>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" translatesAutoresizingMaskIntoConstraints="NO" id="aBF-jW-QfJ" customClass="CustomImageView">
- <rect key="frame" x="20" y="25" width="10" height="10"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="10" id="mkw-OK-SJG">
- <variation key="heightClass=regular-widthClass=compact" constant="55"/>
- </constraint>
- <constraint firstAttribute="width" constant="55" id="p4v-vJ-TY1"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="mkw-OK-SJG"/>
- <exclude reference="p4v-vJ-TY1"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="mkw-OK-SJG"/>
- <include reference="p4v-vJ-TY1"/>
- </mask>
- </variation>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="125" placeholderIntrinsicHeight="20" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3AS-GK-m1O" customClass="CustomLabel">
- <rect key="frame" x="45" y="20" width="250" height="20"/>
- <animations/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="16"/>
- <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" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="125" placeholderIntrinsicHeight="20" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="XMt-2p-Og0" customClass="CustomLabel">
- <rect key="frame" x="45" y="60" width="250" height="20"/>
- <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="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="eKw-Vb-pIu" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="WMC-OQ-nUE"/>
- <constraint firstAttribute="width" constant="30" id="ne3-nb-yYu"/>
- </constraints>
- <state key="normal" title="삭"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="WMC-OQ-nUE"/>
- <exclude reference="ne3-nb-yYu"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="WMC-OQ-nUE"/>
- <include reference="ne3-nb-yYu"/>
- </mask>
- </variation>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" ambiguous="YES" misplaced="YES" placeholderIntrinsicWidth="250" placeholderIntrinsicHeight="20" text="Action" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dHu-GA-nL2" customClass="CustomLabel">
- <rect key="frame" x="45" y="60" width="250" height="20"/>
- <animations/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="calibratedRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <animations/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="XMt-2p-Og0" firstAttribute="trailing" secondItem="3AS-GK-m1O" secondAttribute="trailing" id="5mT-BT-2jk"/>
- <constraint firstItem="eKw-Vb-pIu" firstAttribute="centerY" secondItem="Vqm-T4-8fo" secondAttribute="centerY" id="7Kg-mf-YVI"/>
- <constraint firstAttribute="bottom" secondItem="XMt-2p-Og0" secondAttribute="bottom" constant="20" id="Cx0-SK-2Oa"/>
- <constraint firstAttribute="bottom" secondItem="hp9-kY-qVp" secondAttribute="bottom" id="Nij-A7-psG"/>
- <constraint firstAttribute="trailing" secondItem="hp9-kY-qVp" secondAttribute="trailing" id="TnK-uN-hNv"/>
- <constraint firstItem="XMt-2p-Og0" firstAttribute="top" secondItem="3AS-GK-m1O" secondAttribute="bottom" constant="20" id="WlY-2g-RDe">
- <variation key="heightClass=regular-widthClass=compact" constant="10"/>
- </constraint>
- <constraint firstItem="dHu-GA-nL2" firstAttribute="centerY" secondItem="Vqm-T4-8fo" secondAttribute="centerY" id="ZgM-nx-PO4"/>
- <constraint firstItem="hp9-kY-qVp" firstAttribute="leading" secondItem="Vqm-T4-8fo" secondAttribute="leading" id="ddh-LZ-RkX"/>
- <constraint firstItem="aBF-jW-QfJ" firstAttribute="top" secondItem="Vqm-T4-8fo" secondAttribute="top" constant="25" id="h9D-yl-qUq">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="eKw-Vb-pIu" firstAttribute="leading" secondItem="dHu-GA-nL2" secondAttribute="trailing" id="jrq-wl-cTV"/>
- <constraint firstItem="XMt-2p-Og0" firstAttribute="leading" secondItem="3AS-GK-m1O" secondAttribute="leading" id="l7f-Ng-jdM"/>
- <constraint firstItem="aBF-jW-QfJ" firstAttribute="leading" secondItem="Vqm-T4-8fo" secondAttribute="leading" constant="20" id="mdk-FL-pw6">
- <variation key="heightClass=regular-widthClass=compact" constant="15"/>
- </constraint>
- <constraint firstItem="dHu-GA-nL2" firstAttribute="leading" secondItem="3AS-GK-m1O" secondAttribute="trailing" id="sIa-ex-5MV"/>
- <constraint firstItem="3AS-GK-m1O" firstAttribute="leading" secondItem="aBF-jW-QfJ" secondAttribute="trailing" constant="15" id="uLc-UM-A2x">
- <variation key="heightClass=regular-widthClass=compact" constant="5"/>
- </constraint>
- <constraint firstItem="3AS-GK-m1O" firstAttribute="top" secondItem="Vqm-T4-8fo" secondAttribute="top" constant="20" id="v46-Ic-9R1">
- <variation key="heightClass=regular-widthClass=compact" constant="25"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="eKw-Vb-pIu" secondAttribute="trailing" constant="15" id="zX1-y3-iFD"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="hp9-kY-qVp"/>
- <exclude reference="eKw-Vb-pIu"/>
- <exclude reference="dHu-GA-nL2"/>
- </mask>
- <mask key="constraints">
- <exclude reference="h9D-yl-qUq"/>
- <exclude reference="mdk-FL-pw6"/>
- <exclude reference="uLc-UM-A2x"/>
- <exclude reference="v46-Ic-9R1"/>
- <exclude reference="5mT-BT-2jk"/>
- <exclude reference="Cx0-SK-2Oa"/>
- <exclude reference="WlY-2g-RDe"/>
- <exclude reference="l7f-Ng-jdM"/>
- <exclude reference="Nij-A7-psG"/>
- <exclude reference="TnK-uN-hNv"/>
- <exclude reference="ddh-LZ-RkX"/>
- <exclude reference="ZgM-nx-PO4"/>
- <exclude reference="sIa-ex-5MV"/>
- <exclude reference="7Kg-mf-YVI"/>
- <exclude reference="jrq-wl-cTV"/>
- <exclude reference="zX1-y3-iFD"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="hp9-kY-qVp"/>
- <include reference="eKw-Vb-pIu"/>
- <include reference="dHu-GA-nL2"/>
- </mask>
- <mask key="constraints">
- <include reference="h9D-yl-qUq"/>
- <include reference="mdk-FL-pw6"/>
- <include reference="uLc-UM-A2x"/>
- <include reference="v46-Ic-9R1"/>
- <include reference="5mT-BT-2jk"/>
- <include reference="Cx0-SK-2Oa"/>
- <include reference="WlY-2g-RDe"/>
- <include reference="l7f-Ng-jdM"/>
- <include reference="Nij-A7-psG"/>
- <include reference="TnK-uN-hNv"/>
- <include reference="ddh-LZ-RkX"/>
- <include reference="ZgM-nx-PO4"/>
- <include reference="sIa-ex-5MV"/>
- <include reference="7Kg-mf-YVI"/>
- <include reference="jrq-wl-cTV"/>
- <include reference="zX1-y3-iFD"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="Vqm-T4-8fo" secondAttribute="trailing" id="4bw-gE-td4"/>
- <constraint firstItem="Vqm-T4-8fo" firstAttribute="leading" secondItem="cNB-1f-Prd" secondAttribute="leading" id="4fG-s7-kN0"/>
- <constraint firstItem="Vqm-T4-8fo" firstAttribute="top" secondItem="cNB-1f-Prd" secondAttribute="top" id="8om-GM-lO8"/>
- <constraint firstAttribute="bottom" secondItem="Vqm-T4-8fo" secondAttribute="bottom" constant="14" id="GdD-cD-6GH">
- <variation key="heightClass=regular-widthClass=compact" constant="-1"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="4bw-gE-td4"/>
- <exclude reference="4fG-s7-kN0"/>
- <exclude reference="8om-GM-lO8"/>
- <exclude reference="GdD-cD-6GH"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="4bw-gE-td4"/>
- <include reference="4fG-s7-kN0"/>
- <include reference="8om-GM-lO8"/>
- <include reference="GdD-cD-6GH"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <connections>
- <outlet property="btnDelete" destination="eKw-Vb-pIu" id="Iev-cO-KsG"/>
- <outlet property="imgvDevice" destination="aBF-jW-QfJ" id="se2-zd-TvV"/>
- <outlet property="lblActionName" destination="dHu-GA-nL2" id="3t1-wa-GIq"/>
- <outlet property="lblDeviceName" destination="3AS-GK-m1O" id="h3N-Yt-nji"/>
- <outlet property="lblNodeName" destination="XMt-2p-Og0" id="4ey-Zf-ocw"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="AppendCellIdentifier" rowHeight="95" id="VWN-Cy-OG8" customClass="HomeSettingsAppendTableViewCell">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="VWN-Cy-OG8" id="efL-rl-GyQ">
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="v6i-4a-nPQ" 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="Jmf-uT-x9P"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Jmf-uT-x9P"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Jmf-uT-x9P"/>
- </mask>
- </variation>
- </view>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="roundedRect" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="kem-2I-4Jj" customClass="CustomButton">
- <rect key="frame" x="-23" y="-15" width="46" height="30"/>
- <animations/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="HTs-JU-2m2"/>
- <constraint firstAttribute="width" constant="46" id="cQ8-l3-0mY"/>
- </constraints>
- <state key="normal" title="추가"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="HTs-JU-2m2"/>
- <exclude reference="cQ8-l3-0mY"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="HTs-JU-2m2"/>
- <include reference="cQ8-l3-0mY"/>
- </mask>
- </variation>
- </button>
- </subviews>
- <animations/>
- <constraints>
- <constraint firstItem="kem-2I-4Jj" firstAttribute="centerY" secondItem="efL-rl-GyQ" secondAttribute="centerY" id="Bn2-0I-f6S"/>
- <constraint firstAttribute="trailing" secondItem="v6i-4a-nPQ" secondAttribute="trailing" id="I8E-Qg-WKf"/>
- <constraint firstAttribute="bottom" secondItem="v6i-4a-nPQ" secondAttribute="bottom" id="NMe-Ua-Bcw"/>
- <constraint firstItem="v6i-4a-nPQ" firstAttribute="leading" secondItem="efL-rl-GyQ" secondAttribute="leading" id="dkJ-EQ-j6k"/>
- <constraint firstItem="kem-2I-4Jj" firstAttribute="leading" secondItem="efL-rl-GyQ" secondAttribute="leading" constant="15" id="rOo-83-l2Y"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="v6i-4a-nPQ"/>
- <exclude reference="kem-2I-4Jj"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Bn2-0I-f6S"/>
- <exclude reference="rOo-83-l2Y"/>
- <exclude reference="I8E-Qg-WKf"/>
- <exclude reference="NMe-Ua-Bcw"/>
- <exclude reference="dkJ-EQ-j6k"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="v6i-4a-nPQ"/>
- <include reference="kem-2I-4Jj"/>
- </mask>
- <mask key="constraints">
- <include reference="Bn2-0I-f6S"/>
- <include reference="rOo-83-l2Y"/>
- <include reference="I8E-Qg-WKf"/>
- <include reference="NMe-Ua-Bcw"/>
- <include reference="dkJ-EQ-j6k"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <animations/>
- <connections>
- <outlet property="btnAppend" destination="kem-2I-4Jj" id="zJk-tX-wYG"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="ibZ-cv-aT0" firstAttribute="top" secondItem="RL5-0v-UoE" secondAttribute="bottom" id="Kxq-c7-50w"/>
- <constraint firstItem="RL5-0v-UoE" firstAttribute="top" secondItem="Fxp-Lz-YS6" secondAttribute="bottom" id="MJP-Uy-LPs"/>
- <constraint firstAttribute="trailing" secondItem="Fxp-Lz-YS6" secondAttribute="trailing" id="NTl-5g-kti"/>
- <constraint firstAttribute="trailing" secondItem="RL5-0v-UoE" secondAttribute="trailing" id="P1f-CK-ec5"/>
- <constraint firstItem="Fxp-Lz-YS6" firstAttribute="leading" secondItem="sUc-0p-33d" secondAttribute="leading" id="QeV-Tn-9KL"/>
- <constraint firstItem="Fxp-Lz-YS6" firstAttribute="top" secondItem="sUc-0p-33d" secondAttribute="top" id="Ter-0G-oKv"/>
- <constraint firstItem="ibZ-cv-aT0" firstAttribute="leading" secondItem="sUc-0p-33d" secondAttribute="leading" id="WU3-m3-XMI"/>
- <constraint firstAttribute="trailing" secondItem="ibZ-cv-aT0" secondAttribute="trailing" id="cQb-Hy-faV"/>
- <constraint firstItem="RL5-0v-UoE" firstAttribute="leading" secondItem="sUc-0p-33d" secondAttribute="leading" id="gdE-Mf-CSl"/>
- <constraint firstAttribute="bottom" secondItem="ibZ-cv-aT0" secondAttribute="bottom" id="w8X-dg-RD8">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Fxp-Lz-YS6"/>
- <exclude reference="ibZ-cv-aT0"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Kxq-c7-50w"/>
- <exclude reference="WU3-m3-XMI"/>
- <exclude reference="cQb-Hy-faV"/>
- <exclude reference="w8X-dg-RD8"/>
- <exclude reference="NTl-5g-kti"/>
- <exclude reference="QeV-Tn-9KL"/>
- <exclude reference="Ter-0G-oKv"/>
- <exclude reference="MJP-Uy-LPs"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Fxp-Lz-YS6"/>
- <include reference="ibZ-cv-aT0"/>
- </mask>
- <mask key="constraints">
- <include reference="Kxq-c7-50w"/>
- <include reference="WU3-m3-XMI"/>
- <include reference="cQb-Hy-faV"/>
- <include reference="w8X-dg-RD8"/>
- <include reference="NTl-5g-kti"/>
- <include reference="QeV-Tn-9KL"/>
- <include reference="Ter-0G-oKv"/>
- <include reference="MJP-Uy-LPs"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <animations/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="calibratedRGB"/>
- <constraints>
- <constraint firstItem="sUc-0p-33d" firstAttribute="leading" secondItem="qbV-sP-dSu" secondAttribute="leading" id="Nx4-3l-kmL"/>
- <constraint firstItem="sUc-0p-33d" firstAttribute="top" secondItem="yhA-VW-5ba" secondAttribute="bottom" id="aXa-3P-dtx">
- <variation key="heightClass=regular-widthClass=compact" constant="-20"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="sUc-0p-33d" secondAttribute="trailing" id="ecE-eS-Pjz"/>
- <constraint firstItem="4s5-mQ-4Ep" firstAttribute="top" secondItem="sUc-0p-33d" secondAttribute="bottom" id="x8n-gT-Jmn"/>
- </constraints>
- </view>
- <simulatedScreenMetrics key="simulatedDestinationMetrics" type="retina4"/>
- <connections>
- <outlet property="tableView" destination="RL5-0v-UoE" id="ov2-n5-5MH"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="YbB-fW-Uii" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3048" y="871.5"/>
- </scene>
- </scenes>
- <resources>
- <image name="common_checkbox_checked" width="25" height="25"/>
- <image name="common_checkbox_default" width="25" height="25"/>
- <image name="logo" width="320" height="150"/>
- <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_01" width="20" height="20"/>
- <image name="tp_01_img_singup_membericon_01" width="228" height="228"/>
- <image name="tp_01_input_icon_email" width="45" height="45"/>
- <image name="tp_01_input_icon_pw" width="45" height="45"/>
- </resources>
- </document>
|