| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346 |
- <?xml version="1.0" encoding="UTF-8"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11762" systemVersion="16E195" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES">
- <device id="retina4_0" orientation="portrait">
- <adaptation id="fullscreen"/>
- </device>
- <dependencies>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
- <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
- </dependencies>
- <scenes>
- <!--Rules View Controller-->
- <scene sceneID="dSG-Vz-fZE">
- <objects>
- <viewController storyboardIdentifier="RulesViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Y28-FE-f5u" customClass="RulesViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="afl-b3-IkG"/>
- <viewControllerLayoutGuide type="bottom" id="9p7-je-Jaa"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="HPB-AH-DVL" 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="YQj-KO-tgi" userLabel="View - Main">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="color_body_01" translatesAutoresizingMaskIntoConstraints="NO" id="DZt-QG-oeT">
- <rect key="frame" x="0.0" y="70" width="320" height="498"/>
- </imageView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ygd-Rh-dSU" userLabel="View - header">
- <rect key="frame" x="0.0" y="0.0" width="320" height="70"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="활성 0 / 비활성 0" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="8qJ-di-EOx" customClass="CustomLabel">
- <rect key="frame" x="15" y="20" width="255" height="50"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_alert" translatesAutoresizingMaskIntoConstraints="NO" id="VSa-vi-pp7">
- <rect key="frame" x="18" y="36.5" width="17" height="17"/>
- <constraints>
- <constraint firstAttribute="width" constant="17" id="Kvb-em-crx"/>
- <constraint firstAttribute="height" constant="17" id="MYJ-Is-r5E"/>
- </constraints>
- </imageView>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="aJ9-Hk-5c5" customClass="CustomButton">
- <rect key="frame" x="270" y="20" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="width" constant="50" id="Qic-Lz-Pv2"/>
- <constraint firstAttribute="height" constant="50" id="Zaa-sF-fbR"/>
- </constraints>
- <state key="normal" image="common_head_btn_more"/>
- <state key="highlighted" image="common_head_btn_more_press"/>
- <connections>
- <action selector="btnOptionTouched:" destination="Y28-FE-f5u" eventType="touchUpInside" id="xwW-sM-hT5"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RMy-CQ-HrY" userLabel="View - EditMode">
- <rect key="frame" x="320" y="20" width="55" height="50"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="fxy-p4-UMy" customClass="CustomButton">
- <rect key="frame" x="0.0" y="0.0" width="55" height="50"/>
- <constraints>
- <constraint firstAttribute="width" constant="46" id="yKj-D2-LlT">
- <variation key="heightClass=regular-widthClass=compact" constant="55"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" image="common_head_btn_close"/>
- <state key="highlighted" image="common_head_btn_close_press"/>
- <connections>
- <action selector="btnCloseOnEditModeTouched:" destination="Y28-FE-f5u" eventType="touchUpInside" id="ZfP-jq-EWL"/>
- </connections>
- </button>
- </subviews>
- <constraints>
- <constraint firstItem="fxy-p4-UMy" firstAttribute="top" secondItem="RMy-CQ-HrY" secondAttribute="top" constant="5" id="0tr-ui-wpG">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="bottom" secondItem="fxy-p4-UMy" secondAttribute="bottom" constant="5" id="Mup-iX-g9W">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="width" constant="50" id="bMr-ew-Ukj">
- <variation key="heightClass=regular-widthClass=compact" constant="55"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="fxy-p4-UMy" secondAttribute="trailing" id="lwc-6O-Rfb"/>
- </constraints>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="ouF-HN-zMr">
- <rect key="frame" x="0.0" y="20" width="15" height="50"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="width" constant="15" id="8rG-XZ-jmY"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="RMy-CQ-HrY" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="top" constant="25" id="5b0-DQ-Av4">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- <constraint firstItem="ouF-HN-zMr" firstAttribute="leading" secondItem="ygd-Rh-dSU" secondAttribute="leading" id="8R8-M8-ujV"/>
- <constraint firstItem="ouF-HN-zMr" firstAttribute="top" secondItem="8qJ-di-EOx" secondAttribute="top" id="8cy-wg-sPY"/>
- <constraint firstAttribute="trailing" secondItem="aJ9-Hk-5c5" secondAttribute="trailing" id="9Lb-v9-3zx"/>
- <constraint firstItem="aJ9-Hk-5c5" firstAttribute="leading" secondItem="8qJ-di-EOx" secondAttribute="trailing" id="LCs-Zq-0uB"/>
- <constraint firstAttribute="bottom" secondItem="RMy-CQ-HrY" secondAttribute="bottom" constant="10" id="WEx-Wr-Ko4">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="VSa-vi-pp7" firstAttribute="centerY" secondItem="8qJ-di-EOx" secondAttribute="centerY" id="Yzn-Ri-rUx"/>
- <constraint firstItem="8qJ-di-EOx" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="top" constant="20" id="eF3-Qp-aNW"/>
- <constraint firstItem="8qJ-di-EOx" firstAttribute="leading" secondItem="ouF-HN-zMr" secondAttribute="trailing" id="fOX-uf-GJ1"/>
- <constraint firstAttribute="bottom" secondItem="8qJ-di-EOx" secondAttribute="bottom" id="fXG-ha-Pxa"/>
- <constraint firstAttribute="height" constant="70" id="pYT-IT-XDa"/>
- <constraint firstAttribute="bottom" secondItem="ouF-HN-zMr" secondAttribute="bottom" id="szb-7Z-r2w"/>
- <constraint firstItem="VSa-vi-pp7" firstAttribute="leading" secondItem="ygd-Rh-dSU" secondAttribute="leading" constant="18" id="x3V-Av-MtK"/>
- <constraint firstAttribute="trailing" secondItem="RMy-CQ-HrY" secondAttribute="trailing" constant="-50" id="y3y-iA-PYS">
- <variation key="heightClass=regular-widthClass=compact" constant="-55"/>
- </constraint>
- <constraint firstAttribute="bottom" secondItem="aJ9-Hk-5c5" secondAttribute="bottom" id="yJ4-ev-jmC"/>
- </constraints>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="SuE-qN-Zxf" userLabel="View - AddHub">
- <rect key="frame" x="0.0" y="70" width="320" height="444"/>
- <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="Nom-X5-uCS" customClass="CustomLabel">
- <rect key="frame" x="35" y="111.5" width="250" height="36"/>
- <constraints>
- <constraint firstAttribute="height" constant="36" id="9P6-BE-Cb6"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="img_1depth_invitation" translatesAutoresizingMaskIntoConstraints="NO" id="qNd-pD-pAH">
- <rect key="frame" x="85" y="147.5" width="150" height="150"/>
- <constraints>
- <constraint firstAttribute="height" constant="150" id="ifA-2a-YGk"/>
- <constraint firstAttribute="width" constant="150" id="qij-hK-jBM"/>
- </constraints>
- </imageView>
- <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="직접 홈허브를 연결하고 싶나요?
멤버 탈퇴 후 진행할 수 있습니다." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vp3-ys-dK4" customClass="CustomLabel">
- <rect key="frame" x="35" y="297.5" width="250" height="30"/>
- <constraints>
- <constraint firstAttribute="height" constant="36" id="Teh-3t-2ZH">
- <variation key="heightClass=regular-widthClass=compact" constant="30"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label hidden="YES" opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="탈퇴" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="z3j-ME-Reg" customClass="CustomLabel">
- <rect key="frame" x="35" y="342.5" width="250" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="36" id="aLL-c7-3b2">
- <variation key="heightClass=regular-widthClass=compact" constant="21"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="Nom-X5-uCS" secondAttribute="trailing" constant="35" id="AiO-h3-joT"/>
- <constraint firstItem="vp3-ys-dK4" firstAttribute="top" secondItem="qNd-pD-pAH" secondAttribute="bottom" id="Cul-mE-Sk4"/>
- <constraint firstItem="z3j-ME-Reg" firstAttribute="leading" secondItem="SuE-qN-Zxf" secondAttribute="leading" constant="35" id="PNM-eZ-7Dj"/>
- <constraint firstItem="vp3-ys-dK4" firstAttribute="leading" secondItem="SuE-qN-Zxf" secondAttribute="leading" constant="35" id="PVK-6z-FYe"/>
- <constraint firstItem="qNd-pD-pAH" firstAttribute="centerY" secondItem="SuE-qN-Zxf" secondAttribute="centerY" id="T6i-cu-scr"/>
- <constraint firstAttribute="trailing" secondItem="z3j-ME-Reg" secondAttribute="trailing" constant="35" id="TQ2-oS-AAv"/>
- <constraint firstAttribute="trailing" secondItem="vp3-ys-dK4" secondAttribute="trailing" constant="35" id="Vej-XG-s6q"/>
- <constraint firstItem="qNd-pD-pAH" firstAttribute="top" secondItem="Nom-X5-uCS" secondAttribute="bottom" id="eFM-xP-Gc8"/>
- <constraint firstItem="z3j-ME-Reg" firstAttribute="top" secondItem="vp3-ys-dK4" secondAttribute="bottom" constant="15" id="lWS-Sa-dhN"/>
- <constraint firstItem="qNd-pD-pAH" firstAttribute="centerX" secondItem="SuE-qN-Zxf" secondAttribute="centerX" id="mpb-a6-VNl"/>
- <constraint firstItem="Nom-X5-uCS" firstAttribute="leading" secondItem="SuE-qN-Zxf" secondAttribute="leading" constant="35" id="q49-H3-DF0"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="vp3-ys-dK4"/>
- <exclude reference="z3j-ME-Reg"/>
- </mask>
- <mask key="constraints">
- <exclude reference="Cul-mE-Sk4"/>
- <exclude reference="PVK-6z-FYe"/>
- <exclude reference="Vej-XG-s6q"/>
- <exclude reference="PNM-eZ-7Dj"/>
- <exclude reference="TQ2-oS-AAv"/>
- <exclude reference="lWS-Sa-dhN"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="vp3-ys-dK4"/>
- <include reference="z3j-ME-Reg"/>
- </mask>
- <mask key="constraints">
- <include reference="Cul-mE-Sk4"/>
- <include reference="PVK-6z-FYe"/>
- <include reference="Vej-XG-s6q"/>
- <include reference="PNM-eZ-7Dj"/>
- <include reference="TQ2-oS-AAv"/>
- <include reference="lWS-Sa-dhN"/>
- </mask>
- </variation>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="115" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="NbQ-kG-vPj" customClass="CustomTableView">
- <rect key="frame" x="10" y="80" width="300" height="428"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="CellIdentifier" rowHeight="101" id="seo-Ln-j89" customClass="RulesTableViewCell">
- <rect key="frame" x="0.0" y="28" width="300" height="101"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="seo-Ln-j89" id="90i-G5-Obo">
- <rect key="frame" x="0.0" y="0.0" width="300" height="100"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_circle_red" translatesAutoresizingMaskIntoConstraints="NO" id="tgB-uU-6kM" customClass="CustomImageView">
- <rect key="frame" x="15" y="46" width="8" height="8"/>
- <constraints>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="8" id="7cm-FY-CrR"/>
- <constraint firstAttribute="height" constant="8" id="HZc-ls-ioU"/>
- <constraint firstAttribute="width" constant="8" id="Hpg-dw-evF"/>
- <constraint firstAttribute="height" relation="greaterThanOrEqual" constant="8" id="IBu-cG-X0A"/>
- </constraints>
- </imageView>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="db9-2d-F3M" customClass="CustomImageView">
- <rect key="frame" x="23" y="18" width="65" height="65"/>
- <constraints>
- <constraint firstAttribute="width" constant="65" id="6uK-FK-eUt"/>
- <constraint firstAttribute="height" constant="65" id="v8I-7d-mSh"/>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7ea-Qm-foz" customClass="CustomLabel">
- <rect key="frame" x="98" y="18" width="117" height="65"/>
- <constraints>
- <constraint firstAttribute="height" constant="65" id="CP5-71-W9A"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="seC-df-23v" customClass="CustomButton">
- <rect key="frame" x="231" y="37" width="54" height="27"/>
- <constraints>
- <constraint firstAttribute="width" constant="54" id="75j-nL-UUF"/>
- <constraint firstAttribute="height" constant="27" id="mde-tk-LP3"/>
- </constraints>
- <state key="normal" image="img_rule_list_playbtn_active"/>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Sv1-sW-vec" customClass="CustomButton">
- <rect key="frame" x="249" y="35" width="41" height="32"/>
- <constraints>
- <constraint firstAttribute="height" constant="32" id="CzE-3X-WIB"/>
- <constraint firstAttribute="width" constant="41" id="hL2-FI-2gY"/>
- </constraints>
- <state key="normal" image="img_things_list_btn_delete"/>
- <state key="highlighted" image="img_things_list_btn_delete_press"/>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="tuX-3Q-GTA" userLabel="View - line">
- <rect key="frame" x="0.0" y="99" width="300" height="1"/>
- <color key="backgroundColor" red="0.8666666666666667" green="0.8666666666666667" blue="0.8666666666666667" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="JzX-Xy-T1d"/>
- </constraints>
- </view>
- </subviews>
- <constraints>
- <constraint firstItem="7ea-Qm-foz" firstAttribute="top" secondItem="90i-G5-Obo" secondAttribute="top" constant="18" id="2BI-o1-5qZ"/>
- <constraint firstItem="db9-2d-F3M" firstAttribute="top" secondItem="90i-G5-Obo" secondAttribute="top" constant="18" id="4G1-kS-nvl"/>
- <constraint firstItem="seC-df-23v" firstAttribute="top" secondItem="90i-G5-Obo" secondAttribute="top" constant="37" id="7Du-vc-GA9"/>
- <constraint firstItem="tgB-uU-6kM" firstAttribute="leading" secondItem="90i-G5-Obo" secondAttribute="leading" constant="15" id="7dP-4n-sv1"/>
- <constraint firstAttribute="bottom" secondItem="tuX-3Q-GTA" secondAttribute="bottom" constant="-1" id="8kL-hv-EK0">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="db9-2d-F3M" firstAttribute="leading" secondItem="tgB-uU-6kM" secondAttribute="trailing" id="NVz-wj-vpN"/>
- <constraint firstItem="Sv1-sW-vec" firstAttribute="leading" secondItem="seC-df-23v" secondAttribute="leading" constant="18" id="P05-9g-CbI"/>
- <constraint firstItem="seC-df-23v" firstAttribute="leading" secondItem="7ea-Qm-foz" secondAttribute="trailing" constant="16" id="P06-Vu-1kd"/>
- <constraint firstItem="tgB-uU-6kM" firstAttribute="centerY" secondItem="db9-2d-F3M" secondAttribute="centerY" id="YD8-aN-xfs"/>
- <constraint firstItem="tuX-3Q-GTA" firstAttribute="leading" secondItem="90i-G5-Obo" secondAttribute="leading" id="a2J-c0-oPa"/>
- <constraint firstItem="Sv1-sW-vec" firstAttribute="top" secondItem="seC-df-23v" secondAttribute="top" constant="-2" id="eTJ-JW-hHz"/>
- <constraint firstItem="7ea-Qm-foz" firstAttribute="leading" secondItem="db9-2d-F3M" secondAttribute="trailing" constant="10" id="nmw-tw-kb0"/>
- <constraint firstAttribute="trailing" secondItem="tuX-3Q-GTA" secondAttribute="trailing" id="oAI-L4-BLW"/>
- <constraint firstAttribute="trailing" secondItem="seC-df-23v" secondAttribute="trailing" constant="15" id="oNq-qn-YEF"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="btnDelete" destination="Sv1-sW-vec" id="8t3-UL-zws"/>
- <outlet property="btnRulePlay" destination="seC-df-23v" id="HhC-e4-b4q"/>
- <outlet property="imgvStatus" destination="tgB-uU-6kM" id="1JF-PK-t84"/>
- <outlet property="imgvTrigger" destination="db9-2d-F3M" id="6f5-Vo-OUH"/>
- <outlet property="lblRuleName" destination="7ea-Qm-foz" id="BAv-b0-k9B"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="AddCellIdentifier" rowHeight="113" id="2Cp-uM-Hvw" customClass="RulesCreateTableViewCell">
- <rect key="frame" x="0.0" y="129" width="300" height="113"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="2Cp-uM-Hvw" id="oE6-vc-qee">
- <rect key="frame" x="0.0" y="0.0" width="300" height="112"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="iJ5-zY-1hI" userLabel="View - line">
- <rect key="frame" x="0.0" y="114" width="300" height="1"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="k4v-jx-8aa"/>
- </constraints>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="2fr-2O-Oqg" customClass="CustomLabelButton">
- <rect key="frame" x="100" y="17" width="100" height="77"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="79T-7d-vFO" customClass="CustomButton">
- <rect key="frame" x="25" y="0.0" width="50" height="50"/>
- <state key="normal" image="common_list_btn_big_add"/>
- <state key="highlighted" image="common_list_btn_big_add_press"/>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="252" verticalCompressionResistancePriority="749" placeholderIntrinsicWidth="200" placeholderIntrinsicHeight="40" text="규칙만들기" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="w2L-4J-1aD" customClass="CustomLabel">
- <rect key="frame" x="0.0" y="62" width="100" height="15"/>
- <constraints>
- <constraint firstAttribute="height" constant="15" id="e7C-Sa-7Z3"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="79T-7d-vFO" firstAttribute="width" secondItem="2fr-2O-Oqg" secondAttribute="width" constant="-50" id="8wh-19-1y4"/>
- <constraint firstAttribute="trailing" secondItem="79T-7d-vFO" secondAttribute="trailing" constant="25" id="FU9-5W-Zge"/>
- <constraint firstItem="79T-7d-vFO" firstAttribute="leading" secondItem="2fr-2O-Oqg" secondAttribute="leading" constant="25" id="Isg-3J-DZ7"/>
- <constraint firstItem="79T-7d-vFO" firstAttribute="top" secondItem="2fr-2O-Oqg" secondAttribute="top" id="JAL-md-YDF"/>
- <constraint firstAttribute="trailing" secondItem="w2L-4J-1aD" secondAttribute="trailing" id="K7O-it-w3S"/>
- <constraint firstAttribute="bottom" secondItem="w2L-4J-1aD" secondAttribute="bottom" id="NLR-Xh-XOw"/>
- <constraint firstItem="w2L-4J-1aD" firstAttribute="width" secondItem="2fr-2O-Oqg" secondAttribute="width" id="Nvq-61-aWs"/>
- <constraint firstItem="w2L-4J-1aD" firstAttribute="top" secondItem="79T-7d-vFO" secondAttribute="bottom" constant="12" id="O5y-ta-XZm"/>
- <constraint firstAttribute="height" constant="77" id="b4I-ev-uYE"/>
- <constraint firstAttribute="width" constant="100" id="hBS-Pn-8hi"/>
- <constraint firstItem="w2L-4J-1aD" firstAttribute="leading" secondItem="2fr-2O-Oqg" secondAttribute="leading" id="m0g-DR-ZmR"/>
- </constraints>
- <connections>
- <outlet property="btn" destination="79T-7d-vFO" id="xwV-GK-OIY"/>
- <outlet property="label" destination="w2L-4J-1aD" id="Ofh-Zm-4qo"/>
- </connections>
- </view>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="iJ5-zY-1hI" secondAttribute="trailing" id="Au7-v6-l0P"/>
- <constraint firstItem="2fr-2O-Oqg" firstAttribute="centerX" secondItem="oE6-vc-qee" secondAttribute="centerX" id="SRG-JR-a25"/>
- <constraint firstAttribute="bottom" secondItem="iJ5-zY-1hI" secondAttribute="bottom" constant="-3" id="eYo-WA-QYm"/>
- <constraint firstItem="2fr-2O-Oqg" firstAttribute="centerY" secondItem="oE6-vc-qee" secondAttribute="centerY" id="nz2-XW-NNX"/>
- <constraint firstItem="iJ5-zY-1hI" firstAttribute="leading" secondItem="oE6-vc-qee" secondAttribute="leading" id="qDm-68-K4c"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <connections>
- <outlet property="btnAdd" destination="2fr-2O-Oqg" id="lQL-W1-eLq"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="shadow_top" translatesAutoresizingMaskIntoConstraints="NO" id="pzq-Zx-Yfh">
- <rect key="frame" x="0.0" y="70" width="320" height="5"/>
- <constraints>
- <constraint firstAttribute="height" constant="5" id="cnN-4J-moT"/>
- </constraints>
- </imageView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="NbQ-kG-vPj" secondAttribute="trailing" constant="10" id="2I1-WJ-j9g"/>
- <constraint firstItem="pzq-Zx-Yfh" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="bottom" id="3eM-Kq-zgX"/>
- <constraint firstItem="NbQ-kG-vPj" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="bottom" constant="10" id="4sE-Pm-nET"/>
- <constraint firstItem="ygd-Rh-dSU" firstAttribute="top" secondItem="YQj-KO-tgi" secondAttribute="top" id="5SB-Gr-4Yq"/>
- <constraint firstAttribute="trailing" secondItem="SuE-qN-Zxf" secondAttribute="trailing" id="5Un-2h-CWc"/>
- <constraint firstItem="NbQ-kG-vPj" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" constant="10" id="Fur-yN-WZT"/>
- <constraint firstItem="SuE-qN-Zxf" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="bottom" id="Grt-N3-Vnn"/>
- <constraint firstAttribute="bottom" secondItem="SuE-qN-Zxf" secondAttribute="bottom" constant="54" id="Iux-3I-miJ"/>
- <constraint firstAttribute="bottom" secondItem="NbQ-kG-vPj" secondAttribute="bottom" constant="60" id="KbU-ky-DWz"/>
- <constraint firstAttribute="trailing" secondItem="ygd-Rh-dSU" secondAttribute="trailing" id="Kwe-L0-Kj7"/>
- <constraint firstItem="DZt-QG-oeT" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" id="LzN-DF-J5m"/>
- <constraint firstAttribute="trailing" secondItem="pzq-Zx-Yfh" secondAttribute="trailing" id="PKP-5U-c0w"/>
- <constraint firstItem="pzq-Zx-Yfh" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" id="ToB-Tb-0Oc"/>
- <constraint firstItem="SuE-qN-Zxf" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" id="b3N-9q-gUu"/>
- <constraint firstItem="DZt-QG-oeT" firstAttribute="top" secondItem="ygd-Rh-dSU" secondAttribute="bottom" id="nTE-j0-Ey1"/>
- <constraint firstAttribute="trailing" secondItem="DZt-QG-oeT" secondAttribute="trailing" id="yWP-J4-Ee5"/>
- <constraint firstAttribute="bottom" secondItem="DZt-QG-oeT" secondAttribute="bottom" id="zpV-bv-T5d"/>
- <constraint firstItem="ygd-Rh-dSU" firstAttribute="leading" secondItem="YQj-KO-tgi" secondAttribute="leading" id="zy9-aX-G1y"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="YQj-KO-tgi" firstAttribute="top" secondItem="afl-b3-IkG" secondAttribute="bottom" constant="-20" id="03g-JW-Dfm"/>
- <constraint firstItem="9p7-je-Jaa" firstAttribute="top" secondItem="YQj-KO-tgi" secondAttribute="bottom" id="b2x-N5-zYT"/>
- <constraint firstItem="YQj-KO-tgi" firstAttribute="leading" secondItem="HPB-AH-DVL" secondAttribute="leading" id="kOY-kR-Ban"/>
- <constraint firstAttribute="trailing" secondItem="YQj-KO-tgi" secondAttribute="trailing" id="ufI-Cc-kZp"/>
- </constraints>
- </view>
- <simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/>
- <connections>
- <outlet property="addHubContainerView" destination="SuE-qN-Zxf" id="E0N-vF-FTz"/>
- <outlet property="btnOption" destination="aJ9-Hk-5c5" id="Xj3-MJ-DvL"/>
- <outlet property="constraintEditModeRight" destination="y3y-iA-PYS" id="xWR-nr-YK2"/>
- <outlet property="editModeView" destination="RMy-CQ-HrY" id="Xen-ez-uOn"/>
- <outlet property="imgvConnectHub" destination="qNd-pD-pAH" id="iwC-0h-7eI"/>
- <outlet property="imgvHubAlert" destination="VSa-vi-pp7" id="Qm2-V9-pfo"/>
- <outlet property="lblConnectHub" destination="Nom-X5-uCS" id="iFz-rT-NuN"/>
- <outlet property="lblLeaveAccount" destination="z3j-ME-Reg" id="5kr-Gp-Gee"/>
- <outlet property="lblSimpleMemberInfo" destination="vp3-ys-dK4" id="bbx-LI-Qlt"/>
- <outlet property="lblTitle" destination="8qJ-di-EOx" id="JuH-cq-bix"/>
- <outlet property="mainView" destination="YQj-KO-tgi" id="tMl-oJ-49n"/>
- <outlet property="tableView" destination="NbQ-kG-vPj" id="7JF-pV-zEJ"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="pMN-V0-Ctb" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1693" y="143"/>
- </scene>
- <!--Rules Add View Controller-->
- <scene sceneID="uNj-hP-VUN">
- <objects>
- <viewController storyboardIdentifier="RulesAddViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="Xxr-u0-LpV" customClass="RulesAddViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="OHT-Kl-dHo"/>
- <viewControllerLayoutGuide type="bottom" id="kA2-Ra-8eg"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="7rI-pA-FfB" userLabel="View - Main">
- <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="ikn-Sw-KkY" userLabel="View - header">
- <rect key="frame" x="0.0" y="0.0" width="320" height="75"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="규칙 만들기" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TNG-uD-yCt" customClass="CustomLabel">
- <rect key="frame" x="18" y="20" width="200" height="55"/>
- <constraints>
- <constraint firstAttribute="width" constant="200" id="pdZ-sq-6Lr"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="19"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="rh1-Bc-zcY" userLabel="View - line">
- <rect key="frame" x="0.0" y="74" width="320" height="1"/>
- <color key="backgroundColor" red="0.86666666670000003" green="0.86666666670000003" blue="0.86666666670000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="OJn-Fo-rZ4"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" red="0.96078431369999995" green="0.96078431369999995" blue="0.96078431369999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="rh1-Bc-zcY" firstAttribute="leading" secondItem="ikn-Sw-KkY" secondAttribute="leading" id="2V2-n0-Ecm"/>
- <constraint firstAttribute="bottom" secondItem="TNG-uD-yCt" secondAttribute="bottom" id="OT9-4x-rIf"/>
- <constraint firstAttribute="bottom" secondItem="rh1-Bc-zcY" secondAttribute="bottom" id="U5x-ox-4Js"/>
- <constraint firstItem="TNG-uD-yCt" firstAttribute="leading" secondItem="ikn-Sw-KkY" secondAttribute="leading" constant="18" id="aKa-qe-E1r"/>
- <constraint firstAttribute="height" constant="75" id="bgT-v0-WBE"/>
- <constraint firstAttribute="trailing" secondItem="rh1-Bc-zcY" secondAttribute="trailing" id="r5l-6K-D1r"/>
- <constraint firstItem="TNG-uD-yCt" firstAttribute="top" secondItem="ikn-Sw-KkY" secondAttribute="top" constant="20" id="tkh-tS-dCR"/>
- </constraints>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="gRt-p6-Seb" customClass="CustomTableView">
- <rect key="frame" x="0.0" y="75" width="320" height="441"/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="TitleCellIdentifier" rowHeight="68" id="npa-uF-Yf4" customClass="RulesAddTitleTableViewCell">
- <rect key="frame" x="0.0" y="56" width="320" height="68"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="npa-uF-Yf4" id="w8Q-3D-60g">
- <rect key="frame" x="0.0" y="0.0" width="320" height="67"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="규칙 이름" textAlignment="natural" minimumFontSize="17" background="img_input_round_bg_default" translatesAutoresizingMaskIntoConstraints="NO" id="tfb-JT-ICa" customClass="CustomTextField">
- <rect key="frame" x="15" y="18" width="290" height="32"/>
- <constraints>
- <constraint firstAttribute="height" constant="32" id="4Oa-8M-y1Y"/>
- </constraints>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <textInputTraits key="textInputTraits"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="4Oa-8M-y1Y"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="4Oa-8M-y1Y"/>
- </mask>
- </variation>
- </textField>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="tfb-JT-ICa" secondAttribute="trailing" constant="15" id="Bsx-J1-wvg"/>
- <constraint firstItem="tfb-JT-ICa" firstAttribute="leading" secondItem="w8Q-3D-60g" secondAttribute="leading" constant="15" id="Cdy-04-lLE"/>
- <constraint firstItem="tfb-JT-ICa" firstAttribute="top" secondItem="w8Q-3D-60g" secondAttribute="top" constant="18" id="EH3-G5-yWJ"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Bsx-J1-wvg"/>
- <exclude reference="Cdy-04-lLE"/>
- <exclude reference="EH3-G5-yWJ"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Bsx-J1-wvg"/>
- <include reference="Cdy-04-lLE"/>
- <include reference="EH3-G5-yWJ"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <connections>
- <outlet property="txtRuleTitle" destination="tfb-JT-ICa" id="xc8-Wy-4fc"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HeaderCellIdentifier" rowHeight="75" id="GQf-8g-8Yg" customClass="RulesAddHeaderTableViewCell">
- <rect key="frame" x="0.0" y="124" width="320" height="75"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="GQf-8g-8Yg" id="FQR-fe-9TV">
- <rect key="frame" x="0.0" y="0.0" width="320" height="74"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Ln5-68-n43" customClass="CustomLabel">
- <rect key="frame" x="27" y="36" width="233" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="igT-ZT-4kv">
- <variation key="heightClass=regular-widthClass=compact" constant="21"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9Sa-Dt-tkE" customClass="CustomButton">
- <rect key="frame" x="278" y="33" width="27" height="27"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="3cH-PJ-Sg2">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstAttribute="width" constant="30" id="y3Q-si-4c1">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <state key="normal" image="common_list_btn_add"/>
- <state key="highlighted" image="common_list_btn_add_press"/>
- </button>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" fixedFrame="YES" image="common_bullet_line" translatesAutoresizingMaskIntoConstraints="NO" id="Jnc-0F-9cq">
- <rect key="frame" x="0.0" y="46" width="15" height="2"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="Ln5-68-n43" firstAttribute="leading" secondItem="FQR-fe-9TV" secondAttribute="leading" constant="30" id="Diz-oM-Zro">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstItem="9Sa-Dt-tkE" firstAttribute="centerY" secondItem="Ln5-68-n43" secondAttribute="centerY" id="Ss7-7O-8UI"/>
- <constraint firstItem="9Sa-Dt-tkE" firstAttribute="leading" secondItem="Ln5-68-n43" secondAttribute="trailing" constant="20" id="eAW-im-2sw">
- <variation key="heightClass=regular-widthClass=compact" constant="18"/>
- </constraint>
- <constraint firstItem="Ln5-68-n43" firstAttribute="top" secondItem="FQR-fe-9TV" secondAttribute="top" constant="40" id="gfq-h6-DeJ">
- <variation key="heightClass=regular-widthClass=compact" constant="36"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="9Sa-Dt-tkE" secondAttribute="trailing" constant="15" id="qON-ku-S45"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Jnc-0F-9cq"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Jnc-0F-9cq"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <connections>
- <outlet property="btnAdd" destination="9Sa-Dt-tkE" id="yXK-fM-DRV"/>
- <outlet property="lblTitle" destination="Ln5-68-n43" id="BXM-3u-Prg"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="RulesCellIdentifier" rowHeight="86" id="vaP-ac-Z9g" userLabel="RulesCellIdentifier" customClass="RulesAddTableViewCell">
- <rect key="frame" x="0.0" y="199" width="320" height="86"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vaP-ac-Z9g" id="xBd-u0-d5d">
- <rect key="frame" x="0.0" y="0.0" width="320" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="PIZ-lz-V96" userLabel="View - Line">
- <rect key="frame" x="0.0" y="85" width="320" height="1"/>
- <color key="backgroundColor" red="0.8666666666666667" green="0.8666666666666667" blue="0.8666666666666667" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="vRm-gw-rTh"/>
- </constraints>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="3zg-pw-q4D" customClass="CustomImageView">
- <rect key="frame" x="15" y="18" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="width" constant="55" id="Mq8-dv-Nvk">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- <constraint firstAttribute="height" constant="55" id="nn9-po-qGt">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OXK-Ie-wzS" customClass="CustomLabel">
- <rect key="frame" x="70" y="22" width="125" height="23"/>
- <constraints>
- <constraint firstAttribute="height" constant="20" id="xrh-8B-Eu9">
- <variation key="heightClass=regular-widthClass=compact" constant="23"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="19"/>
- <color key="textColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="LMX-xu-R2G" customClass="CustomLabel">
- <rect key="frame" x="70" y="53" width="199" height="15"/>
- <constraints>
- <constraint firstAttribute="height" constant="15" id="6fK-YN-Br5"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="7ro-0f-hvl" customClass="CustomButton">
- <rect key="frame" x="277" y="29" width="27" height="27"/>
- <constraints>
- <constraint firstAttribute="width" constant="30" id="Fzc-yQ-WSg">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstAttribute="height" constant="30" id="xK6-oW-gxe">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <state key="normal" image="common_list_btn_delete"/>
- <state key="highlighted" image="common_list_btn_delete_press"/>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="70" placeholderIntrinsicHeight="15" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="fQT-4G-8XX" customClass="CustomLabel">
- <rect key="frame" x="199" y="35" width="70" height="15"/>
- <constraints>
- <constraint firstAttribute="height" constant="15" id="n6h-mf-PcC"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="3zg-pw-q4D" firstAttribute="leading" secondItem="xBd-u0-d5d" secondAttribute="leading" constant="15" id="161-Jb-7Ub"/>
- <constraint firstItem="3zg-pw-q4D" firstAttribute="top" secondItem="xBd-u0-d5d" secondAttribute="top" constant="20" id="6f3-gu-W4p">
- <variation key="heightClass=regular-widthClass=compact" constant="18"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="PIZ-lz-V96" secondAttribute="trailing" id="APm-wz-cGL"/>
- <constraint firstItem="7ro-0f-hvl" firstAttribute="leading" secondItem="fQT-4G-8XX" secondAttribute="trailing" constant="8" id="GJY-Ln-glJ"/>
- <constraint firstAttribute="bottom" secondItem="PIZ-lz-V96" secondAttribute="bottom" constant="-1" id="UNU-hw-PkG">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="LMX-xu-R2G" firstAttribute="leading" secondItem="3zg-pw-q4D" secondAttribute="trailing" constant="5" id="UvZ-T2-Qg0"/>
- <constraint firstItem="LMX-xu-R2G" firstAttribute="leading" secondItem="OXK-Ie-wzS" secondAttribute="leading" id="WLi-dh-USa"/>
- <constraint firstItem="PIZ-lz-V96" firstAttribute="leading" secondItem="xBd-u0-d5d" secondAttribute="leading" id="aGG-4J-qyV"/>
- <constraint firstItem="LMX-xu-R2G" firstAttribute="top" secondItem="OXK-Ie-wzS" secondAttribute="bottom" constant="6" id="e3d-is-XTR">
- <variation key="heightClass=regular-widthClass=compact" constant="8"/>
- </constraint>
- <constraint firstItem="7ro-0f-hvl" firstAttribute="top" secondItem="xBd-u0-d5d" secondAttribute="top" constant="33" id="fEI-yM-AIO">
- <variation key="heightClass=regular-widthClass=compact" constant="29"/>
- </constraint>
- <constraint firstItem="fQT-4G-8XX" firstAttribute="leading" secondItem="OXK-Ie-wzS" secondAttribute="trailing" id="fQX-vI-qhb">
- <variation key="heightClass=regular-widthClass=compact" constant="4"/>
- </constraint>
- <constraint firstItem="OXK-Ie-wzS" firstAttribute="top" secondItem="xBd-u0-d5d" secondAttribute="top" constant="25" id="g9h-eV-w7Z">
- <variation key="heightClass=regular-widthClass=compact" constant="22"/>
- </constraint>
- <constraint firstItem="LMX-xu-R2G" firstAttribute="trailing" secondItem="fQT-4G-8XX" secondAttribute="trailing" id="lId-jc-43T"/>
- <constraint firstItem="fQT-4G-8XX" firstAttribute="centerY" secondItem="7ro-0f-hvl" secondAttribute="centerY" id="mRy-xD-1e9">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="7ro-0f-hvl" secondAttribute="trailing" constant="15" id="pQ8-03-Kyl">
- <variation key="heightClass=regular-widthClass=compact" constant="16"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="lId-jc-43T"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="lId-jc-43T"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <connections>
- <outlet property="bottomLine" destination="PIZ-lz-V96" id="uWN-cl-mE2"/>
- <outlet property="btnDelete" destination="7ro-0f-hvl" id="GWY-X7-gBd"/>
- <outlet property="imgvIcon" destination="3zg-pw-q4D" id="CdU-1K-Q2G"/>
- <outlet property="lblCondition" destination="fQT-4G-8XX" id="6qo-9B-Vbt"/>
- <outlet property="lblItem" destination="OXK-Ie-wzS" id="DIb-MK-1iA"/>
- <outlet property="lblSubItem" destination="LMX-xu-R2G" id="WDS-0w-aKW"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PushCellIdentifier" rowHeight="115" id="Lbj-lg-J0v" customClass="RulesAddPushTableViewCell">
- <rect key="frame" x="0.0" y="285" width="320" height="115"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Lbj-lg-J0v" id="rdC-rT-4Pb">
- <rect key="frame" x="0.0" y="0.0" width="320" height="114"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8kU-1a-nse" customClass="CustomButton">
- <rect key="frame" x="278" y="37" width="27" height="27"/>
- <constraints>
- <constraint firstAttribute="width" constant="30" id="Lf6-Hf-bbl">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstAttribute="height" constant="30" id="a1D-ft-K9B">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <state key="normal" image="common_list_btn_delete"/>
- <state key="highlighted" image="common_list_btn_delete_press"/>
- </button>
- <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" textAlignment="natural" translatesAutoresizingMaskIntoConstraints="NO" id="ohM-Wb-CBO" customClass="CustomTextView">
- <rect key="frame" x="15" y="0.0" width="251" height="100"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="100" id="rFh-Jh-1mq"/>
- </constraints>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="string" keyPath="bgImageName" value="img_input_round_bg_default"/>
- <userDefinedRuntimeAttribute type="string" keyPath="bgPressImageName" value="img_input_round_bg_active"/>
- <userDefinedRuntimeAttribute type="rect" keyPath="rectForCapBackground">
- <rect key="value" x="15" y="15" width="15" height="15"/>
- </userDefinedRuntimeAttribute>
- <userDefinedRuntimeAttribute type="color" keyPath="placeHolderColor">
- <color key="value" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </userDefinedRuntimeAttribute>
- <userDefinedRuntimeAttribute type="string" keyPath="placeHolder" value="최대 120자"/>
- <userDefinedRuntimeAttribute type="boolean" keyPath="autoScrollUp" value="YES"/>
- </userDefinedRuntimeAttributes>
- </textView>
- </subviews>
- <constraints>
- <constraint firstItem="8kU-1a-nse" firstAttribute="top" secondItem="rdC-rT-4Pb" secondAttribute="top" constant="35" id="22i-Qg-aww">
- <variation key="heightClass=regular-widthClass=compact" constant="37"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="8kU-1a-nse" secondAttribute="trailing" constant="15" id="33Q-fx-qdc"/>
- <constraint firstItem="ohM-Wb-CBO" firstAttribute="top" secondItem="rdC-rT-4Pb" secondAttribute="top" id="5I5-SX-t6o"/>
- <constraint firstItem="ohM-Wb-CBO" firstAttribute="leading" secondItem="rdC-rT-4Pb" secondAttribute="leading" constant="15" id="hLQ-5t-scZ"/>
- <constraint firstItem="8kU-1a-nse" firstAttribute="leading" secondItem="ohM-Wb-CBO" secondAttribute="trailing" constant="15" id="vFN-Eu-JCu">
- <variation key="heightClass=regular-widthClass=compact" constant="12"/>
- </constraint>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="btnDelete" destination="8kU-1a-nse" id="Nhf-PT-gIl"/>
- <outlet property="txvMessage" destination="ohM-Wb-CBO" id="w0f-Nf-AZ8"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionHeaderCellIdentifier" rowHeight="81" id="etR-vE-hXf" userLabel="ConditionHeaderCellIdentifier" customClass="RulesAddConditionHeaderTableViewCell">
- <rect key="frame" x="0.0" y="400" width="320" height="81"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="etR-vE-hXf" id="Crb-BW-Ktg">
- <rect key="frame" x="0.0" y="0.0" width="320" height="80"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3qI-MV-edD" userLabel="View - Line">
- <rect key="frame" x="100" y="49" width="160" height="1"/>
- <color key="backgroundColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="owz-T7-dNL"/>
- </constraints>
- </view>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="80" placeholderIntrinsicHeight="27" text="● 추가조건" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Gsc-xL-bdC" customClass="CustomLabel">
- <rect key="frame" x="15" y="36" width="80" height="27"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="HLu-H2-Jxm">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="25" placeholderIntrinsicHeight="25" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="YJ8-U6-FqH" userLabel="Button-chk" customClass="CustomCheckBox">
- <rect key="frame" x="278" y="36" width="27" height="27"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="Gjl-NR-8hj">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstAttribute="width" constant="30" id="Yq0-YJ-huQ">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <state key="normal" image="common_checkbox_default">
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <state key="highlighted" image="common_checkbox_checked"/>
- </button>
- </subviews>
- <constraints>
- <constraint firstItem="3qI-MV-edD" firstAttribute="centerY" secondItem="YJ8-U6-FqH" secondAttribute="centerY" id="38y-aN-UZq"/>
- <constraint firstAttribute="trailing" secondItem="3qI-MV-edD" secondAttribute="trailing" constant="60" id="ArJ-zC-Dc6"/>
- <constraint firstAttribute="trailing" secondItem="YJ8-U6-FqH" secondAttribute="trailing" constant="15" id="M5d-vA-EBW">
- <variation key="heightClass=regular-widthClass=compact" constant="15"/>
- </constraint>
- <constraint firstItem="YJ8-U6-FqH" firstAttribute="top" secondItem="Crb-BW-Ktg" secondAttribute="top" constant="40" id="S3T-8l-sQM">
- <variation key="heightClass=regular-widthClass=compact" constant="36"/>
- </constraint>
- <constraint firstItem="3qI-MV-edD" firstAttribute="leading" secondItem="Gsc-xL-bdC" secondAttribute="trailing" constant="5" id="Vmr-Mk-Zm6"/>
- <constraint firstItem="YJ8-U6-FqH" firstAttribute="leading" secondItem="3qI-MV-edD" secondAttribute="trailing" constant="45" id="c9P-fe-dez">
- <variation key="heightClass=regular-widthClass=compact" constant="18"/>
- </constraint>
- <constraint firstItem="Gsc-xL-bdC" firstAttribute="top" secondItem="Crb-BW-Ktg" secondAttribute="top" constant="40" id="czV-3H-N8i">
- <variation key="heightClass=regular-widthClass=compact" constant="36"/>
- </constraint>
- <constraint firstItem="Gsc-xL-bdC" firstAttribute="leading" secondItem="Crb-BW-Ktg" secondAttribute="leading" constant="15" id="o9S-NO-Zza"/>
- <constraint firstItem="YJ8-U6-FqH" firstAttribute="leading" secondItem="Gsc-xL-bdC" secondAttribute="trailing" constant="20" id="yt9-uK-Tsd">
- <variation key="heightClass=regular-widthClass=compact" constant="183"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="3qI-MV-edD"/>
- </mask>
- <mask key="constraints">
- <exclude reference="38y-aN-UZq"/>
- <exclude reference="ArJ-zC-Dc6"/>
- <exclude reference="Vmr-Mk-Zm6"/>
- <exclude reference="c9P-fe-dez"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="3qI-MV-edD"/>
- </mask>
- <mask key="constraints">
- <include reference="38y-aN-UZq"/>
- <include reference="ArJ-zC-Dc6"/>
- <include reference="Vmr-Mk-Zm6"/>
- <exclude reference="c9P-fe-dez"/>
- <exclude reference="yt9-uK-Tsd"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="chkConditions" destination="YJ8-U6-FqH" id="nOG-4g-SF8"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionCellIdentifier" rowHeight="255" id="EfN-Wc-PbR" customClass="RulesAddConditionTableViewCell">
- <rect key="frame" x="0.0" y="481" width="320" height="255"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EfN-Wc-PbR" id="fkq-bd-sDg">
- <rect key="frame" x="0.0" y="0.0" width="320" height="254"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="qdX-eK-XYC" userLabel="View - child view container">
- <rect key="frame" x="0.0" y="0.0" width="320" height="255"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="255" id="YAv-YH-d6G"/>
- </constraints>
- </view>
- </subviews>
- <constraints>
- <constraint firstItem="qdX-eK-XYC" firstAttribute="top" secondItem="fkq-bd-sDg" secondAttribute="top" id="FaK-RA-Wlo"/>
- <constraint firstItem="qdX-eK-XYC" firstAttribute="leading" secondItem="fkq-bd-sDg" secondAttribute="leading" id="RFP-We-PSC"/>
- <constraint firstAttribute="trailing" secondItem="qdX-eK-XYC" secondAttribute="trailing" id="eoD-LQ-pHK"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="constraintContainerHeight" destination="YAv-YH-d6G" id="c6K-Hs-IQD"/>
- <outlet property="container" destination="qdX-eK-XYC" id="fVA-sf-zsd"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="FooterCellIdentifier" rowHeight="15" id="51C-7z-DOS" customClass="RulesAddFooterTableViewCell">
- <rect key="frame" x="0.0" y="736" width="320" height="15"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="51C-7z-DOS" id="xfZ-9V-Zbc">
- <rect key="frame" x="0.0" y="0.0" width="320" height="14"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="bw8-pC-LMV" userLabel="View - Line">
- <rect key="frame" x="0.0" y="0.0" width="320" height="1"/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" relation="greaterThanOrEqual" constant="1" id="C1q-y6-Jyw"/>
- <constraint firstAttribute="height" constant="1" id="uIb-O2-TaS"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="bw8-pC-LMV" secondAttribute="trailing" id="RnM-Iy-PvG"/>
- <constraint firstItem="bw8-pC-LMV" firstAttribute="top" secondItem="xfZ-9V-Zbc" secondAttribute="top" id="pDi-jC-8td"/>
- <constraint firstItem="bw8-pC-LMV" firstAttribute="leading" secondItem="xfZ-9V-Zbc" secondAttribute="leading" id="ywy-we-fjg"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </tableViewCell>
- </prototypes>
- </tableView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Ui2-ff-Teq" userLabel="View - actionTab">
- <rect key="frame" x="0.0" y="516" width="320" height="52"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="dJO-5a-BHI" customClass="CustomButton">
- <rect key="frame" x="0.0" y="1" width="160" height="51"/>
- <color key="backgroundColor" red="0.94509803920000002" green="0.94509803920000002" blue="0.94509803920000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="51" id="EpC-X1-t4F"/>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" id="jIf-uD-BhQ"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <state key="normal" title="완료">
- <color key="titleColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="btnConfirmTouched:" destination="Xxr-u0-LpV" eventType="touchUpInside" id="Ua8-30-NDd"/>
- </connections>
- </button>
- <button opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="249" placeholderIntrinsicWidth="160" placeholderIntrinsicHeight="70" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OQN-Np-6Ah" customClass="CustomButton">
- <rect key="frame" x="161" y="1" width="159" height="51"/>
- <color key="backgroundColor" red="0.94509803920000002" green="0.94509803920000002" blue="0.94509803920000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <state key="normal" title="취소">
- <color key="titleColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="btnCancelTouched:" destination="Xxr-u0-LpV" eventType="touchUpInside" id="Pe7-aT-SZ7"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" red="0.73333333329999995" green="0.73333333329999995" blue="0.73333333329999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="OQN-Np-6Ah" firstAttribute="leading" secondItem="dJO-5a-BHI" secondAttribute="trailing" constant="1" id="7el-q6-zB7"/>
- <constraint firstItem="dJO-5a-BHI" firstAttribute="height" secondItem="OQN-Np-6Ah" secondAttribute="height" id="Wwr-AV-kA7"/>
- <constraint firstAttribute="height" constant="52" id="Zbw-fO-R4u"/>
- <constraint firstItem="dJO-5a-BHI" firstAttribute="leading" secondItem="Ui2-ff-Teq" secondAttribute="leading" id="d0T-LD-ZS6"/>
- <constraint firstItem="OQN-Np-6Ah" firstAttribute="top" secondItem="dJO-5a-BHI" secondAttribute="top" id="h4E-aF-qOK"/>
- <constraint firstItem="dJO-5a-BHI" firstAttribute="top" secondItem="Ui2-ff-Teq" secondAttribute="top" constant="1" id="hAj-J1-IBG"/>
- <constraint firstAttribute="trailing" secondItem="OQN-Np-6Ah" secondAttribute="trailing" id="kj8-jC-53v"/>
- <constraint firstItem="dJO-5a-BHI" firstAttribute="width" secondItem="OQN-Np-6Ah" secondAttribute="width" constant="1" id="sXm-9p-gsn"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="Ui2-ff-Teq" secondAttribute="trailing" id="BBY-jB-RQg"/>
- <constraint firstItem="ikn-Sw-KkY" firstAttribute="leading" secondItem="7rI-pA-FfB" secondAttribute="leading" id="G1A-lD-KOW"/>
- <constraint firstItem="Ui2-ff-Teq" firstAttribute="top" secondItem="gRt-p6-Seb" secondAttribute="bottom" id="TrG-2L-spj"/>
- <constraint firstItem="gRt-p6-Seb" firstAttribute="leading" secondItem="7rI-pA-FfB" secondAttribute="leading" id="VWH-QG-k6Y"/>
- <constraint firstItem="Ui2-ff-Teq" firstAttribute="leading" secondItem="7rI-pA-FfB" secondAttribute="leading" id="bzM-gU-4lY"/>
- <constraint firstItem="gRt-p6-Seb" firstAttribute="top" secondItem="ikn-Sw-KkY" secondAttribute="bottom" id="duN-UX-6ko"/>
- <constraint firstAttribute="bottom" secondItem="Ui2-ff-Teq" secondAttribute="bottom" id="mbJ-2G-cr6"/>
- <constraint firstAttribute="trailing" secondItem="ikn-Sw-KkY" secondAttribute="trailing" id="oI0-GG-SfD"/>
- <constraint firstItem="ikn-Sw-KkY" firstAttribute="top" secondItem="7rI-pA-FfB" secondAttribute="top" id="wrr-aR-Tdo"/>
- <constraint firstAttribute="trailing" secondItem="gRt-p6-Seb" secondAttribute="trailing" id="yxf-jd-tbY"/>
- </constraints>
- </view>
- <simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/>
- <connections>
- <outlet property="lblTitle" destination="TNG-uD-yCt" id="Efn-vC-f0I"/>
- <outlet property="tableView" destination="gRt-p6-Seb" id="Zg0-JE-30Q"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="PO5-JJ-G6r" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-72" y="143.25"/>
- </scene>
- <!--Rules Condition View Controller-->
- <scene sceneID="J0D-3b-YUl">
- <objects>
- <viewController storyboardIdentifier="RulesConditionViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="x54-WZ-7lk" customClass="RulesConditionViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="SqT-3R-5K8"/>
- <viewControllerLayoutGuide type="bottom" id="1Wf-vo-AU5"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="Ci7-3A-k16" userLabel="View - Main">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="Sly-Wf-8hY" customClass="CustomTableView">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HeaderCellIdentifier" rowHeight="63" id="BA9-cN-Har" customClass="RulesConditionHeaderTableViewCell">
- <rect key="frame" x="0.0" y="56" width="320" height="63"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="BA9-cN-Har" id="xER-Jf-YWh">
- <rect key="frame" x="0.0" y="0.0" width="320" height="62"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="225" placeholderIntrinsicHeight="21" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3zf-7v-a96" customClass="CustomLabel">
- <rect key="frame" x="28" y="21" width="225" height="21"/>
- <constraints>
- <constraint firstAttribute="width" constant="225" id="d0E-nO-coB"/>
- <constraint firstAttribute="height" constant="30" id="jeO-Ik-POv">
- <variation key="heightClass=regular-widthClass=compact" constant="21"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="d0E-nO-coB"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="d0E-nO-coB"/>
- </mask>
- </variation>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="NPw-GN-2x9" customClass="CustomButton">
- <rect key="frame" x="278" y="19" width="27" height="27"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="TTk-YE-VrU">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstAttribute="width" constant="30" id="VWw-dc-WCE">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" image="common_list_btn_add"/>
- <state key="highlighted" image="common_list_btn_add_press"/>
- </button>
- </subviews>
- <constraints>
- <constraint firstItem="3zf-7v-a96" firstAttribute="leading" secondItem="xER-Jf-YWh" secondAttribute="leading" constant="28" id="5hD-eM-ZkA"/>
- <constraint firstAttribute="bottom" secondItem="NPw-GN-2x9" secondAttribute="bottom" constant="17" id="FUt-Xt-SH6"/>
- <constraint firstItem="NPw-GN-2x9" firstAttribute="centerY" secondItem="3zf-7v-a96" secondAttribute="centerY" id="Lua-7T-wRf">
- <variation key="heightClass=regular-widthClass=compact" constant="1"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="NPw-GN-2x9" secondAttribute="trailing" constant="15" id="ZoZ-zu-0ZY"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="FUt-Xt-SH6"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="FUt-Xt-SH6"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="btnAdd" destination="NPw-GN-2x9" id="PTh-rU-feg"/>
- <outlet property="lblTitle" destination="3zf-7v-a96" id="csr-s2-qGg"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="DeviceCellIdentifier" rowHeight="86" id="RDr-Nm-I34" customClass="RulesConditionDeviceTableViewCell">
- <rect key="frame" x="0.0" y="119" width="320" height="86"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RDr-Nm-I34" id="agj-A3-Qct">
- <rect key="frame" x="0.0" y="0.0" width="320" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="mZH-3V-tyO">
- <rect key="frame" x="10" y="0.0" width="300" height="86"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="r08-CZ-UDi" userLabel="View - Line">
- <rect key="frame" x="0.0" y="85" width="300" height="1"/>
- <color key="backgroundColor" red="0.86666666670000003" green="0.86666666670000003" blue="0.86666666670000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="lru-BN-113"/>
- </constraints>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="tiA-Fj-J7C" customClass="CustomImageView">
- <rect key="frame" x="8" y="18" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="width" constant="55" id="9qL-iA-Clw">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- <constraint firstAttribute="height" constant="55" id="edR-Mq-nyv">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="125" placeholderIntrinsicHeight="23" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="roB-B7-xoe" customClass="CustomLabel">
- <rect key="frame" x="63" y="22" width="125" height="23"/>
- <constraints>
- <constraint firstAttribute="height" constant="20" id="8Ms-hH-1DL">
- <variation key="heightClass=regular-widthClass=compact" constant="23"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="19"/>
- <color key="textColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="194" placeholderIntrinsicHeight="15" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RRW-yk-46O" customClass="CustomLabel">
- <rect key="frame" x="63" y="53" width="194" height="15"/>
- <constraints>
- <constraint firstAttribute="height" constant="15" id="Kut-17-BLp"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="8u0-0Q-Nf0" customClass="CustomButton">
- <rect key="frame" x="265" y="29" width="27" height="27"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="irY-XG-0WF">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstAttribute="width" constant="30" id="wkD-Du-7pv">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <state key="normal" image="common_list_btn_delete"/>
- <state key="highlighted" image="common_list_btn_delete_press"/>
- </button>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="70" placeholderIntrinsicHeight="15" text="Label" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2P0-eF-dg6" customClass="CustomLabel">
- <rect key="frame" x="192" y="35" width="70" height="15"/>
- <constraints>
- <constraint firstAttribute="height" constant="15" id="UAK-Af-hWF"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="r08-CZ-UDi" secondAttribute="trailing" id="2fN-LB-oDZ"/>
- <constraint firstItem="roB-B7-xoe" firstAttribute="leading" secondItem="tiA-Fj-J7C" secondAttribute="trailing" constant="5" id="6Iy-jR-09Q"/>
- <constraint firstItem="RRW-yk-46O" firstAttribute="top" secondItem="roB-B7-xoe" secondAttribute="bottom" constant="8" id="9AE-N3-NaN"/>
- <constraint firstAttribute="bottom" secondItem="r08-CZ-UDi" secondAttribute="bottom" id="Blh-k3-Ao0"/>
- <constraint firstItem="2P0-eF-dg6" firstAttribute="centerY" secondItem="8u0-0Q-Nf0" secondAttribute="centerY" id="DKQ-1e-OVK"/>
- <constraint firstItem="tiA-Fj-J7C" firstAttribute="leading" secondItem="mZH-3V-tyO" secondAttribute="leading" constant="8" id="Jlp-Ao-QvF"/>
- <constraint firstAttribute="trailing" secondItem="2P0-eF-dg6" secondAttribute="trailing" constant="38" id="Kjx-vl-CRR"/>
- <constraint firstItem="8u0-0Q-Nf0" firstAttribute="top" secondItem="mZH-3V-tyO" secondAttribute="top" constant="29" id="Ta4-jZ-BQN"/>
- <constraint firstItem="r08-CZ-UDi" firstAttribute="leading" secondItem="mZH-3V-tyO" secondAttribute="leading" id="ZHm-x0-2ht"/>
- <constraint firstAttribute="trailing" secondItem="8u0-0Q-Nf0" secondAttribute="trailing" constant="8" id="gDa-Bo-gKr"/>
- <constraint firstItem="roB-B7-xoe" firstAttribute="top" secondItem="mZH-3V-tyO" secondAttribute="top" constant="22" id="kON-CB-ipA"/>
- <constraint firstItem="RRW-yk-46O" firstAttribute="leading" secondItem="roB-B7-xoe" secondAttribute="leading" id="o2Z-Wg-bXs"/>
- <constraint firstItem="tiA-Fj-J7C" firstAttribute="top" secondItem="mZH-3V-tyO" secondAttribute="top" constant="18" id="v3c-Hb-Il5"/>
- <constraint firstItem="RRW-yk-46O" firstAttribute="trailing" secondItem="2P0-eF-dg6" secondAttribute="trailing" id="ymO-7K-KZM">
- <variation key="heightClass=regular-widthClass=compact" constant="-5"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Jlp-Ao-QvF"/>
- <exclude reference="v3c-Hb-Il5"/>
- <exclude reference="6Iy-jR-09Q"/>
- <exclude reference="kON-CB-ipA"/>
- <exclude reference="9AE-N3-NaN"/>
- <exclude reference="o2Z-Wg-bXs"/>
- <exclude reference="ymO-7K-KZM"/>
- <exclude reference="2fN-LB-oDZ"/>
- <exclude reference="Blh-k3-Ao0"/>
- <exclude reference="ZHm-x0-2ht"/>
- <exclude reference="DKQ-1e-OVK"/>
- <exclude reference="Kjx-vl-CRR"/>
- <exclude reference="Ta4-jZ-BQN"/>
- <exclude reference="gDa-Bo-gKr"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Jlp-Ao-QvF"/>
- <include reference="v3c-Hb-Il5"/>
- <include reference="6Iy-jR-09Q"/>
- <include reference="kON-CB-ipA"/>
- <include reference="9AE-N3-NaN"/>
- <include reference="o2Z-Wg-bXs"/>
- <include reference="ymO-7K-KZM"/>
- <include reference="2fN-LB-oDZ"/>
- <include reference="Blh-k3-Ao0"/>
- <include reference="ZHm-x0-2ht"/>
- <include reference="DKQ-1e-OVK"/>
- <include reference="Kjx-vl-CRR"/>
- <include reference="Ta4-jZ-BQN"/>
- <include reference="gDa-Bo-gKr"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <constraints>
- <constraint firstItem="mZH-3V-tyO" firstAttribute="top" secondItem="agj-A3-Qct" secondAttribute="top" id="Ao4-ps-djr"/>
- <constraint firstAttribute="bottom" secondItem="mZH-3V-tyO" secondAttribute="bottom" id="Eyb-1i-gbZ"/>
- <constraint firstItem="mZH-3V-tyO" firstAttribute="leading" secondItem="agj-A3-Qct" secondAttribute="leading" constant="10" id="Quf-qK-szP"/>
- <constraint firstAttribute="trailing" secondItem="mZH-3V-tyO" secondAttribute="trailing" constant="10" id="y4J-qM-Wkl"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Ao4-ps-djr"/>
- <exclude reference="Eyb-1i-gbZ"/>
- <exclude reference="Quf-qK-szP"/>
- <exclude reference="y4J-qM-Wkl"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Ao4-ps-djr"/>
- <include reference="Eyb-1i-gbZ"/>
- <include reference="Quf-qK-szP"/>
- <include reference="y4J-qM-Wkl"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="bottomLine" destination="r08-CZ-UDi" id="Uzh-Fi-8wd"/>
- <outlet property="btnDelete" destination="8u0-0Q-Nf0" id="e9L-fH-STI"/>
- <outlet property="constraintConditionLabelRight" destination="Kjx-vl-CRR" id="lfh-5Z-FXr"/>
- <outlet property="imgvIcon" destination="tiA-Fj-J7C" id="kwN-pp-N2z"/>
- <outlet property="lblCondition" destination="2P0-eF-dg6" id="BPS-nY-KMl"/>
- <outlet property="lblItem" destination="roB-B7-xoe" id="JsK-v8-CwA"/>
- <outlet property="lblSubItem" destination="RRW-yk-46O" id="kim-HQ-uuS"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionCellIdentifier" rowHeight="86" id="geZ-Et-9z1" customClass="RulesConditionTableViewCell">
- <rect key="frame" x="0.0" y="205" width="320" height="86"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="geZ-Et-9z1" id="NWN-px-GuH">
- <rect key="frame" x="0.0" y="0.0" width="320" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="S4O-ED-DYC">
- <rect key="frame" x="10" y="0.0" width="300" height="87"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="SoI-fD-fKa" userLabel="View - Line">
- <rect key="frame" x="0.0" y="86" width="300" height="1"/>
- <color key="backgroundColor" red="0.90196079019999997" green="0.90196079019999997" blue="0.90196079019999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="RhV-sE-fIc"/>
- </constraints>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="UKu-zE-iu4" customClass="CustomImageView">
- <rect key="frame" x="8" y="18" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="height" constant="55" id="ApY-dH-c6x">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- <constraint firstAttribute="width" constant="55" id="awD-jc-1A3">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="180" placeholderIntrinsicHeight="20" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eLH-2g-wZR" customClass="CustomLabel">
- <rect key="frame" x="63" y="33" width="194" height="20"/>
- <constraints>
- <constraint firstAttribute="width" constant="180" id="LtO-JS-fP1">
- <variation key="heightClass=regular-widthClass=compact" constant="194"/>
- </constraint>
- <constraint firstAttribute="height" constant="20" id="R38-Be-z4t"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Ncb-ge-1lC" customClass="CustomButton">
- <rect key="frame" x="265" y="30" width="27" height="27"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="SDX-TP-OCc">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstAttribute="width" constant="30" id="YAj-pp-73d">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <state key="normal" image="common_list_btn_delete"/>
- <state key="highlighted" image="common_list_btn_delete_press"/>
- </button>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="SoI-fD-fKa" secondAttribute="bottom" id="3Or-py-oUg"/>
- <constraint firstItem="UKu-zE-iu4" firstAttribute="leading" secondItem="S4O-ED-DYC" secondAttribute="leading" constant="8" id="7Se-9Y-HcL"/>
- <constraint firstAttribute="trailing" secondItem="Ncb-ge-1lC" secondAttribute="trailing" constant="8" id="9rr-RK-oat"/>
- <constraint firstItem="Ncb-ge-1lC" firstAttribute="top" secondItem="S4O-ED-DYC" secondAttribute="top" constant="30" id="Ezy-X9-8kC"/>
- <constraint firstAttribute="trailing" secondItem="SoI-fD-fKa" secondAttribute="trailing" id="SRJ-eW-xy3"/>
- <constraint firstItem="SoI-fD-fKa" firstAttribute="leading" secondItem="S4O-ED-DYC" secondAttribute="leading" id="YA1-Z4-Qw3"/>
- <constraint firstItem="UKu-zE-iu4" firstAttribute="top" secondItem="S4O-ED-DYC" secondAttribute="top" constant="18" id="kNK-9Z-j0u"/>
- <constraint firstItem="eLH-2g-wZR" firstAttribute="centerY" secondItem="UKu-zE-iu4" secondAttribute="centerY" id="tGm-er-An2"/>
- <constraint firstItem="eLH-2g-wZR" firstAttribute="leading" secondItem="UKu-zE-iu4" secondAttribute="trailing" constant="7" id="zSl-bG-s3d">
- <variation key="heightClass=regular-widthClass=compact" constant="5"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="7Se-9Y-HcL"/>
- <exclude reference="kNK-9Z-j0u"/>
- <exclude reference="tGm-er-An2"/>
- <exclude reference="zSl-bG-s3d"/>
- <exclude reference="3Or-py-oUg"/>
- <exclude reference="SRJ-eW-xy3"/>
- <exclude reference="YA1-Z4-Qw3"/>
- <exclude reference="9rr-RK-oat"/>
- <exclude reference="Ezy-X9-8kC"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="7Se-9Y-HcL"/>
- <include reference="kNK-9Z-j0u"/>
- <include reference="tGm-er-An2"/>
- <include reference="zSl-bG-s3d"/>
- <include reference="3Or-py-oUg"/>
- <include reference="SRJ-eW-xy3"/>
- <include reference="YA1-Z4-Qw3"/>
- <include reference="9rr-RK-oat"/>
- <include reference="Ezy-X9-8kC"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="S4O-ED-DYC" secondAttribute="bottom" constant="1" id="97L-HJ-wxL">
- <variation key="heightClass=regular-widthClass=compact" constant="-1"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="S4O-ED-DYC" secondAttribute="trailing" constant="10" id="AN1-21-gkf"/>
- <constraint firstItem="S4O-ED-DYC" firstAttribute="leading" secondItem="NWN-px-GuH" secondAttribute="leading" constant="10" id="BnM-rH-Q6n"/>
- <constraint firstItem="S4O-ED-DYC" firstAttribute="top" secondItem="NWN-px-GuH" secondAttribute="top" id="OPP-h1-mrm"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="97L-HJ-wxL"/>
- <exclude reference="AN1-21-gkf"/>
- <exclude reference="BnM-rH-Q6n"/>
- <exclude reference="OPP-h1-mrm"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="97L-HJ-wxL"/>
- <include reference="AN1-21-gkf"/>
- <include reference="BnM-rH-Q6n"/>
- <include reference="OPP-h1-mrm"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="bottomLine" destination="SoI-fD-fKa" id="a5O-2P-Cnx"/>
- <outlet property="btnDelete" destination="Ncb-ge-1lC" id="6ny-7U-HdZ"/>
- <outlet property="imgvIcon" destination="UKu-zE-iu4" id="l9l-EY-Vks"/>
- <outlet property="lblItem" destination="eLH-2g-wZR" id="yi3-L4-hSt"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="FooterCellIdentifier" rowHeight="15" id="1Ri-jt-T30" customClass="RulesConditionFooterTableViewCell">
- <rect key="frame" x="0.0" y="291" width="320" height="15"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Ri-jt-T30" id="cxG-qc-mKq">
- <rect key="frame" x="0.0" y="0.0" width="320" height="14"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="bgy-m5-3QO" userLabel="View - Line">
- <rect key="frame" x="10" y="0.0" width="300" height="1"/>
- <color key="backgroundColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="4qE-q5-ofY"/>
- </constraints>
- </view>
- </subviews>
- <constraints>
- <constraint firstItem="bgy-m5-3QO" firstAttribute="top" secondItem="cxG-qc-mKq" secondAttribute="top" id="0Mb-VH-dPj"/>
- <constraint firstItem="bgy-m5-3QO" firstAttribute="leading" secondItem="cxG-qc-mKq" secondAttribute="leading" constant="10" id="1rO-ct-dcc"/>
- <constraint firstAttribute="trailing" secondItem="bgy-m5-3QO" secondAttribute="trailing" constant="10" id="nF4-lt-hNg"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94509803921568625" green="0.94509803921568625" blue="0.94509803921568625" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </tableViewCell>
- </prototypes>
- </tableView>
- </subviews>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="1Wf-vo-AU5" firstAttribute="top" secondItem="Sly-Wf-8hY" secondAttribute="bottom" id="1OE-wt-MSN"/>
- <constraint firstItem="Sly-Wf-8hY" firstAttribute="top" secondItem="Ci7-3A-k16" secondAttribute="top" id="4BE-X8-k8P"/>
- <constraint firstAttribute="trailing" secondItem="Sly-Wf-8hY" secondAttribute="trailing" id="Baz-92-rjV"/>
- <constraint firstItem="Sly-Wf-8hY" firstAttribute="leading" secondItem="Ci7-3A-k16" secondAttribute="leading" id="awK-UW-gBA"/>
- <constraint firstAttribute="trailing" secondItem="Sly-Wf-8hY" secondAttribute="trailing" id="iDo-ca-rhM"/>
- <constraint firstItem="Sly-Wf-8hY" firstAttribute="leading" secondItem="Ci7-3A-k16" secondAttribute="leading" id="vgg-gX-DzQ"/>
- </constraints>
- </view>
- <connections>
- <outlet property="tableView" destination="Sly-Wf-8hY" id="Y4x-ra-J56"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="f4c-1S-o79" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="636" y="143.25"/>
- </scene>
- <!--Rules Add Complete View Controller-->
- <scene sceneID="1d1-n9-spK">
- <objects>
- <viewController storyboardIdentifier="RulesAddCompleteViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="RON-UI-HGf" customClass="RulesAddCompleteViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="K4V-PP-vFx"/>
- <viewControllerLayoutGuide type="bottom" id="byc-zd-Djm"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="P03-NT-yxJ" 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 alpha="0.0" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="9qf-PQ-PIO" userLabel="View - Mask">
- <rect key="frame" x="0.0" y="0.0" width="320" height="568"/>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="4Wc-Yh-sLS" userLabel="View - Pop">
- <rect key="frame" x="15" y="700" width="290" height="447"/>
- <subviews>
- <view contentMode="scaleToFill" placeholderIntrinsicWidth="290" placeholderIntrinsicHeight="266" translatesAutoresizingMaskIntoConstraints="NO" id="u6H-fu-zfR" userLabel="View - Content">
- <rect key="frame" x="0.0" y="0.0" width="290" height="395"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="25" text="성공" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="TI3-Uw-2QD" customClass="CustomLabel">
- <rect key="frame" x="40" y="35" width="210" height="25"/>
- <constraints>
- <constraint firstAttribute="width" constant="210" id="GL6-kz-D3z"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="19"/>
- <color key="textColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="210" placeholderIntrinsicHeight="15" text="규칙을 만들었습니다" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="U5Q-BW-CJu" customClass="CustomLabel">
- <rect key="frame" x="40" y="80" width="210" height="15"/>
- <constraints>
- <constraint firstAttribute="width" constant="210" id="rYH-RW-Oub"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="260" placeholderIntrinsicHeight="15" text="규칙을 만들었습니다" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="9dj-cC-4pa" customClass="CustomLabel">
- <rect key="frame" x="15" y="273" width="260" height="15"/>
- <constraints>
- <constraint firstAttribute="width" constant="210" id="IyC-WH-Z2F"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <exclude reference="IyC-WH-Z2F"/>
- </mask>
- </variation>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="90" placeholderIntrinsicHeight="90" translatesAutoresizingMaskIntoConstraints="NO" id="2c0-oX-0yV">
- <rect key="frame" x="100" y="165" width="90" height="90"/>
- <constraints>
- <constraint firstAttribute="width" constant="90" id="FOI-wZ-RfQ"/>
- <constraint firstAttribute="height" constant="90" id="crX-H7-cM0"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="FOI-wZ-RfQ"/>
- <exclude reference="crX-H7-cM0"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="FOI-wZ-RfQ"/>
- <include reference="crX-H7-cM0"/>
- </mask>
- </variation>
- </imageView>
- </subviews>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="2c0-oX-0yV" firstAttribute="centerX" secondItem="u6H-fu-zfR" secondAttribute="centerX" id="17o-xB-XBm"/>
- <constraint firstItem="TI3-Uw-2QD" firstAttribute="top" secondItem="u6H-fu-zfR" secondAttribute="top" constant="40" id="9zC-Pn-8AM">
- <variation key="heightClass=regular-widthClass=compact" constant="35"/>
- </constraint>
- <constraint firstItem="U5Q-BW-CJu" firstAttribute="top" secondItem="TI3-Uw-2QD" secondAttribute="bottom" constant="20" id="Ayu-fr-njI"/>
- <constraint firstItem="U5Q-BW-CJu" firstAttribute="centerX" secondItem="u6H-fu-zfR" secondAttribute="centerX" id="C6e-ne-hqj"/>
- <constraint firstItem="9dj-cC-4pa" firstAttribute="top" secondItem="2c0-oX-0yV" secondAttribute="bottom" constant="18" id="FYB-Nk-UNn"/>
- <constraint firstItem="2c0-oX-0yV" firstAttribute="top" secondItem="U5Q-BW-CJu" secondAttribute="bottom" constant="70" id="HPc-BL-zRw"/>
- <constraint firstItem="9dj-cC-4pa" firstAttribute="leading" secondItem="u6H-fu-zfR" secondAttribute="leading" constant="15" id="IAa-i1-LBu"/>
- <constraint firstItem="TI3-Uw-2QD" firstAttribute="centerX" secondItem="u6H-fu-zfR" secondAttribute="centerX" id="fAt-vT-ddO"/>
- <constraint firstAttribute="trailing" secondItem="9dj-cC-4pa" secondAttribute="trailing" constant="15" id="qEU-k2-Tac"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="2c0-oX-0yV"/>
- </mask>
- <mask key="constraints">
- <exclude reference="17o-xB-XBm"/>
- <exclude reference="HPc-BL-zRw"/>
- <exclude reference="FYB-Nk-UNn"/>
- <exclude reference="IAa-i1-LBu"/>
- <exclude reference="qEU-k2-Tac"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="2c0-oX-0yV"/>
- </mask>
- <mask key="constraints">
- <include reference="17o-xB-XBm"/>
- <include reference="HPc-BL-zRw"/>
- <include reference="FYB-Nk-UNn"/>
- <include reference="IAa-i1-LBu"/>
- <include reference="qEU-k2-Tac"/>
- </mask>
- </variation>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lY6-Ta-DLO" userLabel="View - Container">
- <rect key="frame" x="0.0" y="395" width="290" height="52"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" placeholderIntrinsicWidth="145" placeholderIntrinsicHeight="69" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="C49-al-xWB" customClass="CustomButton">
- <rect key="frame" x="0.0" y="1" width="290" height="51"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <state key="normal" title="완료">
- <color key="titleColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <state key="highlighted">
- <color key="titleColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="btnCompleteTouched:" destination="RON-UI-HGf" eventType="touchUpInside" id="tmW-Qn-8Fl"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="70" id="Ixc-gd-SrK">
- <variation key="heightClass=regular-widthClass=compact" constant="52"/>
- </constraint>
- <constraint firstItem="C49-al-xWB" firstAttribute="top" secondItem="lY6-Ta-DLO" secondAttribute="top" constant="1" id="LtH-qh-jnJ"/>
- <constraint firstAttribute="trailing" secondItem="C49-al-xWB" secondAttribute="trailing" id="Z5s-It-FFV"/>
- <constraint firstAttribute="bottom" secondItem="C49-al-xWB" secondAttribute="bottom" id="cWS-Be-VbL"/>
- <constraint firstItem="C49-al-xWB" firstAttribute="leading" secondItem="lY6-Ta-DLO" secondAttribute="leading" id="jSL-rq-t67"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="u6H-fu-zfR" firstAttribute="top" secondItem="4Wc-Yh-sLS" secondAttribute="top" id="0oo-YA-38r"/>
- <constraint firstAttribute="width" constant="290" id="3OY-PH-uDI"/>
- <constraint firstItem="u6H-fu-zfR" firstAttribute="leading" secondItem="4Wc-Yh-sLS" secondAttribute="leading" id="CsI-Ev-bzy"/>
- <constraint firstItem="lY6-Ta-DLO" firstAttribute="leading" secondItem="4Wc-Yh-sLS" secondAttribute="leading" id="F2v-kq-I81"/>
- <constraint firstAttribute="bottom" secondItem="lY6-Ta-DLO" secondAttribute="bottom" id="PtY-rj-CiF"/>
- <constraint firstAttribute="trailing" secondItem="u6H-fu-zfR" secondAttribute="trailing" id="YYQ-96-e7u"/>
- <constraint firstItem="lY6-Ta-DLO" firstAttribute="top" secondItem="u6H-fu-zfR" secondAttribute="bottom" id="s2g-Io-0zT"/>
- <constraint firstAttribute="height" constant="400" id="zNY-FA-em7">
- <variation key="heightClass=regular-widthClass=compact" constant="447"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="lY6-Ta-DLO" secondAttribute="trailing" id="zqg-YN-CR5"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="0oo-YA-38r"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="0oo-YA-38r"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="9qf-PQ-PIO" firstAttribute="top" secondItem="P03-NT-yxJ" secondAttribute="top" id="21N-jx-Pyb"/>
- <constraint firstItem="4Wc-Yh-sLS" firstAttribute="centerX" secondItem="P03-NT-yxJ" secondAttribute="centerX" id="XTN-Ap-JfL"/>
- <constraint firstItem="4Wc-Yh-sLS" firstAttribute="top" secondItem="K4V-PP-vFx" secondAttribute="bottom" constant="41" id="fe8-OB-AgZ">
- <variation key="heightClass=regular-widthClass=compact" constant="680"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="9qf-PQ-PIO" secondAttribute="trailing" id="p2c-Gp-qFF"/>
- <constraint firstItem="9qf-PQ-PIO" firstAttribute="leading" secondItem="P03-NT-yxJ" secondAttribute="leading" id="pxD-da-OEL"/>
- <constraint firstItem="byc-zd-Djm" firstAttribute="top" secondItem="9qf-PQ-PIO" secondAttribute="bottom" id="tA0-0J-e85"/>
- </constraints>
- </view>
- <connections>
- <outlet property="constraintPopViewTop" destination="fe8-OB-AgZ" id="kDR-pC-B1T"/>
- <outlet property="imgvIcon" destination="2c0-oX-0yV" id="mvF-Jz-iNz"/>
- <outlet property="lblDesc" destination="U5Q-BW-CJu" id="dS4-at-Ssf"/>
- <outlet property="lblRuleName" destination="9dj-cC-4pa" id="o9u-5Q-fY0"/>
- <outlet property="lblTitle" destination="TI3-Uw-2QD" id="gKI-gZ-kY4"/>
- <outlet property="maskView" destination="9qf-PQ-PIO" id="x7v-Vf-ZwZ"/>
- <outlet property="popView" destination="4Wc-Yh-sLS" id="mJc-bC-jHU"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="PjU-z8-57N" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1352" y="143"/>
- </scene>
- <!--Rules Detail View Controller-->
- <scene sceneID="rmr-6Q-zz2">
- <objects>
- <viewController storyboardIdentifier="RulesDetailViewController" automaticallyAdjustsScrollViewInsets="NO" useStoryboardIdentifierAsRestorationIdentifier="YES" id="u0N-2Y-mv7" customClass="RulesDetailViewController" sceneMemberID="viewController">
- <layoutGuides>
- <viewControllerLayoutGuide type="top" id="CJD-L5-TEr"/>
- <viewControllerLayoutGuide type="bottom" id="uhq-Ag-cYz"/>
- </layoutGuides>
- <view key="view" contentMode="scaleToFill" id="lf8-Zc-Oss" userLabel="View - Main">
- <rect key="frame" x="0.0" y="0.0" width="320" height="1568"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="pfS-Ok-rh4" userLabel="View - header">
- <rect key="frame" x="0.0" y="0.0" width="320" height="65"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="규칙 상세" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cj9-78-4k8" customClass="CustomLabel">
- <rect key="frame" x="12" y="20" width="200" height="45"/>
- <constraints>
- <constraint firstAttribute="width" constant="200" id="0Wj-0x-fd3"/>
- </constraints>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="hf4-DD-L2Y">
- <rect key="frame" x="275" y="20" width="45" height="45"/>
- <constraints>
- <constraint firstAttribute="height" constant="45" id="bH2-zP-YQ8"/>
- <constraint firstAttribute="width" constant="46" id="hry-6j-maf">
- <variation key="heightClass=regular-widthClass=compact" constant="45"/>
- </constraint>
- </constraints>
- <state key="normal" image="common_head_btn_more"/>
- <state key="highlighted" image="common_head_btn_more_press"/>
- <connections>
- <action selector="btnOptionTouched:" destination="u0N-2Y-mv7" eventType="touchUpInside" id="Hac-nZ-pf9"/>
- </connections>
- </button>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="RJY-VM-C45" userLabel="View - line">
- <rect key="frame" x="0.0" y="64" width="320" height="1"/>
- <color key="backgroundColor" red="0.86666666670000003" green="0.86666666670000003" blue="0.86666666670000003" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="3Wd-HC-yiM"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstItem="RJY-VM-C45" firstAttribute="leading" secondItem="pfS-Ok-rh4" secondAttribute="leading" id="KVH-w7-1FJ"/>
- <constraint firstAttribute="bottom" secondItem="cj9-78-4k8" secondAttribute="bottom" id="N3b-Y4-3fZ"/>
- <constraint firstAttribute="trailing" secondItem="RJY-VM-C45" secondAttribute="trailing" id="ZN6-eW-ge8"/>
- <constraint firstAttribute="height" constant="65" id="dwA-1n-YUt"/>
- <constraint firstAttribute="bottom" secondItem="RJY-VM-C45" secondAttribute="bottom" id="l92-g6-rZM"/>
- <constraint firstAttribute="trailing" secondItem="hf4-DD-L2Y" secondAttribute="trailing" constant="8" id="ptY-3c-Rqv">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstItem="cj9-78-4k8" firstAttribute="top" secondItem="pfS-Ok-rh4" secondAttribute="top" constant="20" id="qg3-q4-LqE"/>
- <constraint firstAttribute="bottom" secondItem="hf4-DD-L2Y" secondAttribute="bottom" constant="15" id="sxV-xC-ddA">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- </constraints>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="DZS-Lj-Qe4">
- <rect key="frame" x="0.0" y="20" width="12" height="45"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="width" constant="12" id="7Af-Z8-1Tz"/>
- </constraints>
- </view>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="18" sectionFooterHeight="18" translatesAutoresizingMaskIntoConstraints="NO" id="fuY-Wk-K2F" customClass="CustomTableView">
- <rect key="frame" x="0.0" y="65" width="320" height="1451"/>
- <color key="backgroundColor" red="0.94901960784313721" green="0.94901960784313721" blue="0.94901960784313721" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="TitleCellIdentifier" rowHeight="56" id="C3q-Tu-fkj" customClass="RulesDetailTitleTableViewCell">
- <rect key="frame" x="0.0" y="56" width="320" height="56"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="C3q-Tu-fkj" id="eFT-zg-dzR">
- <rect key="frame" x="0.0" y="0.0" width="320" height="55"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Iip-Wr-G94" customClass="CustomLabel">
- <rect key="frame" x="27" y="18" width="277" height="20"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="Mep-XH-USU">
- <variation key="heightClass=regular-widthClass=compact" constant="20"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="Iip-Wr-G94" firstAttribute="top" secondItem="eFT-zg-dzR" secondAttribute="top" constant="10" id="Y08-MX-VkD">
- <variation key="heightClass=regular-widthClass=compact" constant="18"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="Iip-Wr-G94" secondAttribute="trailing" constant="16" id="fyy-Yb-a2h"/>
- <constraint firstItem="Iip-Wr-G94" firstAttribute="leading" secondItem="eFT-zg-dzR" secondAttribute="leading" constant="27" id="tAN-ux-si4"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="lblRuleTitle" destination="Iip-Wr-G94" id="tX5-Yt-bRm"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="HeaderCellIdentifier" rowHeight="75" id="sUn-TA-1qW" customClass="RulesDetailHeaderTableViewCell">
- <rect key="frame" x="0.0" y="112" width="320" height="75"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sUn-TA-1qW" id="Gfk-T5-xzJ">
- <rect key="frame" x="0.0" y="0.0" width="320" height="74"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ycF-wa-5aZ" customClass="CustomLabel">
- <rect key="frame" x="27" y="36" width="278" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="ZwA-fS-0cZ">
- <variation key="heightClass=regular-widthClass=compact" constant="21"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_line" translatesAutoresizingMaskIntoConstraints="NO" id="YH0-YE-MEg">
- <rect key="frame" x="0.0" y="46" width="15" height="2"/>
- <constraints>
- <constraint firstAttribute="height" constant="2" id="Ygv-NC-YEn"/>
- <constraint firstAttribute="width" constant="15" id="ssu-Ub-XCG"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="Ygv-NC-YEn"/>
- <exclude reference="ssu-Ub-XCG"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="Ygv-NC-YEn"/>
- <include reference="ssu-Ub-XCG"/>
- </mask>
- </variation>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="ycF-wa-5aZ" firstAttribute="leading" secondItem="YH0-YE-MEg" secondAttribute="trailing" constant="12" id="Kaw-Ug-bKs"/>
- <constraint firstItem="YH0-YE-MEg" firstAttribute="leading" secondItem="Gfk-T5-xzJ" secondAttribute="leading" id="QbN-hb-lcQ"/>
- <constraint firstItem="YH0-YE-MEg" firstAttribute="centerY" secondItem="ycF-wa-5aZ" secondAttribute="centerY" id="ath-MQ-8Mw"/>
- <constraint firstAttribute="trailing" secondItem="ycF-wa-5aZ" secondAttribute="trailing" constant="15" id="sSY-T5-Euc"/>
- <constraint firstItem="ycF-wa-5aZ" firstAttribute="top" secondItem="Gfk-T5-xzJ" secondAttribute="top" constant="40" id="vKN-LQ-rxg">
- <variation key="heightClass=regular-widthClass=compact" constant="36"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="YH0-YE-MEg"/>
- </mask>
- <mask key="constraints">
- <exclude reference="QbN-hb-lcQ"/>
- <exclude reference="ath-MQ-8Mw"/>
- <exclude reference="Kaw-Ug-bKs"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="YH0-YE-MEg"/>
- </mask>
- <mask key="constraints">
- <include reference="QbN-hb-lcQ"/>
- <include reference="ath-MQ-8Mw"/>
- <include reference="Kaw-Ug-bKs"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <connections>
- <outlet property="lblTitle" destination="ycF-wa-5aZ" id="Ezz-aC-x1H"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="RulesCellIdentifier" rowHeight="86" id="KwC-wU-t0G" userLabel="RulesCellIdentifier" customClass="RulesDetailTableViewCell">
- <rect key="frame" x="0.0" y="187" width="320" height="86"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KwC-wU-t0G" id="mbB-ah-EzW">
- <rect key="frame" x="0.0" y="0.0" width="320" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CWV-BF-Hg9" userLabel="View - Line">
- <rect key="frame" x="0.0" y="85" width="320" height="1"/>
- <color key="backgroundColor" red="0.8666666666666667" green="0.8666666666666667" blue="0.8666666666666667" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="0K3-Y3-xZz"/>
- </constraints>
- </view>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3eT-3c-awy" customClass="CustomLabel">
- <rect key="frame" x="70" y="21" width="125" height="23"/>
- <constraints>
- <constraint firstAttribute="height" constant="20" id="6K9-v2-YTD">
- <variation key="heightClass=regular-widthClass=compact" constant="23"/>
- </constraint>
- <constraint firstAttribute="width" constant="110" id="NIH-gc-9Sb">
- <variation key="heightClass=regular-widthClass=compact" constant="125"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="19"/>
- <color key="textColor" red="0.16078431369999999" green="0.55294117649999996" blue="0.80392156859999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sLl-2e-Due" customClass="CustomLabel">
- <rect key="frame" x="70" y="50" width="162" height="15"/>
- <constraints>
- <constraint firstAttribute="height" constant="15" id="8ur-wV-AmS"/>
- <constraint firstAttribute="width" constant="110" id="s3N-rY-jyf">
- <variation key="heightClass=regular-widthClass=compact" constant="125"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <exclude reference="s3N-rY-jyf"/>
- </mask>
- </variation>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="252" verticalHuggingPriority="251" placeholderIntrinsicWidth="80" placeholderIntrinsicHeight="15" text="Label" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Rsh-yb-OO7" customClass="CustomLabel">
- <rect key="frame" x="225" y="41" width="80" height="15"/>
- <constraints>
- <constraint firstAttribute="height" constant="15" id="7Fd-W0-BBn"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" translatesAutoresizingMaskIntoConstraints="NO" id="r9f-Kz-zdv" customClass="CustomImageView">
- <rect key="frame" x="15" y="18" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="height" constant="55" id="DRv-Hc-MQc">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- <constraint firstAttribute="width" constant="55" id="dVX-YI-Ty0">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- </constraints>
- </imageView>
- </subviews>
- <constraints>
- <constraint firstItem="3eT-3c-awy" firstAttribute="top" secondItem="mbB-ah-EzW" secondAttribute="top" constant="25" id="20I-Ih-K2x">
- <variation key="heightClass=regular-widthClass=compact" constant="21"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="CWV-BF-Hg9" secondAttribute="trailing" id="I9b-5Y-k0Q"/>
- <constraint firstItem="r9f-Kz-zdv" firstAttribute="top" secondItem="mbB-ah-EzW" secondAttribute="top" constant="20" id="Ipw-wa-NSu">
- <variation key="heightClass=regular-widthClass=compact" constant="18"/>
- </constraint>
- <constraint firstItem="r9f-Kz-zdv" firstAttribute="leading" secondItem="mbB-ah-EzW" secondAttribute="leading" constant="15" id="cM2-J3-mtt"/>
- <constraint firstAttribute="trailing" secondItem="Rsh-yb-OO7" secondAttribute="trailing" constant="15" id="dM4-u2-XpC"/>
- <constraint firstItem="sLl-2e-Due" firstAttribute="leading" secondItem="3eT-3c-awy" secondAttribute="leading" id="dYe-OP-YLp"/>
- <constraint firstItem="Rsh-yb-OO7" firstAttribute="top" secondItem="mbB-ah-EzW" secondAttribute="top" constant="41" id="f7Q-5d-Vho"/>
- <constraint firstItem="CWV-BF-Hg9" firstAttribute="leading" secondItem="mbB-ah-EzW" secondAttribute="leading" id="h4y-Nq-ylv"/>
- <constraint firstItem="sLl-2e-Due" firstAttribute="leading" secondItem="r9f-Kz-zdv" secondAttribute="trailing" constant="5" id="hK6-EA-Y12"/>
- <constraint firstItem="Rsh-yb-OO7" firstAttribute="leading" secondItem="sLl-2e-Due" secondAttribute="trailing" constant="-7" id="lVt-cf-kaB"/>
- <constraint firstItem="sLl-2e-Due" firstAttribute="top" secondItem="3eT-3c-awy" secondAttribute="bottom" constant="15" id="pQA-n7-7Qm">
- <variation key="heightClass=regular-widthClass=compact" constant="6"/>
- </constraint>
- <constraint firstItem="3eT-3c-awy" firstAttribute="leading" secondItem="r9f-Kz-zdv" secondAttribute="trailing" constant="5" id="t1R-yZ-diU"/>
- <constraint firstAttribute="bottom" secondItem="CWV-BF-Hg9" secondAttribute="bottom" constant="-1" id="ttr-lw-EB7">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="t1R-yZ-diU"/>
- <exclude reference="dM4-u2-XpC"/>
- <exclude reference="lVt-cf-kaB"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="t1R-yZ-diU"/>
- <exclude reference="hK6-EA-Y12"/>
- <include reference="dM4-u2-XpC"/>
- <include reference="lVt-cf-kaB"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <connections>
- <outlet property="bottomLine" destination="CWV-BF-Hg9" id="KYS-0A-KHS"/>
- <outlet property="imgvIcon" destination="r9f-Kz-zdv" id="djt-wh-OEp"/>
- <outlet property="lblCondition" destination="Rsh-yb-OO7" id="Vny-aZ-agS"/>
- <outlet property="lblItem" destination="3eT-3c-awy" id="Sd6-u8-W8H"/>
- <outlet property="lblSubItem" destination="sLl-2e-Due" id="Ztb-su-OTZ"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PushCellIdentifier" rowHeight="61" id="O2M-nJ-QAx" customClass="RulesDetailPushTableViewCell">
- <rect key="frame" x="0.0" y="273" width="320" height="61"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="O2M-nJ-QAx" id="u9g-Vv-oaW">
- <rect key="frame" x="0.0" y="0.0" width="320" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="img_rule_icon_message" translatesAutoresizingMaskIntoConstraints="NO" id="Vl9-rV-zyi" customClass="CustomImageView">
- <rect key="frame" x="15" y="0.0" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="width" constant="55" id="BTn-dp-bLi">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- <constraint firstAttribute="height" constant="55" id="g4r-j1-Jos">
- <variation key="heightClass=regular-widthClass=compact" constant="50"/>
- </constraint>
- </constraints>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="4Qi-fG-KF1" customClass="CustomLabel">
- <rect key="frame" x="75" y="12" width="230" height="18"/>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="4Qi-fG-KF1" firstAttribute="top" secondItem="u9g-Vv-oaW" secondAttribute="top" constant="15" id="6HC-gc-Pcz">
- <variation key="heightClass=regular-widthClass=compact" constant="12"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="4Qi-fG-KF1" secondAttribute="trailing" constant="15" id="6iO-nn-Xsb"/>
- <constraint firstItem="4Qi-fG-KF1" firstAttribute="leading" secondItem="Vl9-rV-zyi" secondAttribute="trailing" constant="5" id="Gx4-mZ-6iR">
- <variation key="heightClass=regular-widthClass=compact" constant="10"/>
- </constraint>
- <constraint firstItem="Vl9-rV-zyi" firstAttribute="top" secondItem="u9g-Vv-oaW" secondAttribute="top" id="QNg-PJ-K7n"/>
- <constraint firstItem="Vl9-rV-zyi" firstAttribute="centerY" secondItem="4Qi-fG-KF1" secondAttribute="centerY" constant="-2.5" id="ljl-co-f3P">
- <variation key="heightClass=regular-widthClass=compact" constant="4"/>
- </constraint>
- <constraint firstItem="Vl9-rV-zyi" firstAttribute="leading" secondItem="u9g-Vv-oaW" secondAttribute="leading" constant="15" id="skf-I8-X2T"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="QNg-PJ-K7n"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="QNg-PJ-K7n"/>
- <exclude reference="ljl-co-f3P"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <connections>
- <outlet property="imgvPush" destination="Vl9-rV-zyi" id="z9Q-OD-mQF"/>
- <outlet property="lblMessage" destination="4Qi-fG-KF1" id="W89-RO-59t"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionHeaderCellIdentifier" rowHeight="91" id="sol-wu-t7q" userLabel="ConditionHeaderCellIdentifier" customClass="RulesDetailConditionHeaderTableViewCell">
- <rect key="frame" x="0.0" y="334" width="320" height="91"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sol-wu-t7q" id="x2d-Ob-O1p">
- <rect key="frame" x="0.0" y="0.0" width="320" height="90"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" placeholderIntrinsicWidth="80" placeholderIntrinsicHeight="27" text="● 추가조건" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Nw1-P6-GxN" customClass="CustomLabel">
- <rect key="frame" x="15" y="36" width="80" height="27"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="XY6-kq-SHt">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Zx4-JQ-pS8" userLabel="View - Line">
- <rect key="frame" x="100" y="49" width="160" height="1"/>
- <color key="backgroundColor" red="0.73333333329999995" green="0.73333333329999995" blue="0.73333333329999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="CmN-Hi-wvu"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="Zx4-JQ-pS8" secondAttribute="trailing" constant="60" id="8gW-n4-e9v"/>
- <constraint firstItem="Nw1-P6-GxN" firstAttribute="leading" secondItem="x2d-Ob-O1p" secondAttribute="leading" constant="15" id="9K7-gR-tnv"/>
- <constraint firstItem="Zx4-JQ-pS8" firstAttribute="leading" secondItem="Nw1-P6-GxN" secondAttribute="trailing" constant="5" id="QlQ-2u-NAg"/>
- <constraint firstItem="Nw1-P6-GxN" firstAttribute="top" secondItem="x2d-Ob-O1p" secondAttribute="top" constant="36" id="jK1-Wl-tdj"/>
- <constraint firstItem="Zx4-JQ-pS8" firstAttribute="centerY" secondItem="Nw1-P6-GxN" secondAttribute="centerY" id="pdd-Gh-rWA"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="Nw1-P6-GxN"/>
- <exclude reference="Zx4-JQ-pS8"/>
- </mask>
- <mask key="constraints">
- <exclude reference="9K7-gR-tnv"/>
- <exclude reference="jK1-Wl-tdj"/>
- <exclude reference="8gW-n4-e9v"/>
- <exclude reference="QlQ-2u-NAg"/>
- <exclude reference="pdd-Gh-rWA"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="Nw1-P6-GxN"/>
- <include reference="Zx4-JQ-pS8"/>
- </mask>
- <mask key="constraints">
- <include reference="9K7-gR-tnv"/>
- <include reference="jK1-Wl-tdj"/>
- <include reference="8gW-n4-e9v"/>
- <include reference="QlQ-2u-NAg"/>
- <include reference="pdd-Gh-rWA"/>
- </mask>
- </variation>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ConditionCellIdentifier" rowHeight="234" id="F60-Jy-GKn" customClass="RulesDetailConditionTableViewCell">
- <rect key="frame" x="0.0" y="425" width="320" height="234"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="F60-Jy-GKn" id="41z-cO-ScW">
- <rect key="frame" x="0.0" y="0.0" width="320" height="233"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Xio-08-zvg" userLabel="View - child view container">
- <rect key="frame" x="0.0" y="0.0" width="320" height="234"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="255" id="NDB-Z7-lMo">
- <variation key="heightClass=regular-widthClass=compact" constant="234"/>
- </constraint>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="Xio-08-zvg" secondAttribute="trailing" id="aEL-i1-qsO"/>
- <constraint firstItem="Xio-08-zvg" firstAttribute="top" secondItem="41z-cO-ScW" secondAttribute="top" id="jrF-zC-SXf"/>
- <constraint firstItem="Xio-08-zvg" firstAttribute="leading" secondItem="41z-cO-ScW" secondAttribute="leading" id="key-gC-bT3"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="constraintContainerHeight" destination="NDB-Z7-lMo" id="mLh-wP-tSv"/>
- <outlet property="container" destination="Xio-08-zvg" id="HNL-hR-lGz"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ExecutionCellIdentifier" rowHeight="190" id="PeZ-UO-vg2" customClass="RulesDetailExecutionTableViewCell">
- <rect key="frame" x="0.0" y="659" width="320" height="190"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="PeZ-UO-vg2" id="0m9-Sf-UwG">
- <rect key="frame" x="0.0" y="0.0" width="320" height="189"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="SxE-ob-zas" userLabel="View - container" customClass="KNView">
- <rect key="frame" x="0.0" y="35" width="320" height="155"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="0w7-OO-dQ3" userLabel="View - Status" customClass="KNView">
- <rect key="frame" x="0.0" y="0.0" width="320" height="75"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_circle_gray" translatesAutoresizingMaskIntoConstraints="NO" id="fB9-Wp-UjA">
- <rect key="frame" x="15" y="43" width="8" height="8"/>
- <constraints>
- <constraint firstAttribute="width" constant="8" id="9VR-lN-Ldz"/>
- <constraint firstAttribute="height" constant="8" id="bv1-O5-hjI"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="9VR-lN-Ldz"/>
- <exclude reference="bv1-O5-hjI"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="9VR-lN-Ldz"/>
- <include reference="bv1-O5-hjI"/>
- </mask>
- </variation>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="규칙 상태" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YhM-wB-ck7" customClass="CustomLabel">
- <rect key="frame" x="27" y="36" width="100" height="21"/>
- <constraints>
- <constraint firstAttribute="width" constant="100" id="TnS-Eh-UXb"/>
- <constraint firstAttribute="height" constant="20" id="dUv-Ak-cKL">
- <variation key="heightClass=regular-widthClass=compact" constant="21"/>
- </constraint>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="OFD-KW-S8x" customClass="CustomButton">
- <rect key="frame" x="251" y="32" width="54" height="27"/>
- <constraints>
- <constraint firstAttribute="height" constant="30" id="wwt-9p-6gi">
- <variation key="heightClass=regular-widthClass=compact" constant="27"/>
- </constraint>
- <constraint firstAttribute="width" constant="50" id="zgU-KU-Dut">
- <variation key="heightClass=regular-widthClass=compact" constant="54"/>
- </constraint>
- </constraints>
- <state key="normal" image="img_rule_list_playbtn_active"/>
- </button>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="OFD-KW-S8x" firstAttribute="top" secondItem="0w7-OO-dQ3" secondAttribute="top" constant="15" id="EYI-xT-7hS">
- <variation key="heightClass=regular-widthClass=compact" constant="32"/>
- </constraint>
- <constraint firstItem="fB9-Wp-UjA" firstAttribute="leading" secondItem="0w7-OO-dQ3" secondAttribute="leading" constant="15" identifier="G2f-Zc-XbD" id="G2f-Zc-XbD"/>
- <constraint firstItem="fB9-Wp-UjA" firstAttribute="centerY" secondItem="YhM-wB-ck7" secondAttribute="centerY" id="Ghe-ax-297"/>
- <constraint firstItem="YhM-wB-ck7" firstAttribute="leading" secondItem="fB9-Wp-UjA" secondAttribute="trailing" constant="4" id="LZe-yF-YdM"/>
- <constraint firstItem="YhM-wB-ck7" firstAttribute="top" secondItem="0w7-OO-dQ3" secondAttribute="top" constant="20" id="hCh-Na-8hy">
- <variation key="heightClass=regular-widthClass=compact" constant="36"/>
- </constraint>
- <constraint firstAttribute="height" constant="60" id="j5d-gc-BhW">
- <variation key="heightClass=regular-widthClass=compact" constant="75"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="OFD-KW-S8x" secondAttribute="trailing" constant="15" id="p4b-oK-zO0"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="fB9-Wp-UjA"/>
- </mask>
- <mask key="constraints">
- <exclude reference="G2f-Zc-XbD"/>
- <exclude reference="Ghe-ax-297"/>
- <exclude reference="LZe-yF-YdM"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="fB9-Wp-UjA"/>
- </mask>
- <mask key="constraints">
- <include reference="G2f-Zc-XbD"/>
- <include reference="Ghe-ax-297"/>
- <include reference="LZe-yF-YdM"/>
- </mask>
- </variation>
- </view>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="최근 실행" textAlignment="right" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="IQk-FF-ctY" customClass="CustomLabel">
- <rect key="frame" x="149" y="94" width="156" height="20"/>
- <constraints>
- <constraint firstAttribute="width" constant="156" id="eC9-kr-nNt"/>
- <constraint firstAttribute="height" constant="20" id="jmc-4V-Afe"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="common_bullet_circle_gray" translatesAutoresizingMaskIntoConstraints="NO" id="huH-u1-I9k">
- <rect key="frame" x="15" y="100" width="8" height="8"/>
- <constraints>
- <constraint firstAttribute="width" constant="8" id="0nr-HH-T2o"/>
- <constraint firstAttribute="height" constant="8" id="kqU-KN-w5N"/>
- </constraints>
- <variation key="default">
- <mask key="constraints">
- <exclude reference="0nr-HH-T2o"/>
- <exclude reference="kqU-KN-w5N"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <include reference="0nr-HH-T2o"/>
- <include reference="kqU-KN-w5N"/>
- </mask>
- </variation>
- </imageView>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="최근 실행" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5Ng-bw-hbB" customClass="CustomLabel">
- <rect key="frame" x="27" y="93" width="100" height="21"/>
- <constraints>
- <constraint firstAttribute="height" constant="20" id="9cs-Su-zDn">
- <variation key="heightClass=regular-widthClass=compact" constant="21"/>
- </constraint>
- <constraint firstAttribute="width" constant="100" id="Xcd-AV-AfR"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="IQk-FF-ctY" firstAttribute="centerY" secondItem="5Ng-bw-hbB" secondAttribute="centerY" id="1us-8o-fNt"/>
- <constraint firstItem="0w7-OO-dQ3" firstAttribute="leading" secondItem="SxE-ob-zas" secondAttribute="leading" id="9kH-JW-LWh"/>
- <constraint firstItem="5Ng-bw-hbB" firstAttribute="leading" secondItem="huH-u1-I9k" secondAttribute="trailing" constant="4" id="DUn-kn-Xm2"/>
- <constraint firstItem="huH-u1-I9k" firstAttribute="centerY" secondItem="5Ng-bw-hbB" secondAttribute="centerY" id="TXC-Xu-qmA"/>
- <constraint firstAttribute="trailing" secondItem="IQk-FF-ctY" secondAttribute="trailing" constant="15" id="epm-xW-QVb"/>
- <constraint firstItem="huH-u1-I9k" firstAttribute="leading" secondItem="SxE-ob-zas" secondAttribute="leading" constant="15" id="hHD-5Z-BYJ"/>
- <constraint firstAttribute="trailing" secondItem="0w7-OO-dQ3" secondAttribute="trailing" id="iYm-e0-08q"/>
- <constraint firstItem="0w7-OO-dQ3" firstAttribute="top" secondItem="SxE-ob-zas" secondAttribute="top" id="w47-Ky-PGH"/>
- <constraint firstItem="5Ng-bw-hbB" firstAttribute="top" secondItem="0w7-OO-dQ3" secondAttribute="bottom" constant="18" id="xx8-gv-kJI"/>
- </constraints>
- <variation key="default">
- <mask key="subviews">
- <exclude reference="huH-u1-I9k"/>
- <exclude reference="5Ng-bw-hbB"/>
- </mask>
- <mask key="constraints">
- <exclude reference="TXC-Xu-qmA"/>
- <exclude reference="hHD-5Z-BYJ"/>
- <exclude reference="DUn-kn-Xm2"/>
- <exclude reference="xx8-gv-kJI"/>
- <exclude reference="1us-8o-fNt"/>
- </mask>
- </variation>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="subviews">
- <include reference="huH-u1-I9k"/>
- <include reference="5Ng-bw-hbB"/>
- </mask>
- <mask key="constraints">
- <include reference="TXC-Xu-qmA"/>
- <include reference="hHD-5Z-BYJ"/>
- <include reference="DUn-kn-Xm2"/>
- <include reference="xx8-gv-kJI"/>
- <include reference="1us-8o-fNt"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <constraints>
- <constraint firstItem="SxE-ob-zas" firstAttribute="top" secondItem="0m9-Sf-UwG" secondAttribute="top" constant="35" id="482-5S-bDx"/>
- <constraint firstAttribute="bottom" secondItem="SxE-ob-zas" secondAttribute="bottom" constant="-1" id="4cy-GW-iyg">
- <variation key="heightClass=regular-widthClass=compact" constant="0.0"/>
- </constraint>
- <constraint firstAttribute="trailing" secondItem="SxE-ob-zas" secondAttribute="trailing" id="lm7-og-WL8"/>
- <constraint firstItem="SxE-ob-zas" firstAttribute="leading" secondItem="0m9-Sf-UwG" secondAttribute="leading" id="pex-gR-rtz"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="btnUseRule" destination="OFD-KW-S8x" id="oFp-oX-oq6"/>
- <outlet property="constraintStatusViewBottom" destination="xx8-gv-kJI" id="ejx-q6-sQ6"/>
- <outlet property="constraintStatusViewHeight" destination="j5d-gc-BhW" id="nBF-aH-XCg"/>
- <outlet property="lblExecutionDate" destination="IQk-FF-ctY" id="BbB-1X-Lnl"/>
- <outlet property="statusView" destination="0w7-OO-dQ3" id="f4b-nw-n08"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="FooterCellIdentifier" rowHeight="15" id="sLC-uE-eKS" customClass="RulesDetailFooterTableViewCell">
- <rect key="frame" x="0.0" y="849" width="320" height="15"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sLC-uE-eKS" id="nmS-Rg-aZV">
- <rect key="frame" x="0.0" y="0.0" width="320" height="14"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wYw-pR-XMg" userLabel="View - Line">
- <rect key="frame" x="0.0" y="0.0" width="320" height="1"/>
- <color key="backgroundColor" red="0.73333333333333328" green="0.73333333333333328" blue="0.73333333333333328" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" relation="greaterThanOrEqual" constant="1" id="e9r-Cu-oEb"/>
- <constraint firstAttribute="height" constant="1" id="jra-dS-3Uu"/>
- </constraints>
- <variation key="heightClass=regular-widthClass=compact">
- <mask key="constraints">
- <exclude reference="e9r-Cu-oEb"/>
- </mask>
- </variation>
- </view>
- </subviews>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="wYw-pR-XMg" firstAttribute="top" secondItem="nmS-Rg-aZV" secondAttribute="top" id="IFA-ZK-JxF"/>
- <constraint firstItem="wYw-pR-XMg" firstAttribute="leading" secondItem="nmS-Rg-aZV" secondAttribute="leading" id="gLA-9U-16B"/>
- <constraint firstAttribute="trailing" secondItem="wYw-pR-XMg" secondAttribute="trailing" id="sKE-KW-LTx"/>
- </constraints>
- </tableViewCellContentView>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="topLine" destination="wYw-pR-XMg" id="a8T-B5-Awy"/>
- </connections>
- </tableViewCell>
- </prototypes>
- </tableView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="IvV-xs-RBq" userLabel="View - actionTab">
- <rect key="frame" x="0.0" y="1516" width="320" height="52"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="jB8-qR-axW" customClass="CustomButton">
- <rect key="frame" x="0.0" y="1" width="320" height="51"/>
- <color key="backgroundColor" red="0.94509803920000002" green="0.94509803920000002" blue="0.94509803920000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="51" id="cHH-I6-FQ3"/>
- </constraints>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <state key="normal" title="닫기">
- <color key="titleColor" red="0.20000000000000001" green="0.20000000000000001" blue="0.20000000000000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="btnCloseTouched:" destination="u0N-2Y-mv7" eventType="touchUpInside" id="Vtg-Bq-p06"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" red="0.73333333329999995" green="0.73333333329999995" blue="0.73333333329999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstItem="jB8-qR-axW" firstAttribute="top" secondItem="IvV-xs-RBq" secondAttribute="top" constant="1" id="1Sg-qv-sQS"/>
- <constraint firstAttribute="height" constant="52" id="HHr-Tz-wAI"/>
- <constraint firstItem="jB8-qR-axW" firstAttribute="leading" secondItem="IvV-xs-RBq" secondAttribute="leading" id="Q90-lS-bjX"/>
- <constraint firstAttribute="trailing" secondItem="jB8-qR-axW" secondAttribute="trailing" id="qcN-VT-1HY"/>
- </constraints>
- </view>
- </subviews>
- <color key="backgroundColor" red="0.94901960780000005" green="0.94901960780000005" blue="0.94901960780000005" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="IvV-xs-RBq" secondAttribute="trailing" id="3m8-Df-AkZ"/>
- <constraint firstAttribute="trailing" secondItem="fuY-Wk-K2F" secondAttribute="trailing" id="7EJ-vA-vlq"/>
- <constraint firstItem="pfS-Ok-rh4" firstAttribute="top" secondItem="lf8-Zc-Oss" secondAttribute="top" id="FBa-UJ-b9j"/>
- <constraint firstItem="IvV-xs-RBq" firstAttribute="leading" secondItem="lf8-Zc-Oss" secondAttribute="leading" id="Gjk-uj-ItK"/>
- <constraint firstItem="fuY-Wk-K2F" firstAttribute="top" secondItem="pfS-Ok-rh4" secondAttribute="bottom" id="Hqt-pJ-is6"/>
- <constraint firstItem="pfS-Ok-rh4" firstAttribute="leading" secondItem="lf8-Zc-Oss" secondAttribute="leading" id="IbW-l6-cjh"/>
- <constraint firstItem="cj9-78-4k8" firstAttribute="leading" secondItem="DZS-Lj-Qe4" secondAttribute="trailing" id="Nzc-i4-DEv"/>
- <constraint firstItem="DZS-Lj-Qe4" firstAttribute="top" secondItem="cj9-78-4k8" secondAttribute="top" id="PTa-BC-zTd"/>
- <constraint firstItem="DZS-Lj-Qe4" firstAttribute="leading" secondItem="lf8-Zc-Oss" secondAttribute="leading" id="g7m-ou-Gas"/>
- <constraint firstAttribute="bottom" secondItem="IvV-xs-RBq" secondAttribute="bottom" id="hp9-nj-q59"/>
- <constraint firstItem="fuY-Wk-K2F" firstAttribute="top" secondItem="DZS-Lj-Qe4" secondAttribute="bottom" id="o2M-33-sCU"/>
- <constraint firstItem="IvV-xs-RBq" firstAttribute="top" secondItem="fuY-Wk-K2F" secondAttribute="bottom" id="x3b-Ap-lVa"/>
- <constraint firstItem="fuY-Wk-K2F" firstAttribute="leading" secondItem="lf8-Zc-Oss" secondAttribute="leading" id="xxw-2p-Av6"/>
- <constraint firstAttribute="trailing" secondItem="pfS-Ok-rh4" secondAttribute="trailing" id="zLY-0v-zKj"/>
- </constraints>
- </view>
- <simulatedStatusBarMetrics key="simulatedStatusBarMetrics"/>
- <freeformSimulatedSizeMetrics key="simulatedDestinationMetrics"/>
- <size key="freeformSize" width="320" height="1568"/>
- <connections>
- <outlet property="lblTitle" destination="cj9-78-4k8" id="P4b-Kw-k1G"/>
- <outlet property="tableView" destination="fuY-Wk-K2F" id="Ea4-Vt-EPU"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Xtd-hR-vcs" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-840" y="671"/>
- </scene>
- </scenes>
- <resources>
- <image name="color_body_01" width="2" height="2"/>
- <image name="common_bullet_alert" width="30" height="30"/>
- <image name="common_bullet_circle_gray" width="10" height="10"/>
- <image name="common_bullet_circle_red" width="10" height="10"/>
- <image name="common_bullet_line" width="1" height="1"/>
- <image name="common_checkbox_checked" width="32" height="32"/>
- <image name="common_checkbox_default" width="32" height="32"/>
- <image name="common_head_btn_close" width="50" height="50"/>
- <image name="common_head_btn_close_press" width="50" height="50"/>
- <image name="common_head_btn_more" width="50" height="50"/>
- <image name="common_head_btn_more_press" width="50" height="50"/>
- <image name="common_list_btn_add" width="40" height="40"/>
- <image name="common_list_btn_add_press" width="40" height="40"/>
- <image name="common_list_btn_big_add" width="44" height="44"/>
- <image name="common_list_btn_big_add_press" width="44" height="44"/>
- <image name="common_list_btn_delete" width="40" height="40"/>
- <image name="common_list_btn_delete_press" width="40" height="40"/>
- <image name="img_1depth_invitation" width="150" height="150"/>
- <image name="img_input_round_bg_default" width="50" height="35"/>
- <image name="img_rule_icon_message" width="50" height="50"/>
- <image name="img_rule_list_playbtn_active" width="54" height="27"/>
- <image name="img_things_list_btn_delete" width="41" height="32"/>
- <image name="img_things_list_btn_delete_press" width="41" height="32"/>
- <image name="shadow_top" width="1" height="1"/>
- </resources>
- </document>
|