123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917 |
- <?xml version="1.0" encoding="UTF-8"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17700" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="dJ7-PD-SVV">
- <device id="retina5_9" orientation="portrait" appearance="light"/>
- <dependencies>
- <deployment identifier="iOS"/>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
- <capability name="Safe area layout guides" minToolsVersion="9.0"/>
- <capability name="Stack View standard spacing" minToolsVersion="9.0"/>
- <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
- </dependencies>
- <scenes>
- <!--My Profile-->
- <scene sceneID="ZnN-fY-gDI">
- <objects>
- <tableViewController storyboardIdentifier="myIdentityViewController" id="dJ7-PD-SVV" customClass="MyIdentityViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="CbE-pr-TS3">
- <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" id="JFg-yv-bGa">
- <rect key="frame" x="0.0" y="0.0" width="375" height="363"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="qIz-ao-zUS">
- <rect key="frame" x="16" y="16" width="343" height="331"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="GPr-Pt-WgN">
- <rect key="frame" x="71.666666666666686" y="0.0" width="200" height="200"/>
- <subviews>
- <imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" preservesSuperviewLayoutMargins="YES" translatesAutoresizingMaskIntoConstraints="NO" id="240-nb-z1c">
- <rect key="frame" x="0.0" y="0.0" width="200" height="200"/>
- <accessibility key="accessibilityConfiguration">
- <bool key="isElement" value="YES"/>
- </accessibility>
- <constraints>
- <constraint firstAttribute="width" secondItem="240-nb-z1c" secondAttribute="height" multiplier="1:1" id="gna-YS-qg2"/>
- </constraints>
- </imageView>
- <imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="QRCodeBackground" translatesAutoresizingMaskIntoConstraints="NO" id="h8X-4i-Ua5">
- <rect key="frame" x="140" y="140" width="70" height="70"/>
- <constraints>
- <constraint firstAttribute="width" constant="70" id="P3z-NF-YWw"/>
- <constraint firstAttribute="height" constant="70" id="qlr-6T-1io"/>
- </constraints>
- </imageView>
- <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Fqk-mu-IBk">
- <rect key="frame" x="150" y="150" width="50" height="50"/>
- <accessibility key="accessibilityConfiguration" identifier="qrCodeButton"/>
- <constraints>
- <constraint firstAttribute="width" constant="50" id="QMK-cY-e9n"/>
- <constraint firstAttribute="width" secondItem="Fqk-mu-IBk" secondAttribute="height" multiplier="1:1" id="bfM-t5-0r7"/>
- </constraints>
- <color key="tintColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <state key="normal" image="QRCode"/>
- </button>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="Fqk-mu-IBk" firstAttribute="bottom" secondItem="240-nb-z1c" secondAttribute="bottom" id="7Ad-DT-8UT"/>
- <constraint firstItem="240-nb-z1c" firstAttribute="leading" secondItem="GPr-Pt-WgN" secondAttribute="leading" id="9J5-6z-BCC"/>
- <constraint firstAttribute="height" constant="200" id="GZg-vl-8iR"/>
- <constraint firstItem="240-nb-z1c" firstAttribute="top" secondItem="GPr-Pt-WgN" secondAttribute="top" id="Ina-Xm-eGd"/>
- <constraint firstItem="Fqk-mu-IBk" firstAttribute="trailing" secondItem="240-nb-z1c" secondAttribute="trailing" id="MB4-Vu-XUY"/>
- <constraint firstItem="h8X-4i-Ua5" firstAttribute="centerX" secondItem="Fqk-mu-IBk" secondAttribute="centerX" id="Pwr-ya-vRE"/>
- <constraint firstItem="h8X-4i-Ua5" firstAttribute="centerY" secondItem="Fqk-mu-IBk" secondAttribute="centerY" id="lxX-hk-yf7"/>
- <constraint firstAttribute="trailing" secondItem="240-nb-z1c" secondAttribute="trailing" id="xcN-6C-FPr"/>
- <constraint firstAttribute="bottom" secondItem="240-nb-z1c" secondAttribute="bottom" id="zgm-hu-3tv"/>
- </constraints>
- </view>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="uIQ-H2-BNh">
- <rect key="frame" x="92.333333333333329" y="210" width="158.66666666666669" height="121"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="2" translatesAutoresizingMaskIntoConstraints="NO" id="TQN-ez-vdI">
- <rect key="frame" x="0.0" y="0.0" width="158.66666666666666" height="54.666666666666664"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" text="Nickname" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YyS-mS-2B1">
- <rect key="frame" x="45.000000000000021" y="0.0" width="68.333333333333314" height="18"/>
- <accessibility key="accessibilityConfiguration">
- <bool key="isElement" value="NO"/>
- </accessibility>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <stackView opaque="NO" contentMode="scaleAspectFit" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="uIu-aK-Grz">
- <rect key="frame" x="0.0" y="19.999999999999996" width="158.66666666666666" height="34.666666666666657"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleToFill" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="749" text="Nickname" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="h9u-uR-RRc" userLabel="Nick Name Label">
- <rect key="frame" x="0.0" y="0.0" width="121.66666666666667" height="34.666666666666664"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle1"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Uk4-Sq-7sa">
- <rect key="frame" x="126.66666666666669" y="1.3333333333333428" width="32" height="32"/>
- <constraints>
- <constraint firstAttribute="height" constant="32" id="GTi-ik-sW1"/>
- <constraint firstAttribute="width" constant="32" id="XsW-oF-mFz"/>
- </constraints>
- <color key="tintColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
- <state key="normal" image="Edit"/>
- </button>
- </subviews>
- </stackView>
- </subviews>
- </stackView>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="2" translatesAutoresizingMaskIntoConstraints="NO" id="6IR-el-cgR">
- <rect key="frame" x="0.0" y="66" width="158.66666666666666" height="55"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Threema ID" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xrG-XN-fYs">
- <rect key="frame" x="39.666666666666679" y="0.0" width="79.333333333333314" height="18"/>
- <accessibility key="accessibilityConfiguration">
- <bool key="isElement" value="NO"/>
- </accessibility>
- <constraints>
- <constraint firstAttribute="height" constant="18" id="Pmu-cx-jdb"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <stackView opaque="NO" contentMode="scaleToFill" alignment="center" spacing="5" translatesAutoresizingMaskIntoConstraints="NO" id="vwB-T7-fgP">
- <rect key="frame" x="2.3333333333333428" y="20" width="153.66666666666666" height="35"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXXXXXX" lineBreakMode="clip" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QTy-20-z7s" userLabel="Threema ID Label" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="0.0" width="113.66666666666667" height="35"/>
- <constraints>
- <constraint firstAttribute="height" constant="35" id="Mvl-dt-cIn"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle2"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="ucS-eu-zkE">
- <rect key="frame" x="118.66666666666669" y="0.0" width="35" height="35"/>
- <constraints>
- <constraint firstAttribute="height" constant="35" id="P2N-R2-xI3"/>
- <constraint firstAttribute="width" constant="35" id="zUF-Hd-2Gt"/>
- </constraints>
- <state key="normal" image="Share"/>
- </button>
- </subviews>
- </stackView>
- </subviews>
- </stackView>
- </subviews>
- </stackView>
- </subviews>
- <color key="tintColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </stackView>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="qIz-ao-zUS" secondAttribute="trailing" constant="16" id="H7Q-BU-U5g"/>
- <constraint firstItem="qIz-ao-zUS" firstAttribute="top" secondItem="JFg-yv-bGa" secondAttribute="top" constant="16" id="Oey-HD-Ac4"/>
- <constraint firstItem="qIz-ao-zUS" firstAttribute="leading" secondItem="JFg-yv-bGa" secondAttribute="leading" constant="16" id="PN5-pg-hLU"/>
- <constraint firstAttribute="bottom" secondItem="qIz-ao-zUS" secondAttribute="bottom" constant="16" id="zJg-Wv-ghh"/>
- </constraints>
- </view>
- <sections>
- <tableViewSection id="NUr-0t-zng">
- <string key="footerTitle">Linking your email address or phone number to your ID lets other people find you on Threema automatically if they have you in their address book.</string>
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="UWU-JO-PcU" detailTextLabel="H7W-RZ-gej" style="IBUITableViewCellStyleValue1" id="75Z-7T-ghb">
- <rect key="frame" x="0.0" y="380.66666603088379" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="75Z-7T-ghb" id="jqc-Gw-cIf">
- <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Linked Number" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="UWU-JO-PcU">
- <rect key="frame" x="16" y="11.999999999999998" width="116" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="H7W-RZ-gej">
- <rect key="frame" x="296" y="11.999999999999998" width="43.666666666666664" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Re1-k2-FsT" detailTextLabel="yaz-xj-2bb" style="IBUITableViewCellStyleValue1" id="GE5-OE-9yC">
- <rect key="frame" x="0.0" y="424.66666603088379" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="GE5-OE-9yC" id="anO-LD-z6w">
- <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Linked Email" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Re1-k2-FsT">
- <rect key="frame" x="16" y="11.999999999999998" width="95.333333333333329" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="yaz-xj-2bb">
- <rect key="frame" x="296" y="11.999999999999998" width="43.666666666666664" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="rxw-EU-IYk" kind="presentation" identifier="LinkEmail" id="Uy3-Bj-MpJ"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="tyf-Gf-Cky">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaSafeCell" textLabel="KKh-sE-YNq" detailTextLabel="m6i-Rb-VUQ" style="IBUITableViewCellStyleValue1" id="aaF-P0-G26">
- <rect key="frame" x="0.0" y="548.33333206176758" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="aaF-P0-G26" id="Cey-L8-Mn8">
- <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Safe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" adjustsFontForContentSizeCategory="YES" id="KKh-sE-YNq">
- <rect key="frame" x="16" y="11.999999999999998" width="106" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="..." textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" adjustsFontForContentSizeCategory="YES" id="m6i-Rb-VUQ">
- <rect key="frame" x="325.66666666666669" y="11.999999999999998" width="14" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration" identifier="SafeCell"/>
- <connections>
- <segue destination="sq0-x9-MA6" kind="show" identifier="segueSafeSetup" id="i2Y-pN-1bh"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="eka-vL-Sw3">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="64" id="rKL-oW-BLF">
- <rect key="frame" x="0.0" y="631.99999809265137" width="375" height="64"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="rKL-oW-BLF" id="3Ck-1X-MFs">
- <rect key="frame" x="0.0" y="0.0" width="375" height="64"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Key Fingerprint" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="sJA-2q-zE2">
- <rect key="frame" x="16" y="14" width="343" height="21"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" preservesSuperviewLayoutMargins="YES" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="BzD-7E-yoJ" customClass="CopyLabel">
- <rect key="frame" x="16" y="37" width="343" height="13"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="sJA-2q-zE2" firstAttribute="top" secondItem="3Ck-1X-MFs" secondAttribute="topMargin" constant="3" id="QTC-HC-SR8"/>
- <constraint firstAttribute="trailingMargin" secondItem="sJA-2q-zE2" secondAttribute="trailing" id="TIg-0G-hbu"/>
- <constraint firstItem="sJA-2q-zE2" firstAttribute="leading" secondItem="3Ck-1X-MFs" secondAttribute="leadingMargin" id="dTm-L6-Rw4"/>
- <constraint firstItem="BzD-7E-yoJ" firstAttribute="top" secondItem="sJA-2q-zE2" secondAttribute="bottom" constant="2" id="fsN-Ae-wGJ"/>
- <constraint firstAttribute="trailingMargin" secondItem="BzD-7E-yoJ" secondAttribute="trailing" id="h5o-NB-9kL"/>
- <constraint firstAttribute="bottomMargin" secondItem="BzD-7E-yoJ" secondAttribute="bottom" constant="3" id="oJv-nv-TGZ"/>
- <constraint firstItem="BzD-7E-yoJ" firstAttribute="leading" secondItem="3Ck-1X-MFs" secondAttribute="leadingMargin" id="tFl-ZQ-auj"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="BackupCell" textLabel="eS1-Gf-A4o" style="IBUITableViewCellStyleDefault" id="Gfc-TA-cSE">
- <rect key="frame" x="0.0" y="695.99999809265137" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Gfc-TA-cSE" id="fWd-fZ-lUS">
- <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID Backup" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="eS1-Gf-A4o">
- <rect key="frame" x="16" y="0.0" width="323.66666666666669" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="IDRecoveryCell" textLabel="XOE-qz-Fzh" detailTextLabel="gan-4f-TrM" style="IBUITableViewCellStyleValue1" id="6LU-p9-SGJ">
- <rect key="frame" x="0.0" y="739.99999809265137" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6LU-p9-SGJ" id="vOK-dl-Rba">
- <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID Revocation Password" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" adjustsFontForContentSizeCategory="YES" id="XOE-qz-Fzh">
- <rect key="frame" x="16" y="11.999999999999998" width="182.33333333333334" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="..." textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.5" adjustsFontForContentSizeCategory="YES" id="gan-4f-TrM">
- <rect key="frame" x="325.66666666666669" y="11.999999999999998" width="14" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="rO9-tZ-52h">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="ISb-ca-Ste" style="IBUITableViewCellStyleDefault" id="lxM-8x-FuK">
- <rect key="frame" x="0.0" y="823.66666412353516" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="lxM-8x-FuK" id="Ukd-i5-Hb5">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Delete ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="ISb-ca-Ste">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES" staticText="YES"/>
- </accessibility>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration" identifier="DeleteButton"/>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="dJ7-PD-SVV" id="ZaL-RM-brj"/>
- <outlet property="delegate" destination="dJ7-PD-SVV" id="a78-Bd-VNs"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="My Profile" id="8Pu-jd-SHn">
- <barButtonItem key="rightBarButtonItem" image="QRScan" id="9vf-d1-s80">
- <connections>
- <action selector="scanIdentity:" destination="dJ7-PD-SVV" id="JMY-aN-Ejy"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="backupCell" destination="Gfc-TA-cSE" id="PR8-PW-jAf"/>
- <outlet property="deleteIdCell" destination="lxM-8x-FuK" id="TYT-a3-8hc"/>
- <outlet property="editButton" destination="Uk4-Sq-7sa" id="KVz-FD-JLf"/>
- <outlet property="headerView" destination="JFg-yv-bGa" id="Rbb-LS-KbC"/>
- <outlet property="idRecoveryCell" destination="6LU-p9-SGJ" id="Ji7-e4-h7t"/>
- <outlet property="imageView" destination="240-nb-z1c" id="LG0-QJ-CgU"/>
- <outlet property="keyFingerprintLabel" destination="BzD-7E-yoJ" id="Jrt-2Z-VLd"/>
- <outlet property="linkEmailCell" destination="GE5-OE-9yC" id="i54-Tb-fu7"/>
- <outlet property="linkPhoneCell" destination="75Z-7T-ghb" id="vd0-ih-qGD"/>
- <outlet property="linkedEmailLabel" destination="yaz-xj-2bb" id="xJa-Ze-r3g"/>
- <outlet property="linkedMobileNoLabel" destination="H7W-RZ-gej" id="cJx-s3-qwr"/>
- <outlet property="nickNameLabel" destination="h9u-uR-RRc" id="OQT-Zf-ah1"/>
- <outlet property="nickNameTitleLabel" destination="YyS-mS-2B1" id="uqO-ER-CEt"/>
- <outlet property="qrBackgroundImageView" destination="h8X-4i-Ua5" id="Zxg-hM-VHH"/>
- <outlet property="qrCodeButton" destination="Fqk-mu-IBk" id="sS1-dG-seU"/>
- <outlet property="revocationLabelDetail" destination="gan-4f-TrM" id="gPX-Gp-anV"/>
- <outlet property="scanQrCodeBarButtonItem" destination="9vf-d1-s80" id="XG1-D5-NTe"/>
- <outlet property="shareIdButton" destination="ucS-eu-zkE" id="TgM-uj-Lz4"/>
- <outlet property="threemaIdLabel" destination="QTy-20-z7s" id="6NF-8S-eKu"/>
- <outlet property="threemaIdTitleLabel" destination="xrG-XN-fYs" id="xHa-Uf-K1h"/>
- <outlet property="threemaSafeCell" destination="aaF-P0-G26" id="sui-23-IgF"/>
- <outlet property="threemaSafeLabel" destination="m6i-Rb-VUQ" id="eV7-7h-VCS"/>
- <segue destination="2KJ-nO-VRW" kind="presentation" identifier="EnterCode" id="FQr-eH-c6c"/>
- <segue destination="wMs-cI-B0Y" kind="show" identifier="LinkMobileNo" id="0UP-TJ-JFm"/>
- <segue destination="g1k-yd-5wU" kind="show" identifier="EditProfile" id="e0u-Qb-ydA"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="qv1-9v-cRh" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-311.59420289855075" y="1477.9017857142856"/>
- </scene>
- <!--Link Email-->
- <scene sceneID="762-YK-zLq">
- <objects>
- <tableViewController id="aap-OX-gcb" customClass="LinkEmailViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="fKU-t0-SBP">
- <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="qQD-Gd-ca9">
- <string key="footerTitle">Linking your email address to your ID lets other people find you on Threema automatically if they have your email in their address book.</string>
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="77l-JS-8j7">
- <rect key="frame" x="0.0" y="17.666666030883789" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="77l-JS-8j7" id="rNF-xx-bnj">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="your email address" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="always" translatesAutoresizingMaskIntoConstraints="NO" id="5bh-L5-CVm">
- <rect key="frame" x="16" y="30" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle2"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="emailAddress" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <action selector="saveAction:" destination="aap-OX-gcb" eventType="editingDidEndOnExit" id="kKq-p2-iY1"/>
- </connections>
- </textField>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Email address" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="JRY-UB-2Zx">
- <rect key="frame" x="16" y="14" width="343" height="9"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="5bh-L5-CVm" firstAttribute="top" secondItem="JRY-UB-2Zx" secondAttribute="bottom" constant="7" id="CZu-m9-jeL"/>
- <constraint firstItem="5bh-L5-CVm" firstAttribute="leading" secondItem="rNF-xx-bnj" secondAttribute="leadingMargin" id="DJK-BD-gLm"/>
- <constraint firstItem="5bh-L5-CVm" firstAttribute="top" secondItem="JRY-UB-2Zx" secondAttribute="bottom" constant="7" id="H6X-lX-V1E"/>
- <constraint firstItem="JRY-UB-2Zx" firstAttribute="leading" secondItem="rNF-xx-bnj" secondAttribute="leadingMargin" id="LbA-2O-axv"/>
- <constraint firstAttribute="bottomMargin" secondItem="5bh-L5-CVm" secondAttribute="bottom" constant="3" id="SW4-9g-L3c"/>
- <constraint firstAttribute="trailingMargin" secondItem="5bh-L5-CVm" secondAttribute="trailing" id="VIF-gm-dHX"/>
- <constraint firstAttribute="trailingMargin" secondItem="JRY-UB-2Zx" secondAttribute="trailing" id="nkL-4m-lxp"/>
- <constraint firstItem="JRY-UB-2Zx" firstAttribute="top" secondItem="rNF-xx-bnj" secondAttribute="topMargin" constant="3" id="wd1-lE-CrS"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="aap-OX-gcb" id="VFx-ZF-ulg"/>
- <outlet property="delegate" destination="aap-OX-gcb" id="vXQ-Bh-4vd"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Link Email" id="uEL-Yh-Kca">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="5CZ-PO-zfO">
- <connections>
- <action selector="cancelAction:" destination="aap-OX-gcb" id="PE6-FM-3zB"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="9GZ-ew-m9u">
- <connections>
- <action selector="saveAction:" destination="aap-OX-gcb" id="jfK-af-Wed"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="emailTextField" destination="5bh-L5-CVm" id="CaT-FI-KoQ"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="mos-3d-faU" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1266" y="1252"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="qsD-IE-9kI">
- <objects>
- <navigationController id="rxw-EU-IYk" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="SNO-V5-kEn" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="aap-OX-gcb" kind="relationship" relationship="rootViewController" id="y6A-mT-0mQ"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="r1U-Q0-3rz" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="524" y="1252"/>
- </scene>
- <!--Link Number-->
- <scene sceneID="82o-FU-7RS">
- <objects>
- <tableViewController id="Sjf-Bz-bLl" customClass="LinkMobileNoViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="ss1-T3-EaY">
- <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="z3E-MB-Mey">
- <string key="footerTitle">Linking your phone number to your ID lets other people find you on Threema automatically if they have your phone number in their address book.</string>
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="gLJ-hQ-07b">
- <rect key="frame" x="0.0" y="17.666666030883789" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="gLJ-hQ-07b" id="Ovh-u2-upx">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="your phone number" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="always" translatesAutoresizingMaskIntoConstraints="NO" id="FRl-f2-pIa">
- <rect key="frame" x="16" y="30" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle2"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="phonePad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <action selector="saveAction:" destination="Sjf-Bz-bLl" eventType="editingDidEndOnExit" id="9Tg-oE-LJe"/>
- </connections>
- </textField>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Phone Number" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QCC-2k-HfZ">
- <rect key="frame" x="16" y="14" width="343" height="9"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="FRl-f2-pIa" firstAttribute="top" secondItem="QCC-2k-HfZ" secondAttribute="bottom" constant="7" id="1Eo-BS-Kd6"/>
- <constraint firstItem="FRl-f2-pIa" firstAttribute="leading" secondItem="Ovh-u2-upx" secondAttribute="leadingMargin" id="1Ii-So-fzo"/>
- <constraint firstItem="QCC-2k-HfZ" firstAttribute="top" secondItem="Ovh-u2-upx" secondAttribute="topMargin" constant="3" id="32c-f9-fYl"/>
- <constraint firstAttribute="bottomMargin" secondItem="FRl-f2-pIa" secondAttribute="bottom" constant="3" id="3Ho-mB-LEZ"/>
- <constraint firstAttribute="trailingMargin" secondItem="FRl-f2-pIa" secondAttribute="trailing" id="Mmh-JT-4s7"/>
- <constraint firstAttribute="trailingMargin" secondItem="QCC-2k-HfZ" secondAttribute="trailing" id="Xym-gz-k6g"/>
- <constraint firstItem="QCC-2k-HfZ" firstAttribute="leading" secondItem="Ovh-u2-upx" secondAttribute="leadingMargin" id="a0i-ye-5gi"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="Sjf-Bz-bLl" id="Fj5-Dr-kis"/>
- <outlet property="delegate" destination="Sjf-Bz-bLl" id="9ef-Oy-UWE"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Link Number" id="ELz-zT-AmB">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="Whn-3N-dB7">
- <connections>
- <action selector="cancelAction:" destination="Sjf-Bz-bLl" id="trb-dD-WxY"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="eb9-Vg-cMJ">
- <connections>
- <action selector="saveAction:" destination="Sjf-Bz-bLl" id="gAB-Y1-abX"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="mobileNoTextField" destination="FRl-f2-pIa" id="HeA-9L-LcC"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="ggK-4N-hAk" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-170" y="2363"/>
- </scene>
- <!--Delete Identity View Controller-->
- <scene sceneID="NsD-KI-g5U">
- <objects>
- <viewController storyboardIdentifier="DeleteIdViewController" id="59m-EH-SeW" customClass="DeleteIdentityViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="OTu-jY-lJ0" customClass="WizardBackgroundView" customModule="ThreemaFramework">
- <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" alignment="center" spacing="20" translatesAutoresizingMaskIntoConstraints="NO" id="c59-aY-Ngh">
- <rect key="frame" x="30" y="344" width="315" height="124"/>
- <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="seC-te-7L0">
- <rect key="frame" x="124.33333333333334" y="0.0" width="66.333333333333343" height="33.666666666666664"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle1"/>
- <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="center" lineBreakMode="wordWrap" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="cmC-T0-PCP">
- <rect key="frame" x="137" y="53.666666666666686" width="41.333333333333343" height="20.333333333333329"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Jug-be-JzD" customClass="SetupButton" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="82.666666666666686" y="94" width="150" height="30"/>
- <constraints>
- <constraint firstAttribute="width" constant="150" id="oQ8-i4-Syu"/>
- </constraints>
- <state key="normal" title="Button"/>
- <connections>
- <action selector="touchDownButton:" destination="59m-EH-SeW" eventType="touchDown" id="Wl7-d4-JtM"/>
- </connections>
- </button>
- </subviews>
- </stackView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="Jji-fz-rdr"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="c59-aY-Ngh" firstAttribute="centerY" secondItem="OTu-jY-lJ0" secondAttribute="centerY" id="4iK-Bc-ZfS"/>
- <constraint firstItem="c59-aY-Ngh" firstAttribute="leading" secondItem="Jji-fz-rdr" secondAttribute="leading" constant="30" id="EOs-p7-7Q6"/>
- <constraint firstItem="Jji-fz-rdr" firstAttribute="trailing" secondItem="c59-aY-Ngh" secondAttribute="trailing" constant="30" id="goL-vg-A1u"/>
- </constraints>
- </view>
- <connections>
- <outlet property="closeButton" destination="Jug-be-JzD" id="dBy-pq-YJ5"/>
- <outlet property="descriptionLabel" destination="cmC-T0-PCP" id="sym-dC-tek"/>
- <outlet property="titleLabel" destination="seC-te-7L0" id="Twd-QP-ByC"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Rpt-1X-6P3" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1754" y="1930"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="1O3-ah-GUc">
- <objects>
- <navigationController id="wMs-cI-B0Y" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="W4X-ql-dIM" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="Sjf-Bz-bLl" kind="relationship" relationship="rootViewController" id="avU-bN-xEw"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="bQ3-lW-7S3" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-911" y="2363"/>
- </scene>
- <!--Enter code-->
- <scene sceneID="Q0O-tp-DaN">
- <objects>
- <tableViewController id="nNM-nu-XB2" customClass="EnterCodeViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="HTA-Q8-IA3">
- <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection footerTitle="Number: +41 79 123 45 67" id="5HP-W8-nFp">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="W9m-3i-YXI">
- <rect key="frame" x="0.0" y="17.666666030883789" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="W9m-3i-YXI" id="tLQ-9j-jCh">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="code" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="always" translatesAutoresizingMaskIntoConstraints="NO" id="KTz-4x-SnC">
- <rect key="frame" x="16" y="30" width="343" height="0.0"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleTitle1"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="numberPad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <action selector="doneAction:" destination="nNM-nu-XB2" eventType="editingDidEndOnExit" id="8zB-Ge-tr9"/>
- </connections>
- </textField>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Enter code" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="xih-kT-hBC">
- <rect key="frame" x="16" y="14" width="343" height="9"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <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="xih-kT-hBC" firstAttribute="top" secondItem="tLQ-9j-jCh" secondAttribute="topMargin" constant="3" id="4gu-Zf-99o"/>
- <constraint firstAttribute="bottomMargin" secondItem="KTz-4x-SnC" secondAttribute="bottom" constant="3" id="AVw-NW-Ihg"/>
- <constraint firstItem="xih-kT-hBC" firstAttribute="leading" secondItem="tLQ-9j-jCh" secondAttribute="leadingMargin" id="AtI-c9-4JJ"/>
- <constraint firstAttribute="trailingMargin" secondItem="KTz-4x-SnC" secondAttribute="trailing" id="B37-GN-ZTX"/>
- <constraint firstAttribute="trailingMargin" secondItem="xih-kT-hBC" secondAttribute="trailing" id="BsG-cJ-GPL"/>
- <constraint firstItem="KTz-4x-SnC" firstAttribute="leading" secondItem="tLQ-9j-jCh" secondAttribute="leadingMargin" id="Kuh-tb-BcV"/>
- <constraint firstItem="KTz-4x-SnC" firstAttribute="top" secondItem="xih-kT-hBC" secondAttribute="bottom" constant="7" id="WNp-pi-MRe"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="en3-1n-e6P">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" indentationWidth="10" textLabel="RvX-Ht-6JQ" detailTextLabel="xdM-Ja-eNy" imageView="Jvb-1y-wcB" style="IBUITableViewCellStyleValue1" id="gal-dG-c9t">
- <rect key="frame" x="0.0" y="109.33333206176758" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="gal-dG-c9t" id="PLh-QF-w6C">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Request Call" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="RvX-Ht-6JQ">
- <rect key="frame" x="55.999999999999993" y="11.999999999999998" width="95.333333333333329" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="05:00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="xdM-Ja-eNy">
- <rect key="frame" x="313.33333333333331" y="11.999999999999998" width="45.666666666666664" height="20.333333333333332"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="Phone" highlightedImage="Phone" id="Jvb-1y-wcB">
- <rect key="frame" x="16" y="9.3333333333333357" width="25" height="25"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="wJP-Jf-Pgx" style="IBUITableViewCellStyleDefault" id="D4c-fJ-kWC">
- <rect key="frame" x="0.0" y="153.33333206176758" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="D4c-fJ-kWC" id="89a-uQ-Jw7">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Abort Verification" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="wJP-Jf-Pgx">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="nNM-nu-XB2" id="Ovk-c9-JGh"/>
- <outlet property="delegate" destination="nNM-nu-XB2" id="ueg-vs-8EK"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Enter code" id="tGC-WP-fBC">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="dq4-r0-bGE">
- <connections>
- <action selector="cancelAction:" destination="nNM-nu-XB2" id="n86-A9-se1"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="5U4-du-AfH">
- <connections>
- <action selector="doneAction:" destination="nNM-nu-XB2" id="tTC-te-Voe"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="abortCell" destination="D4c-fJ-kWC" id="hxL-zi-IOX"/>
- <outlet property="callMeCell" destination="gal-dG-c9t" id="0Xw-pR-p9k"/>
- <outlet property="codeTextField" destination="KTz-4x-SnC" id="3Ai-Da-3u9"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="1hm-WI-Rqp" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="766" y="483"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="7AN-1n-lXk">
- <objects>
- <navigationController id="2KJ-nO-VRW" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="Tdi-uV-cV7" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="nNM-nu-XB2" kind="relationship" relationship="rootViewController" id="s9J-3G-9Ci"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="VEc-N6-Y6z" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="55" y="483"/>
- </scene>
- <!--Edit Profile-->
- <scene sceneID="c9T-x4-Rwv">
- <objects>
- <tableViewController storyboardIdentifier="EditProfileViewController" id="g1k-yd-5wU" customClass="EditProfileViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="sy7-03-cpr">
- <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="2vB-fG-Pid">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="6L9-mt-j2J">
- <rect key="frame" x="0.0" y="17.666666030883789" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6L9-mt-j2J" id="Z1o-K2-6MX">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Kpc-wF-q0O" customClass="EditableAvatarView">
- <rect key="frame" x="16" y="-20" width="84" height="84"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <constraints>
- <constraint firstAttribute="height" constant="84" id="LOn-4k-cGF"/>
- <constraint firstAttribute="width" constant="84" id="dqy-DG-Nah"/>
- </constraints>
- </view>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Czp-pE-Dus">
- <rect key="frame" x="115" y="0.66666666666666785" width="250" height="43"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="251" verticalCompressionResistancePriority="751" text="Nickname" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NLA-jz-irZ">
- <rect key="frame" x="0.0" y="0.0" width="250" height="18"/>
- <accessibility key="accessibilityConfiguration">
- <bool key="isElement" value="NO"/>
- </accessibility>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Nickname" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="o3l-bU-add">
- <rect key="frame" x="0.0" y="21" width="250" height="22"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
- <connections>
- <outlet property="delegate" destination="g1k-yd-5wU" id="ria-VF-ctH"/>
- </connections>
- </textField>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="calibratedWhite"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="o3l-bU-add" secondAttribute="bottom" id="79E-oX-n7z"/>
- <constraint firstItem="NLA-jz-irZ" firstAttribute="leading" secondItem="Czp-pE-Dus" secondAttribute="leading" id="CAd-gh-hJ9"/>
- <constraint firstAttribute="trailing" secondItem="NLA-jz-irZ" secondAttribute="trailing" id="SHd-Z6-FQr"/>
- <constraint firstItem="o3l-bU-add" firstAttribute="leading" secondItem="Czp-pE-Dus" secondAttribute="leading" id="ZfF-g4-LT7"/>
- <constraint firstItem="o3l-bU-add" firstAttribute="top" secondItem="NLA-jz-irZ" secondAttribute="bottom" constant="3" id="j8v-wF-xyk"/>
- <constraint firstAttribute="trailing" secondItem="o3l-bU-add" secondAttribute="trailing" id="jAK-XN-Wvq"/>
- <constraint firstItem="NLA-jz-irZ" firstAttribute="top" secondItem="Czp-pE-Dus" secondAttribute="top" id="lIX-RB-rce"/>
- </constraints>
- </view>
- </subviews>
- <constraints>
- <constraint firstItem="Czp-pE-Dus" firstAttribute="leading" secondItem="Kpc-wF-q0O" secondAttribute="trailing" constant="15" id="JMZ-FX-YZR"/>
- <constraint firstAttribute="bottom" secondItem="Kpc-wF-q0O" secondAttribute="bottom" priority="750" constant="10" id="PfQ-cR-sGm"/>
- <constraint firstItem="Czp-pE-Dus" firstAttribute="centerY" secondItem="Kpc-wF-q0O" secondAttribute="centerY" id="RIy-y2-T1A"/>
- <constraint firstItem="Kpc-wF-q0O" firstAttribute="centerY" secondItem="Z1o-K2-6MX" secondAttribute="centerY" id="TOl-o6-Rbf"/>
- <constraint firstItem="Kpc-wF-q0O" firstAttribute="top" secondItem="Z1o-K2-6MX" secondAttribute="top" priority="750" constant="10" id="XSq-xA-sUf"/>
- <constraint firstAttribute="trailing" secondItem="Czp-pE-Dus" secondAttribute="trailing" constant="10" id="YlL-Gw-vlc"/>
- <constraint firstItem="Kpc-wF-q0O" firstAttribute="leading" secondItem="Z1o-K2-6MX" secondAttribute="leadingMargin" id="wdH-Ji-bbT"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="4dd-m1-BwX">
- <rect key="frame" x="0.0" y="61.666666030883789" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="4dd-m1-BwX" id="Ghg-7W-Knc">
- <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="749" text="Release profile picture to" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="vvJ-Em-VJ0">
- <rect key="frame" x="16" y="11" width="189.33333333333334" height="22"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="249" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text=" kajsdkf jalksjdölfk jaklsj dfkjasdkö " textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="YYH-qM-Srd">
- <rect key="frame" x="217.99999999999997" y="15" width="121.66666666666666" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="vvJ-Em-VJ0" firstAttribute="centerY" secondItem="Ghg-7W-Knc" secondAttribute="centerY" id="4Eg-sL-swg"/>
- <constraint firstAttribute="trailingMargin" secondItem="YYH-qM-Srd" secondAttribute="trailing" id="Fbz-Ve-vEi"/>
- <constraint firstAttribute="bottomMargin" secondItem="vvJ-Em-VJ0" secondAttribute="bottom" id="GQQ-Hy-D7t"/>
- <constraint firstItem="YYH-qM-Srd" firstAttribute="centerY" secondItem="Ghg-7W-Knc" secondAttribute="centerY" id="P7X-2e-ATY"/>
- <constraint firstItem="vvJ-Em-VJ0" firstAttribute="top" secondItem="Ghg-7W-Knc" secondAttribute="topMargin" id="UVh-I4-oJz"/>
- <constraint firstItem="YYH-qM-Srd" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="vvJ-Em-VJ0" secondAttribute="trailing" constant="10" id="ami-eR-zs2"/>
- <constraint firstItem="YYH-qM-Srd" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Ghg-7W-Knc" secondAttribute="topMargin" constant="4" id="eRb-7E-JJT"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="YYH-qM-Srd" secondAttribute="bottom" constant="4" id="j4I-az-86c"/>
- <constraint firstItem="vvJ-Em-VJ0" firstAttribute="leading" secondItem="Ghg-7W-Knc" secondAttribute="leadingMargin" id="vrt-oG-JLn"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <segue destination="lpv-Od-k2f" kind="show" id="OIe-HD-5cK"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="g1k-yd-5wU" id="Rs0-Hd-deJ"/>
- <outlet property="delegate" destination="g1k-yd-5wU" id="FkF-Ys-UNl"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Edit Profile" largeTitleDisplayMode="never" id="jni-2G-zzz"/>
- <connections>
- <outlet property="avatarView" destination="Kpc-wF-q0O" id="czU-80-tB6"/>
- <outlet property="contactsSettingValue" destination="YYH-qM-Srd" id="Es0-JM-kPD"/>
- <outlet property="nickNameTextField" destination="o3l-bU-add" id="apR-uA-szb"/>
- <outlet property="nickNameTitleLabel" destination="NLA-jz-irZ" id="8ms-1u-xTY"/>
- <outlet property="profileCell" destination="6L9-mt-j2J" id="hRf-Uc-zch"/>
- <outlet property="profilePictureSettingCell" destination="4dd-m1-BwX" id="BKj-18-jRe"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="YY4-Bv-IHH" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="524" y="1985.7571214392806"/>
- </scene>
- <!--Release profile picture to-->
- <scene sceneID="5l8-CI-U9H">
- <objects>
- <tableViewController id="lpv-Od-k2f" customClass="ProfilePictureSettingViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="Lfp-M7-Xmf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ProfilePictureSettingCell" textLabel="UgJ-LH-EP4" style="IBUITableViewCellStyleDefault" id="r72-yu-6t8">
- <rect key="frame" x="0.0" y="55.333332061767578" width="375" height="43.666667938232422"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="r72-yu-6t8" id="ykS-cQ-ZMz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.666667938232422"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="UgJ-LH-EP4">
- <rect key="frame" x="16" y="0.0" width="343" height="43.666667938232422"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" reuseIdentifier="SendProfilePictureContactsCell" textLabel="PqJ-0p-bkD" style="IBUITableViewCellStyleDefault" id="FiD-Cv-Zyb">
- <rect key="frame" x="0.0" y="99" width="375" height="43.666667938232422"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="FiD-Cv-Zyb" id="CLi-Nx-X5K">
- <rect key="frame" x="0.0" y="0.0" width="347.66666666666669" height="43.666667938232422"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Profile picture recipients" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="PqJ-0p-bkD">
- <rect key="frame" x="16" y="0.0" width="323.66666666666669" height="43.666667938232422"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="lpv-Od-k2f" id="IdU-tX-xFC"/>
- <outlet property="delegate" destination="lpv-Od-k2f" id="NvO-3t-YSx"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Release profile picture to" id="aX3-NQ-eU7"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="MX5-RQ-2Fb" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1298" y="1986"/>
- </scene>
- <!--Safe Intro View Controller-->
- <scene sceneID="fHJ-4p-s9i">
- <objects>
- <viewController storyboardIdentifier="SafeIntroViewController" id="2QQ-ud-6hi" customClass="SafeIntroViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <view key="view" contentMode="center" id="PE5-mN-PBE">
- <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="NTi-Hj-iDN">
- <rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
- <subviews>
- <stackView opaque="NO" contentMode="center" distribution="equalSpacing" alignment="top" baselineRelativeArrangement="YES" translatesAutoresizingMaskIntoConstraints="NO" id="8Op-Hc-ehr">
- <rect key="frame" x="0.0" y="62" width="375" height="871"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="hSp-Dj-j59">
- <rect key="frame" x="0.0" y="0.0" width="30" height="871"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="width" constant="30" id="eGO-Vu-2qp"/>
- </constraints>
- </view>
- <stackView opaque="NO" contentMode="center" axis="vertical" distribution="equalSpacing" alignment="center" spacing="14" translatesAutoresizingMaskIntoConstraints="NO" id="Vfh-gi-8wG">
- <rect key="frame" x="57.666666666666657" y="0.0" width="260" height="440.66666666666669"/>
- <subviews>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" verticalHuggingPriority="249" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ky3-aw-XMX">
- <rect key="frame" x="102" y="0.0" width="56" height="27.666666666666668"/>
- <fontDescription key="fontDescription" type="system" weight="medium" pointSize="23"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Zy0-SZ-HJi">
- <rect key="frame" x="0.0" y="41.666666666666671" width="260" height="21.666666666666671"/>
- <fontDescription key="fontDescription" type="system" weight="light" pointSize="18"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="KYs-Hi-YvZ">
- <rect key="frame" x="0.0" y="77.333333333333343" width="260" height="220.00000000000003"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lPu-Gb-K6X">
- <rect key="frame" x="25" y="5" width="210" height="210"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="height" constant="210" id="QN1-Wy-I2a"/>
- <constraint firstAttribute="width" constant="210" id="j9x-gI-0FK"/>
- </constraints>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ThreemaSafeIntro.png" translatesAutoresizingMaskIntoConstraints="NO" id="mtm-Z8-vx7">
- <rect key="frame" x="20" y="0.0" width="220" height="220"/>
- <constraints>
- <constraint firstAttribute="height" constant="220" id="Re7-cp-Yiy"/>
- <constraint firstAttribute="width" constant="220" id="kOB-kr-NvV"/>
- </constraints>
- </imageView>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="height" constant="220" id="QDD-iF-v3E"/>
- <constraint firstItem="lPu-Gb-K6X" firstAttribute="centerX" secondItem="KYs-Hi-YvZ" secondAttribute="centerX" id="dnL-Va-E4w"/>
- <constraint firstItem="mtm-Z8-vx7" firstAttribute="centerX" secondItem="KYs-Hi-YvZ" secondAttribute="centerX" id="h2a-5P-8S0"/>
- <constraint firstItem="mtm-Z8-vx7" firstAttribute="centerY" secondItem="KYs-Hi-YvZ" secondAttribute="centerY" id="mwv-fO-NEy"/>
- <constraint firstItem="lPu-Gb-K6X" firstAttribute="centerY" secondItem="KYs-Hi-YvZ" secondAttribute="centerY" id="xo7-yD-uC3"/>
- </constraints>
- </view>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" text="Label" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jcI-bX-mXj">
- <rect key="frame" x="110.33333333333334" y="311.33333333333331" width="39" height="19.333333333333314"/>
- <fontDescription key="fontDescription" type="system" weight="light" pointSize="16"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="lAk-4V-k1g">
- <rect key="frame" x="0.0" y="344.66666666666669" width="260" height="46"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="Q00-XE-5z0" customClass="SetupButton" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="10" width="260" height="36"/>
- <constraints>
- <constraint firstAttribute="height" constant="36" id="lWK-Io-7o9"/>
- </constraints>
- <state key="normal" title="Button">
- <color key="titleColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <segue destination="isA-4a-PvY" kind="show" id="xjX-Ke-ny0"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="bottom" secondItem="Q00-XE-5z0" secondAttribute="bottom" id="Pyr-Qw-jyf"/>
- <constraint firstAttribute="trailing" secondItem="Q00-XE-5z0" secondAttribute="trailing" id="exi-D5-Mx9"/>
- <constraint firstItem="Q00-XE-5z0" firstAttribute="leading" secondItem="lAk-4V-k1g" secondAttribute="leading" id="m0k-U2-0Dp"/>
- <constraint firstItem="Q00-XE-5z0" firstAttribute="top" secondItem="lAk-4V-k1g" secondAttribute="top" constant="10" id="ncZ-kj-KSe"/>
- </constraints>
- </view>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="system" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="HNt-4v-CIs" customClass="SetupButton" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="0.0" y="404.66666666666669" width="260" height="36"/>
- <constraints>
- <constraint firstAttribute="height" constant="36" id="cBb-Fp-iLw"/>
- </constraints>
- <state key="normal" title="Button"/>
- <userDefinedRuntimeAttributes>
- <userDefinedRuntimeAttribute type="boolean" keyPath="cancelStyle" value="YES"/>
- </userDefinedRuntimeAttributes>
- <connections>
- <action selector="touchDownButton:forEvent:" destination="2QQ-ud-6hi" eventType="touchDown" id="zMD-S4-zbe"/>
- </connections>
- </button>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailing" secondItem="Zy0-SZ-HJi" secondAttribute="trailing" id="2Sd-xe-09g"/>
- <constraint firstItem="HNt-4v-CIs" firstAttribute="leading" secondItem="Vfh-gi-8wG" secondAttribute="leading" id="65x-6c-yjA"/>
- <constraint firstAttribute="height" relation="lessThanOrEqual" constant="1500" id="8uq-yZ-U91"/>
- <constraint firstAttribute="trailing" secondItem="KYs-Hi-YvZ" secondAttribute="trailing" id="9FG-ZL-7Gt"/>
- <constraint firstItem="KYs-Hi-YvZ" firstAttribute="leading" secondItem="Vfh-gi-8wG" secondAttribute="leading" id="AVD-77-Qo0"/>
- <constraint firstAttribute="trailing" secondItem="lAk-4V-k1g" secondAttribute="trailing" id="BoB-HN-eM8"/>
- <constraint firstAttribute="trailing" secondItem="HNt-4v-CIs" secondAttribute="trailing" id="OVn-9o-ltb"/>
- <constraint firstItem="lAk-4V-k1g" firstAttribute="leading" secondItem="Vfh-gi-8wG" secondAttribute="leading" id="Oc7-qs-ezv"/>
- <constraint firstItem="Zy0-SZ-HJi" firstAttribute="leading" secondItem="Vfh-gi-8wG" secondAttribute="leading" id="YYV-C4-rr8"/>
- </constraints>
- </stackView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="9EJ-cN-hlf">
- <rect key="frame" x="345" y="0.0" width="30" height="871"/>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="width" constant="30" id="hS5-ep-ypC"/>
- </constraints>
- </view>
- </subviews>
- </stackView>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="8Op-Hc-ehr" secondAttribute="bottom" constant="10" id="4rD-kP-Rio"/>
- <constraint firstItem="8Op-Hc-ehr" firstAttribute="leading" secondItem="NTi-Hj-iDN" secondAttribute="leading" id="8cQ-mD-5vZ"/>
- <constraint firstAttribute="trailing" secondItem="8Op-Hc-ehr" secondAttribute="trailing" id="Pa8-Zx-9cL"/>
- <constraint firstItem="8Op-Hc-ehr" firstAttribute="top" secondItem="NTi-Hj-iDN" secondAttribute="topMargin" constant="10" id="byM-l5-8Q0"/>
- </constraints>
- </scrollView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="LFU-2d-ZQy"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="LFU-2d-ZQy" firstAttribute="trailing" secondItem="NTi-Hj-iDN" secondAttribute="trailing" id="2O2-Uf-42d"/>
- <constraint firstAttribute="top" secondItem="NTi-Hj-iDN" secondAttribute="top" id="4VH-DY-xS5"/>
- <constraint firstItem="NTi-Hj-iDN" firstAttribute="bottom" secondItem="PE5-mN-PBE" secondAttribute="bottom" id="CSG-xG-IOO"/>
- <constraint firstItem="NTi-Hj-iDN" firstAttribute="leading" secondItem="LFU-2d-ZQy" secondAttribute="leading" id="dc7-Ae-rzH"/>
- <constraint firstItem="8Op-Hc-ehr" firstAttribute="width" secondItem="LFU-2d-ZQy" secondAttribute="width" id="vgE-Yx-b94"/>
- </constraints>
- </view>
- <connections>
- <outlet property="cancelButton" destination="HNt-4v-CIs" id="Xta-uf-8Sf"/>
- <outlet property="descriptionLabel" destination="Zy0-SZ-HJi" id="Is3-b1-qzB"/>
- <outlet property="explainLabel" destination="jcI-bX-mXj" id="I1Q-D2-Fyw"/>
- <outlet property="introCircle" destination="lPu-Gb-K6X" id="RbZ-kF-FdS"/>
- <outlet property="introImage" destination="mtm-Z8-vx7" id="jUS-ro-eIJ"/>
- <outlet property="mainContent" destination="Vfh-gi-8wG" id="xc9-ak-SV9"/>
- <outlet property="okButton" destination="Q00-XE-5z0" id="eYT-zd-efV"/>
- <outlet property="titleLabel" destination="ky3-aw-XMX" id="NNH-yZ-LQf"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="t1i-2B-FOZ" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2724" y="92"/>
- </scene>
- <!--Safe Setup View Controller-->
- <scene sceneID="I9Q-IF-kCS">
- <objects>
- <viewController id="sq0-x9-MA6" customClass="SafeSetupViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" id="P2c-a1-yRo">
- <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" distribution="equalSpacing" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="6ab-jM-lQY">
- <rect key="frame" x="16" y="15" width="343" height="50"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" distribution="equalSpacing" spacingType="standard" translatesAutoresizingMaskIntoConstraints="NO" id="e19-Ux-uIo">
- <rect key="frame" x="0.0" y="0.0" width="144" height="50"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="F9G-qq-ABw">
- <rect key="frame" x="0.0" y="0.0" width="30" height="50"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="GgJ-wF-jQn">
- <rect key="frame" x="0.0" y="10" width="30" height="30"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="width" constant="30" id="68q-Ia-nax"/>
- <constraint firstAttribute="height" constant="30" id="Ahk-iC-UTo"/>
- </constraints>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" image="ThreemaSafeIntro.png" translatesAutoresizingMaskIntoConstraints="NO" id="8Pm-M9-ePz">
- <rect key="frame" x="0.0" y="0.0" width="30" height="50"/>
- </imageView>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="GgJ-wF-jQn" firstAttribute="centerY" secondItem="8Pm-M9-ePz" secondAttribute="centerY" id="0ji-xR-sUA"/>
- <constraint firstItem="8Pm-M9-ePz" firstAttribute="top" secondItem="F9G-qq-ABw" secondAttribute="top" id="4La-ek-DdQ"/>
- <constraint firstItem="8Pm-M9-ePz" firstAttribute="leading" secondItem="F9G-qq-ABw" secondAttribute="leading" id="7gn-Vv-Crp"/>
- <constraint firstAttribute="trailing" secondItem="8Pm-M9-ePz" secondAttribute="trailing" id="SUT-o6-YAm"/>
- <constraint firstAttribute="width" constant="30" id="fix-fa-isS"/>
- <constraint firstAttribute="bottom" secondItem="8Pm-M9-ePz" secondAttribute="bottom" id="uwE-7v-niQ"/>
- <constraint firstItem="GgJ-wF-jQn" firstAttribute="centerX" secondItem="8Pm-M9-ePz" secondAttribute="centerX" id="zzk-1x-nGu"/>
- </constraints>
- </view>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="751" preservesSuperviewLayoutMargins="YES" text="Threema Safe" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jhG-Ge-qyu">
- <rect key="frame" x="38" y="0.0" width="106" height="50"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </stackView>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" horizontalCompressionResistancePriority="751" insetsLayoutMarginsFromSafeArea="NO" contentHorizontalAlignment="right" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Sa9-hb-uUR">
- <rect key="frame" x="294" y="0.0" width="51" height="50"/>
- <connections>
- <segue destination="isA-4a-PvY" kind="presentation" identifier="SafeSetupPassword" modalPresentationStyle="currentContext" id="Wuf-ev-MSL"/>
- </connections>
- </switch>
- </subviews>
- </stackView>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="KHz-Eq-LQK">
- <rect key="frame" x="0.0" y="79" width="375" height="1"/>
- <color key="backgroundColor" white="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="height" constant="1" id="kII-Q6-rX6"/>
- </constraints>
- </view>
- <containerView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="CgP-Es-w6E">
- <rect key="frame" x="0.0" y="80" width="375" height="644"/>
- <connections>
- <segue destination="Umh-Qz-iOn" kind="embed" id="drc-vT-zeY"/>
- </connections>
- </containerView>
- <containerView opaque="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="4do-en-IiX">
- <rect key="frame" x="0.0" y="80" width="375" height="644"/>
- <connections>
- <segue destination="kum-xn-2YU" kind="embed" id="vvS-Db-mAi"/>
- </connections>
- </containerView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="yGc-d6-eLp"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="6ab-jM-lQY" firstAttribute="top" secondItem="yGc-d6-eLp" secondAttribute="top" constant="15" id="5mr-eH-tp2"/>
- <constraint firstItem="4do-en-IiX" firstAttribute="trailing" secondItem="yGc-d6-eLp" secondAttribute="trailing" id="Brb-HO-tCr"/>
- <constraint firstAttribute="trailing" secondItem="KHz-Eq-LQK" secondAttribute="trailing" id="I6I-lL-lhw"/>
- <constraint firstAttribute="trailingMargin" secondItem="6ab-jM-lQY" secondAttribute="trailing" id="JGM-aY-rQa"/>
- <constraint firstItem="CgP-Es-w6E" firstAttribute="leading" secondItem="yGc-d6-eLp" secondAttribute="leading" id="PTR-2J-eCU"/>
- <constraint firstItem="KHz-Eq-LQK" firstAttribute="leading" secondItem="P2c-a1-yRo" secondAttribute="leading" id="Vt9-ud-4xc"/>
- <constraint firstItem="CgP-Es-w6E" firstAttribute="bottom" secondItem="yGc-d6-eLp" secondAttribute="bottom" id="WPM-hZ-nxb"/>
- <constraint firstItem="4do-en-IiX" firstAttribute="leading" secondItem="yGc-d6-eLp" secondAttribute="leading" id="ZOh-Sz-itE"/>
- <constraint firstItem="6ab-jM-lQY" firstAttribute="leading" secondItem="P2c-a1-yRo" secondAttribute="leadingMargin" id="e8B-BY-XOJ"/>
- <constraint firstItem="4do-en-IiX" firstAttribute="top" secondItem="6ab-jM-lQY" secondAttribute="bottom" constant="15" id="eiz-OJ-dV1"/>
- <constraint firstItem="4do-en-IiX" firstAttribute="bottom" secondItem="yGc-d6-eLp" secondAttribute="bottom" id="pLB-Qb-ueM"/>
- <constraint firstItem="CgP-Es-w6E" firstAttribute="top" secondItem="6ab-jM-lQY" secondAttribute="bottom" constant="15" id="rkK-Ra-nPn"/>
- <constraint firstItem="CgP-Es-w6E" firstAttribute="trailing" secondItem="yGc-d6-eLp" secondAttribute="trailing" id="txV-da-7NR"/>
- <constraint firstItem="CgP-Es-w6E" firstAttribute="top" secondItem="KHz-Eq-LQK" secondAttribute="bottom" id="yiB-pO-4fZ"/>
- </constraints>
- </view>
- <navigationItem key="navigationItem" largeTitleDisplayMode="never" id="pyF-4K-IcS"/>
- <connections>
- <outlet property="safeActivatedContainer" destination="4do-en-IiX" id="SQq-K4-DnF"/>
- <outlet property="safeDeactivatedContainer" destination="CgP-Es-w6E" id="zRc-lM-xLi"/>
- <outlet property="safeImageCircle" destination="GgJ-wF-jQn" id="h7J-7h-VB8"/>
- <outlet property="safeImageView" destination="8Pm-M9-ePz" id="B5U-Gm-APz"/>
- <outlet property="safeSeparatorView" destination="KHz-Eq-LQK" id="Ncg-aD-wqM"/>
- <outlet property="safeSwitch" destination="Sa9-hb-uUR" id="pPf-PN-qS6"/>
- <outlet property="safeSwitchLabel" destination="jhG-Ge-qyu" id="75B-AH-4Q4"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="pr6-Ma-x8q" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-4588" y="886.50674662668678"/>
- </scene>
- <!--Safe Activated View Controller-->
- <scene sceneID="0PM-Oc-aO3">
- <objects>
- <tableViewController id="kum-xn-2YU" customClass="SafeActivatedViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="HIr-bG-Psk">
- <rect key="frame" x="0.0" y="0.0" width="375" height="644"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
- <sections>
- <tableViewSection id="uBK-yh-04Y">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="ix1-lm-oQL">
- <rect key="frame" x="0.0" y="18" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="ix1-lm-oQL" id="0Tg-v5-Xf8">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Server" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="CCz-Rx-Iyj">
- <rect key="frame" x="16" y="0.0" width="150" height="44"/>
- <constraints>
- <constraint firstAttribute="width" constant="150" id="pU9-FK-l1e"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumScaleFactor="0.75" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cDG-vj-35i">
- <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="cDG-vj-35i" secondAttribute="bottom" constant="4" id="5V7-Dv-VXX"/>
- <constraint firstItem="cDG-vj-35i" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="CCz-Rx-Iyj" secondAttribute="trailing" constant="10" id="ID4-C4-ovh"/>
- <constraint firstItem="cDG-vj-35i" firstAttribute="centerY" secondItem="0Tg-v5-Xf8" secondAttribute="centerY" id="RaB-Ur-wku"/>
- <constraint firstItem="CCz-Rx-Iyj" firstAttribute="leading" secondItem="0Tg-v5-Xf8" secondAttribute="leadingMargin" id="dIY-42-CYA"/>
- <constraint firstAttribute="trailingMargin" secondItem="cDG-vj-35i" secondAttribute="trailing" id="gLv-Jx-TQ2"/>
- <constraint firstItem="cDG-vj-35i" firstAttribute="top" relation="greaterThanOrEqual" secondItem="0Tg-v5-Xf8" secondAttribute="topMargin" constant="4" id="mh0-bh-00t"/>
- <constraint firstItem="CCz-Rx-Iyj" firstAttribute="top" secondItem="0Tg-v5-Xf8" secondAttribute="top" id="tBb-30-dR1"/>
- <constraint firstAttribute="bottom" secondItem="CCz-Rx-Iyj" secondAttribute="bottom" id="tha-iC-aHW"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="JiG-Gc-T9a">
- <rect key="frame" x="0.0" y="62" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="JiG-Gc-T9a" id="Low-Zz-EWZ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Max. backup size" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="6oN-AH-5cw">
- <rect key="frame" x="16" y="11" width="191" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="191" id="K29-nI-4Uz"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="V4j-Ub-pdi">
- <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="6oN-AH-5cw" secondAttribute="bottom" id="2Bx-qL-E9e"/>
- <constraint firstItem="V4j-Ub-pdi" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Low-Zz-EWZ" secondAttribute="topMargin" constant="4" id="6bd-5t-uHf"/>
- <constraint firstItem="6oN-AH-5cw" firstAttribute="leading" secondItem="Low-Zz-EWZ" secondAttribute="leadingMargin" id="9JC-ja-Gfd"/>
- <constraint firstItem="V4j-Ub-pdi" firstAttribute="centerY" secondItem="Low-Zz-EWZ" secondAttribute="centerY" id="AfX-Fa-bpA"/>
- <constraint firstAttribute="trailingMargin" secondItem="V4j-Ub-pdi" secondAttribute="trailing" id="Ncf-nk-8NJ"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="V4j-Ub-pdi" secondAttribute="bottom" constant="4" id="Z12-hQ-xv0"/>
- <constraint firstItem="V4j-Ub-pdi" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="6oN-AH-5cw" secondAttribute="trailing" constant="10" id="scM-Hd-h2k"/>
- <constraint firstItem="6oN-AH-5cw" firstAttribute="top" secondItem="Low-Zz-EWZ" secondAttribute="topMargin" id="td4-CD-2JX"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="BLe-I3-JhY">
- <rect key="frame" x="0.0" y="106" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="BLe-I3-JhY" id="wft-7M-lOC">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Retention days" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Gj2-0g-N9D">
- <rect key="frame" x="16" y="11" width="191" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="191" id="dbn-AG-Dqs"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="pW4-Aa-Fp5">
- <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="pW4-Aa-Fp5" secondAttribute="trailing" id="0ar-Vp-Vjt"/>
- <constraint firstItem="pW4-Aa-Fp5" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="Gj2-0g-N9D" secondAttribute="trailing" constant="10" id="7hm-zn-1Rg"/>
- <constraint firstItem="Gj2-0g-N9D" firstAttribute="top" secondItem="wft-7M-lOC" secondAttribute="topMargin" id="CAh-Tw-Kph"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="pW4-Aa-Fp5" secondAttribute="bottom" constant="4" id="FlV-gt-9Af"/>
- <constraint firstItem="Gj2-0g-N9D" firstAttribute="leading" secondItem="wft-7M-lOC" secondAttribute="leadingMargin" id="INE-se-xOb"/>
- <constraint firstAttribute="bottomMargin" secondItem="Gj2-0g-N9D" secondAttribute="bottom" id="TUA-SP-L0J"/>
- <constraint firstItem="pW4-Aa-Fp5" firstAttribute="top" relation="greaterThanOrEqual" secondItem="wft-7M-lOC" secondAttribute="topMargin" constant="4" id="WEV-1F-6lQ"/>
- <constraint firstItem="pW4-Aa-Fp5" firstAttribute="centerY" secondItem="wft-7M-lOC" secondAttribute="centerY" id="oer-Bs-AJW"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="aOo-Wj-aZo">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="D0D-sR-zhw">
- <rect key="frame" x="0.0" y="186" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="D0D-sR-zhw" id="Kdg-bJ-itk">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Last backup" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="WHu-Ia-hVX">
- <rect key="frame" x="16" y="11" width="191" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="191" id="x9q-H3-KNT"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OlD-BV-zrc">
- <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="OlD-BV-zrc" secondAttribute="bottom" constant="4" id="7Jz-ZR-cHj"/>
- <constraint firstItem="WHu-Ia-hVX" firstAttribute="top" secondItem="Kdg-bJ-itk" secondAttribute="topMargin" id="8eD-lI-5kD"/>
- <constraint firstAttribute="bottomMargin" secondItem="WHu-Ia-hVX" secondAttribute="bottom" id="E9i-wg-xQG"/>
- <constraint firstItem="OlD-BV-zrc" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="WHu-Ia-hVX" secondAttribute="trailing" constant="10" id="OEI-aV-imJ"/>
- <constraint firstAttribute="trailingMargin" secondItem="OlD-BV-zrc" secondAttribute="trailing" id="Pth-Mg-dJW"/>
- <constraint firstItem="WHu-Ia-hVX" firstAttribute="leading" secondItem="Kdg-bJ-itk" secondAttribute="leadingMargin" id="UIo-An-fqJ"/>
- <constraint firstItem="OlD-BV-zrc" firstAttribute="centerY" secondItem="Kdg-bJ-itk" secondAttribute="centerY" id="eJh-5Q-H41"/>
- <constraint firstItem="OlD-BV-zrc" firstAttribute="top" relation="greaterThanOrEqual" secondItem="Kdg-bJ-itk" secondAttribute="topMargin" constant="4" id="oEy-Bb-jtQ"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="tDp-1Y-Qpo">
- <rect key="frame" x="0.0" y="230" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="tDp-1Y-Qpo" id="jBI-gq-3hQ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Backup size" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ACN-oG-s71">
- <rect key="frame" x="16" y="11" width="191" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="191" id="M8d-JQ-ljv"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="3Mu-GA-aJo">
- <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="3Mu-GA-aJo" firstAttribute="centerY" secondItem="jBI-gq-3hQ" secondAttribute="centerY" id="1Wz-JC-PCG"/>
- <constraint firstItem="3Mu-GA-aJo" firstAttribute="top" relation="greaterThanOrEqual" secondItem="jBI-gq-3hQ" secondAttribute="topMargin" constant="4" id="2uw-Th-Byq"/>
- <constraint firstItem="3Mu-GA-aJo" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="ACN-oG-s71" secondAttribute="trailing" constant="10" id="5W0-ja-Mvl"/>
- <constraint firstItem="ACN-oG-s71" firstAttribute="top" secondItem="jBI-gq-3hQ" secondAttribute="topMargin" id="DgX-7e-mcn"/>
- <constraint firstItem="ACN-oG-s71" firstAttribute="leading" secondItem="jBI-gq-3hQ" secondAttribute="leadingMargin" id="Yj9-TL-ZTd"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="3Mu-GA-aJo" secondAttribute="bottom" constant="4" id="peq-Oj-d64"/>
- <constraint firstAttribute="bottomMargin" secondItem="ACN-oG-s71" secondAttribute="bottom" id="ug4-LH-fsg"/>
- <constraint firstAttribute="trailingMargin" secondItem="3Mu-GA-aJo" secondAttribute="trailing" id="zIN-wF-CHM"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="14N-Ef-k6X">
- <rect key="frame" x="0.0" y="274" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="14N-Ef-k6X" id="UuC-11-4V0">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Last result " lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="eFF-tz-39Z">
- <rect key="frame" x="16" y="11" width="191" height="22"/>
- <constraints>
- <constraint firstAttribute="width" constant="191" id="do4-Pl-PYO"/>
- </constraints>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="-" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="0E4-vK-K50">
- <rect key="frame" x="351.33333333333331" y="15" width="7.6666666666666856" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="eFF-tz-39Z" secondAttribute="bottom" id="3uq-Am-DfK"/>
- <constraint firstAttribute="trailingMargin" secondItem="0E4-vK-K50" secondAttribute="trailing" id="ZFO-nu-rag"/>
- <constraint firstItem="0E4-vK-K50" firstAttribute="centerY" secondItem="UuC-11-4V0" secondAttribute="centerY" id="Zld-dQ-HVg"/>
- <constraint firstItem="eFF-tz-39Z" firstAttribute="top" secondItem="UuC-11-4V0" secondAttribute="topMargin" id="iLQ-jE-jPC"/>
- <constraint firstItem="0E4-vK-K50" firstAttribute="top" relation="greaterThanOrEqual" secondItem="UuC-11-4V0" secondAttribute="topMargin" constant="4" id="kBv-bZ-tvK"/>
- <constraint firstItem="eFF-tz-39Z" firstAttribute="leading" secondItem="UuC-11-4V0" secondAttribute="leadingMargin" id="nDf-L2-hae"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="0E4-vK-K50" secondAttribute="bottom" constant="4" id="rg5-dW-9RM"/>
- <constraint firstItem="0E4-vK-K50" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="eFF-tz-39Z" secondAttribute="trailing" constant="10" id="tlF-sQ-W8d"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="IPk-dJ-FK4">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" id="pkv-Hf-lXw">
- <rect key="frame" x="0.0" y="354" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="pkv-Hf-lXw" id="snD-Eg-Ql1">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" fixedFrame="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="abL-qW-o92">
- <rect key="frame" x="175" y="10" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
- <state key="normal" image="Info"/>
- <connections>
- <action selector="touchDownExplainButton:forEvent:" destination="kum-xn-2YU" eventType="touchDown" id="jnx-R3-fRN"/>
- </connections>
- </button>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" indentationWidth="10" id="z54-P9-eaY">
- <rect key="frame" x="0.0" y="398" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="z54-P9-eaY" id="eUk-PW-GRw">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Backup now" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" preferredMaxLayoutWidth="44" translatesAutoresizingMaskIntoConstraints="NO" id="QRg-9e-VxA" userLabel="Backup now">
- <rect key="frame" x="16" y="15" width="343" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="2Mt-Pf-8OR">
- <rect key="frame" x="177.66666666666666" y="12" width="20" height="20"/>
- </activityIndicatorView>
- </subviews>
- <constraints>
- <constraint firstItem="2Mt-Pf-8OR" firstAttribute="centerX" secondItem="QRg-9e-VxA" secondAttribute="centerX" id="3Jv-SW-8Vm"/>
- <constraint firstItem="QRg-9e-VxA" firstAttribute="leading" secondItem="eUk-PW-GRw" secondAttribute="leading" constant="16" id="5Ow-FG-vu3"/>
- <constraint firstAttribute="bottomMargin" secondItem="QRg-9e-VxA" secondAttribute="bottom" constant="4" id="6GF-Tg-l1a"/>
- <constraint firstItem="QRg-9e-VxA" firstAttribute="top" secondItem="eUk-PW-GRw" secondAttribute="topMargin" constant="4" id="C4p-FN-dNn"/>
- <constraint firstItem="2Mt-Pf-8OR" firstAttribute="centerY" secondItem="QRg-9e-VxA" secondAttribute="centerY" id="ciH-NR-8aP"/>
- <constraint firstAttribute="trailing" secondItem="QRg-9e-VxA" secondAttribute="trailing" constant="16" id="gDS-fx-dW8"/>
- </constraints>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="blue" indentationWidth="10" textLabel="xeg-TX-OYB" style="IBUITableViewCellStyleDefault" id="WGf-II-AqV">
- <rect key="frame" x="0.0" y="442" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="WGf-II-AqV" id="SsX-Pg-i7x">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Change Password" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="xeg-TX-OYB" userLabel="Change password">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="kum-xn-2YU" id="cSI-Ac-DnE"/>
- <outlet property="delegate" destination="kum-xn-2YU" id="sZM-Ia-3YQ"/>
- </connections>
- </tableView>
- <connections>
- <outlet property="activityIndicator" destination="2Mt-Pf-8OR" id="JPs-48-5LQ"/>
- <outlet property="backupNowButtonLabel" destination="QRg-9e-VxA" id="8fM-2U-Irj"/>
- <outlet property="backupNowCell" destination="z54-P9-eaY" id="IPt-k1-yRr"/>
- <outlet property="backupSizeLabel" destination="ACN-oG-s71" id="k0n-br-QsA"/>
- <outlet property="backupSizeValueLabel" destination="3Mu-GA-aJo" id="f9B-mB-GIA"/>
- <outlet property="changePasswordButtonLabel" destination="xeg-TX-OYB" id="TKK-li-kg6"/>
- <outlet property="explainButton" destination="abL-qW-o92" id="VQk-Lu-cWN"/>
- <outlet property="lastBackupLabel" destination="WHu-Ia-hVX" id="8tc-19-cGd"/>
- <outlet property="lastBackupValueLabel" destination="OlD-BV-zrc" id="d4y-7q-0V3"/>
- <outlet property="lastResultLabel" destination="eFF-tz-39Z" id="vyu-Q3-d83"/>
- <outlet property="lastResultValueLabel" destination="0E4-vK-K50" id="nhj-Wk-gq9"/>
- <outlet property="maxBackupBytesLabel" destination="6oN-AH-5cw" id="TkO-8y-i84"/>
- <outlet property="maxBackupBytesValueLabel" destination="V4j-Ub-pdi" id="L7s-mC-QHA"/>
- <outlet property="retentionDaysLabel" destination="Gj2-0g-N9D" id="o1q-oN-aMt"/>
- <outlet property="retentionDaysValueLabel" destination="pW4-Aa-Fp5" id="3NQ-hP-bmd"/>
- <outlet property="serverNameLabel" destination="CCz-Rx-Iyj" id="Y9R-PR-TdL"/>
- <outlet property="serverNameValueLabel" destination="cDG-vj-35i" id="HEP-5c-4ZA"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Vgs-pg-DjJ" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-3682.4000000000001" y="1236.8815592203898"/>
- </scene>
- <!--Safe Deactivated View Controller-->
- <scene sceneID="yZF-oQ-STS">
- <objects>
- <viewController id="Umh-Qz-iOn" customClass="SafeDeactivatedViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="Dp2-p5-p8a">
- <rect key="frame" x="0.0" y="0.0" width="375" height="644"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iy2-tG-Zzm">
- <rect key="frame" x="0.0" y="0.0" width="375" height="644"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="20" translatesAutoresizingMaskIntoConstraints="NO" id="Pcq-8e-cti">
- <rect key="frame" x="20" y="10" width="335" height="374.33333333333331"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="yLb-jR-qhb">
- <rect key="frame" x="0.0" y="0.0" width="335" height="220"/>
- <subviews>
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="7Rv-g8-xeE">
- <rect key="frame" x="62.666666666666686" y="5" width="210" height="210"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstAttribute="width" constant="210" id="ELx-QO-LPM"/>
- <constraint firstAttribute="height" constant="210" id="pwb-Rp-WLO"/>
- </constraints>
- </view>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="ThreemaSafeIntro.png" translatesAutoresizingMaskIntoConstraints="NO" id="6VX-hV-ZFw">
- <rect key="frame" x="57.666666666666686" y="0.0" width="220" height="220"/>
- <constraints>
- <constraint firstAttribute="width" constant="220" id="5T8-hc-O6n"/>
- <constraint firstAttribute="height" constant="220" id="LO6-tJ-URd"/>
- </constraints>
- </imageView>
- </subviews>
- <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="6VX-hV-ZFw" firstAttribute="centerY" secondItem="yLb-jR-qhb" secondAttribute="centerY" id="4HA-se-xxa"/>
- <constraint firstItem="7Rv-g8-xeE" firstAttribute="centerY" secondItem="yLb-jR-qhb" secondAttribute="centerY" id="Njo-IM-dPI"/>
- <constraint firstAttribute="height" constant="220" id="Oxo-DG-ccd"/>
- <constraint firstItem="7Rv-g8-xeE" firstAttribute="centerX" secondItem="yLb-jR-qhb" secondAttribute="centerX" id="Vvs-8N-whX"/>
- <constraint firstItem="6VX-hV-ZFw" firstAttribute="centerX" secondItem="yLb-jR-qhb" secondAttribute="centerX" id="hLa-3X-s6O"/>
- </constraints>
- </view>
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Enable Threema Safe to create automatic secure and anonymous backups of all your important data." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="4" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="Akv-9b-ynC">
- <rect key="frame" x="3.3333333333333428" y="240.00000000000003" width="328.66666666666663" height="64.333333333333343"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="XP9-jV-0J4">
- <rect key="frame" x="142.66666666666666" y="324.33333333333331" width="50" height="50"/>
- <constraints>
- <constraint firstAttribute="height" constant="50" id="Gig-R8-Mld"/>
- <constraint firstAttribute="width" constant="50" id="qna-ea-G3r"/>
- </constraints>
- <state key="normal" image="Info"/>
- <connections>
- <action selector="touchDownExplainButton:forEvent:" destination="Umh-Qz-iOn" eventType="touchDown" id="N4Q-Yi-Btc"/>
- </connections>
- </button>
- </subviews>
- <constraints>
- <constraint firstItem="XP9-jV-0J4" firstAttribute="centerX" secondItem="Pcq-8e-cti" secondAttribute="centerX" id="ZQz-pq-qnl"/>
- <constraint firstItem="yLb-jR-qhb" firstAttribute="leading" secondItem="Pcq-8e-cti" secondAttribute="leading" id="tc1-sN-Pnb"/>
- </constraints>
- </stackView>
- </subviews>
- <constraints>
- <constraint firstItem="Pcq-8e-cti" firstAttribute="centerX" secondItem="iy2-tG-Zzm" secondAttribute="centerX" id="U75-ib-6Kg"/>
- <constraint firstItem="Pcq-8e-cti" firstAttribute="leading" secondItem="iy2-tG-Zzm" secondAttribute="leading" constant="20" id="ZIH-Ln-JDK"/>
- <constraint firstAttribute="trailing" secondItem="Pcq-8e-cti" secondAttribute="trailing" constant="20" id="hyP-0B-wHf"/>
- <constraint firstItem="Pcq-8e-cti" firstAttribute="top" secondItem="iy2-tG-Zzm" secondAttribute="top" constant="10" id="thI-RU-NOD"/>
- <constraint firstAttribute="bottom" secondItem="Pcq-8e-cti" secondAttribute="bottom" id="umG-Vv-MKg"/>
- </constraints>
- </scrollView>
- </subviews>
- <viewLayoutGuide key="safeArea" id="b20-ec-g1d"/>
- <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- <constraints>
- <constraint firstItem="iy2-tG-Zzm" firstAttribute="leading" secondItem="b20-ec-g1d" secondAttribute="leading" id="1Gs-Bh-uYT"/>
- <constraint firstItem="b20-ec-g1d" firstAttribute="trailing" secondItem="iy2-tG-Zzm" secondAttribute="trailing" id="YBf-VR-GmW"/>
- <constraint firstItem="iy2-tG-Zzm" firstAttribute="centerX" secondItem="b20-ec-g1d" secondAttribute="centerX" id="bBh-qA-h5r"/>
- <constraint firstAttribute="bottom" secondItem="iy2-tG-Zzm" secondAttribute="bottom" id="nb6-hS-QaA"/>
- <constraint firstItem="iy2-tG-Zzm" firstAttribute="top" secondItem="Dp2-p5-p8a" secondAttribute="top" id="qO7-fH-UHa"/>
- </constraints>
- </view>
- <connections>
- <outlet property="descriptionLabel" destination="Akv-9b-ynC" id="ZBv-he-Nsr"/>
- <outlet property="explainButton" destination="XP9-jV-0J4" id="4QI-bM-If8"/>
- <outlet property="introCircle" destination="7Rv-g8-xeE" id="4AE-xO-ubT"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="fX1-nu-P5h" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-3681" y="572"/>
- </scene>
- <!--Safe Setup Password View Controller-->
- <scene sceneID="rRI-7v-eEQ">
- <objects>
- <tableViewController id="gqY-5Z-sAE" customClass="SafeSetupPasswordViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" allowsSelection="NO" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="yNN-Hs-P2M">
- <rect key="frame" x="0.0" y="0.0" width="375" height="758"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
- <sections>
- <tableViewSection headerTitle="Choose a password" footerTitle="Test" id="TUo-Sz-38Z">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="FJh-bF-1zD">
- <rect key="frame" x="0.0" y="55.333332061767578" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="FJh-bF-1zD" id="eVr-gQ-VOe">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="axE-Id-aQi">
- <rect key="frame" x="16" y="15" width="343" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="next" secureTextEntry="YES"/>
- <connections>
- <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="0QQ-Ar-0xr"/>
- </connections>
- </textField>
- </subviews>
- <constraints>
- <constraint firstItem="axE-Id-aQi" firstAttribute="top" secondItem="eVr-gQ-VOe" secondAttribute="topMargin" constant="4" id="KDY-6l-sKf"/>
- <constraint firstItem="axE-Id-aQi" firstAttribute="leading" secondItem="eVr-gQ-VOe" secondAttribute="leadingMargin" id="X8k-eI-XWd"/>
- <constraint firstAttribute="bottomMargin" secondItem="axE-Id-aQi" secondAttribute="bottom" constant="4" id="pJW-ff-odx"/>
- <constraint firstAttribute="trailingMargin" secondItem="axE-Id-aQi" secondAttribute="trailing" id="vUa-3T-7uo"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="VFl-is-peO">
- <rect key="frame" x="0.0" y="99.333332061767578" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="VFl-is-peO" id="fjc-1H-ccd">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="2Ac-Rf-Lxd">
- <rect key="frame" x="16" y="15" width="343" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="done" secureTextEntry="YES"/>
- <connections>
- <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="wLp-RW-Vzt"/>
- </connections>
- </textField>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="2Ac-Rf-Lxd" secondAttribute="bottom" constant="4" id="JCQ-Ck-xjS"/>
- <constraint firstItem="2Ac-Rf-Lxd" firstAttribute="leading" secondItem="fjc-1H-ccd" secondAttribute="leadingMargin" id="TMY-jZ-vTC"/>
- <constraint firstItem="2Ac-Rf-Lxd" firstAttribute="top" secondItem="fjc-1H-ccd" secondAttribute="topMargin" constant="4" id="uuH-yv-Ztv"/>
- <constraint firstAttribute="trailingMargin" secondItem="2Ac-Rf-Lxd" secondAttribute="trailing" id="zdy-Np-dV9"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Expert Settings" footerTitle="Test" id="xGC-9L-rgo">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" textLabel="wMx-pg-1qc" style="IBUITableViewCellStyleDefault" id="tUx-pE-gKm">
- <rect key="frame" x="0.0" y="218.66666412353516" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="tUx-pE-gKm" id="JuE-i0-ENJ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4PS-Vf-O8u">
- <rect key="frame" x="163" y="6" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <connections>
- <action selector="changedServerSwitch:" destination="gqY-5Z-sAE" eventType="valueChanged" id="Rcc-HR-RrZ"/>
- </connections>
- </switch>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Server switch label" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="wMx-pg-1qc">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="4PS-Vf-O8u" id="2so-d6-kJp"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" indentationWidth="10" rowHeight="44" id="z5R-sM-bfm">
- <rect key="frame" x="0.0" y="262.66666412353516" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="z5R-sM-bfm" id="dAm-GF-KCx">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" contentMode="scaleToFill" verticalCompressionResistancePriority="751" contentHorizontalAlignment="left" contentVerticalAlignment="center" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" clearButtonMode="whileEditing" translatesAutoresizingMaskIntoConstraints="NO" id="hAy-t0-oQ4">
- <rect key="frame" x="16" y="15" width="343" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="next"/>
- <connections>
- <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="LtK-kX-mVU"/>
- </connections>
- </textField>
- </subviews>
- <constraints>
- <constraint firstItem="hAy-t0-oQ4" firstAttribute="leading" secondItem="dAm-GF-KCx" secondAttribute="leadingMargin" id="7OB-oT-KSp"/>
- <constraint firstAttribute="bottomMargin" secondItem="hAy-t0-oQ4" secondAttribute="bottom" constant="4" id="Dw6-EZ-K7g"/>
- <constraint firstItem="hAy-t0-oQ4" firstAttribute="trailing" secondItem="dAm-GF-KCx" secondAttribute="trailingMargin" id="c2v-Du-b3X"/>
- <constraint firstItem="hAy-t0-oQ4" firstAttribute="top" secondItem="dAm-GF-KCx" secondAttribute="topMargin" constant="4" id="vOW-8b-7gv"/>
- </constraints>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" notEnabled="YES"/>
- </accessibility>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Authentication (optional)" footerTitle="Test" id="OmS-m4-S3q">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="44" id="WXi-zr-qQ6">
- <rect key="frame" x="0.0" y="381.99999618530273" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="WXi-zr-qQ6" id="ZPy-ha-dbf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="9EF-eb-AQy">
- <rect key="frame" x="16" y="15" width="343" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="next"/>
- <connections>
- <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="ttF-hq-ts8"/>
- </connections>
- </textField>
- </subviews>
- <constraints>
- <constraint firstItem="9EF-eb-AQy" firstAttribute="leading" secondItem="ZPy-ha-dbf" secondAttribute="leadingMargin" id="6K4-3m-Okw"/>
- <constraint firstItem="9EF-eb-AQy" firstAttribute="top" secondItem="ZPy-ha-dbf" secondAttribute="topMargin" constant="4" id="I5V-fF-4lF"/>
- <constraint firstAttribute="bottomMargin" secondItem="9EF-eb-AQy" secondAttribute="bottom" constant="4" id="fC9-Vr-1oL"/>
- <constraint firstAttribute="trailingMargin" secondItem="9EF-eb-AQy" secondAttribute="trailing" id="hJq-Fp-vdI"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="44" id="UQR-7T-dRC">
- <rect key="frame" x="0.0" y="425.99999618530273" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="UQR-7T-dRC" id="uA4-gS-47e">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" textAlignment="natural" adjustsFontForContentSizeCategory="YES" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="Vux-pk-wpz">
- <rect key="frame" x="16" y="15" width="343" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" spellCheckingType="no" returnKeyType="done" secureTextEntry="YES"/>
- <connections>
- <action selector="primaryActionTriggered:forEvent:" destination="gqY-5Z-sAE" eventType="primaryActionTriggered" id="hwq-WW-B6l"/>
- </connections>
- </textField>
- </subviews>
- <constraints>
- <constraint firstAttribute="trailingMargin" secondItem="Vux-pk-wpz" secondAttribute="trailing" id="3qB-F1-kio"/>
- <constraint firstItem="Vux-pk-wpz" firstAttribute="top" secondItem="uA4-gS-47e" secondAttribute="topMargin" constant="4" id="8iV-OQ-dB5"/>
- <constraint firstItem="Vux-pk-wpz" firstAttribute="leading" secondItem="uA4-gS-47e" secondAttribute="leadingMargin" id="C7Y-Pa-3mp"/>
- <constraint firstAttribute="bottomMargin" secondItem="Vux-pk-wpz" secondAttribute="bottom" constant="4" id="n4t-KO-aAq"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="gqY-5Z-sAE" id="csM-2C-MTf"/>
- <outlet property="delegate" destination="gqY-5Z-sAE" id="9Do-oo-9fP"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" id="6TG-vQ-Od6"/>
- <connections>
- <outlet property="passwordAgainField" destination="2Ac-Rf-Lxd" id="r86-5K-JHG"/>
- <outlet property="passwordField" destination="axE-Id-aQi" id="jJd-kW-ErT"/>
- <outlet property="serverField" destination="hAy-t0-oQ4" id="QiJ-mH-jor"/>
- <outlet property="serverPasswordField" destination="Vux-pk-wpz" id="KrY-zQ-uai"/>
- <outlet property="serverSwitch" destination="4PS-Vf-O8u" id="zpS-n8-hkP"/>
- <outlet property="serverSwitchLabel" destination="wMx-pg-1qc" id="zn4-cj-wKy"/>
- <outlet property="serverUserNameField" destination="9EF-eb-AQy" id="TlN-Iq-DCX"/>
- <segue destination="DxL-0A-snW" kind="unwind" identifier="SafeSetupPasswordDone" unwindAction="doneSafeSetupPassword:" id="iI1-bQ-PN3"/>
- <segue destination="DxL-0A-snW" kind="unwind" identifier="SafeIntroPasswordDone" unwindAction="doneSafeIntroPassword:" id="kbL-Ut-KPe"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="8gs-FX-7J6" userLabel="First Responder" sceneMemberID="firstResponder"/>
- <exit id="DxL-0A-snW" userLabel="Exit" sceneMemberID="exit"/>
- </objects>
- <point key="canvasLocation" x="-1961" y="886"/>
- </scene>
- <!--Navigation Controller-->
- <scene sceneID="8zQ-tc-SaY">
- <objects>
- <navigationController storyboardIdentifier="SafeIntroNavigationController" automaticallyAdjustsScrollViewInsets="NO" id="isA-4a-PvY" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" id="hbk-AU-f6v">
- <rect key="frame" x="0.0" y="0.0" width="375" height="56"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="gqY-5Z-sAE" kind="relationship" relationship="rootViewController" id="4dU-Go-ikR"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="z9t-dS-pPE" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2724" y="886"/>
- </scene>
- </scenes>
- <designables>
- <designable name="HNt-4v-CIs">
- <size key="intrinsicContentSize" width="46" height="30"/>
- </designable>
- <designable name="Jug-be-JzD">
- <size key="intrinsicContentSize" width="46" height="30"/>
- </designable>
- <designable name="Q00-XE-5z0">
- <size key="intrinsicContentSize" width="46" height="30"/>
- </designable>
- </designables>
- <inferredMetricsTieBreakers>
- <segue reference="Wuf-ev-MSL"/>
- </inferredMetricsTieBreakers>
- <resources>
- <image name="Edit" width="22" height="22"/>
- <image name="Info" width="22" height="22"/>
- <image name="Phone" width="25" height="25"/>
- <image name="QRCode" width="50" height="50"/>
- <image name="QRCodeBackground" width="70" height="70"/>
- <image name="QRScan" width="22" height="22"/>
- <image name="Share" width="25" height="25"/>
- <image name="ThreemaSafeIntro.png" width="400" height="400"/>
- <systemColor name="groupTableViewBackgroundColor">
- <color red="0.94901960784313721" green="0.94901960784313721" blue="0.96862745098039216" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </systemColor>
- </resources>
- </document>
|