SettingsStoryboard.storyboard 346 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <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="2PC-CR-xd5">
  3. <device id="retina4_7" orientation="portrait" appearance="light"/>
  4. <dependencies>
  5. <deployment identifier="iOS"/>
  6. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
  7. <capability name="Safe area layout guides" minToolsVersion="9.0"/>
  8. <capability name="System colors in document resources" minToolsVersion="11.0"/>
  9. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  10. </dependencies>
  11. <scenes>
  12. <!--Threema Web-->
  13. <scene sceneID="pzW-sg-zxD">
  14. <objects>
  15. <tableViewController id="rgi-Np-f1f" userLabel="Threema Web" customClass="ThreemaWebViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  16. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="92t-tI-Kgq">
  17. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  18. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  19. <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
  20. <prototypes>
  21. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="10" reuseIdentifier="ThreemaWebSettingCell" editingAccessoryType="disclosureIndicator" textLabel="PgU-hr-nkc" imageView="ET0-bQ-sA6" style="IBUITableViewCellStyleDefault" id="KdC-g9-aTX" customClass="ThreemaWebSettingCell" customModule="Threema" customModuleProvider="target">
  22. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  23. <autoresizingMask key="autoresizingMask"/>
  24. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="KdC-g9-aTX" id="CJM-m5-hDl">
  25. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  26. <autoresizingMask key="autoresizingMask"/>
  27. <subviews>
  28. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="PgU-hr-nkc">
  29. <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
  30. <autoresizingMask key="autoresizingMask"/>
  31. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  32. <nil key="textColor"/>
  33. <nil key="highlightedColor"/>
  34. </label>
  35. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" id="ET0-bQ-sA6">
  36. <rect key="frame" x="16" y="17" width="40" height="40"/>
  37. <autoresizingMask key="autoresizingMask"/>
  38. </imageView>
  39. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="kAV-mR-wye">
  40. <rect key="frame" x="163" y="21.5" width="49" height="31"/>
  41. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  42. <connections>
  43. <action selector="threemaWebSwitchChanged:" destination="rgi-Np-f1f" eventType="valueChanged" id="XVV-yr-5WX"/>
  44. </connections>
  45. </switch>
  46. </subviews>
  47. </tableViewCellContentView>
  48. <connections>
  49. <outlet property="accessoryView" destination="kAV-mR-wye" id="cWn-oB-U8n"/>
  50. <outlet property="titleLabel" destination="PgU-hr-nkc" id="D0H-uv-CDA"/>
  51. <outlet property="webClientSwitch" destination="kAV-mR-wye" id="l5f-bh-vE8"/>
  52. </connections>
  53. </tableViewCell>
  54. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="WebClientSessionCell" rowHeight="84" id="izl-E6-WZs" customClass="WebClientSessionCell" customModule="Threema" customModuleProvider="target">
  55. <rect key="frame" x="0.0" y="99" width="375" height="84"/>
  56. <autoresizingMask key="autoresizingMask"/>
  57. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="izl-E6-WZs" id="cKH-XY-Tv6">
  58. <rect key="frame" x="0.0" y="0.0" width="375" height="84"/>
  59. <autoresizingMask key="autoresizingMask"/>
  60. <subviews>
  61. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kjV-ez-MfM">
  62. <rect key="frame" x="16" y="22" width="40" height="40"/>
  63. <constraints>
  64. <constraint firstAttribute="width" constant="40" id="0mj-Sg-m2F"/>
  65. <constraint firstAttribute="height" constant="40" id="75w-4d-7Tz"/>
  66. </constraints>
  67. </imageView>
  68. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="XCX-xB-bdI">
  69. <rect key="frame" x="26" y="32" width="20" height="20"/>
  70. </activityIndicatorView>
  71. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="100" contentMode="left" verticalCompressionResistancePriority="751" text="Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="jGx-48-XMs">
  72. <rect key="frame" x="72" y="11" width="287" height="21"/>
  73. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  74. <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
  75. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  76. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  77. </label>
  78. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" verticalCompressionResistancePriority="751" text="Last use: Yesterday
Saved" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZwR-ey-2Tv" customClass="TTTAttributedLabel">
  79. <rect key="frame" x="72" y="35" width="287" height="38"/>
  80. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  81. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  82. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  83. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  84. </label>
  85. </subviews>
  86. <constraints>
  87. <constraint firstItem="kjV-ez-MfM" firstAttribute="leading" secondItem="cKH-XY-Tv6" secondAttribute="leadingMargin" id="0gr-AW-2n1"/>
  88. <constraint firstItem="XCX-xB-bdI" firstAttribute="centerX" secondItem="kjV-ez-MfM" secondAttribute="centerX" id="1Xd-I3-2XM"/>
  89. <constraint firstItem="ZwR-ey-2Tv" firstAttribute="leading" secondItem="kjV-ez-MfM" secondAttribute="trailing" constant="16" id="F5r-EM-ccK"/>
  90. <constraint firstItem="jGx-48-XMs" firstAttribute="top" secondItem="cKH-XY-Tv6" secondAttribute="topMargin" id="IXc-uZ-5im"/>
  91. <constraint firstAttribute="bottomMargin" secondItem="ZwR-ey-2Tv" secondAttribute="bottom" id="JRb-Cs-ecI"/>
  92. <constraint firstItem="kjV-ez-MfM" firstAttribute="top" secondItem="cKH-XY-Tv6" secondAttribute="topMargin" constant="11" id="O48-p0-gZ2"/>
  93. <constraint firstItem="jGx-48-XMs" firstAttribute="leading" secondItem="kjV-ez-MfM" secondAttribute="trailing" constant="16" id="Oa1-AF-cbK"/>
  94. <constraint firstAttribute="trailingMargin" secondItem="ZwR-ey-2Tv" secondAttribute="trailing" id="Pf7-JB-3bU"/>
  95. <constraint firstAttribute="bottomMargin" secondItem="kjV-ez-MfM" secondAttribute="bottom" constant="11" id="RRh-u3-ECV"/>
  96. <constraint firstItem="XCX-xB-bdI" firstAttribute="centerY" secondItem="kjV-ez-MfM" secondAttribute="centerY" id="cGB-wj-OYe"/>
  97. <constraint firstItem="jGx-48-XMs" firstAttribute="trailing" secondItem="cKH-XY-Tv6" secondAttribute="trailingMargin" id="dKS-rv-3wu"/>
  98. <constraint firstItem="ZwR-ey-2Tv" firstAttribute="top" secondItem="jGx-48-XMs" secondAttribute="bottom" constant="3" id="jji-SZ-EC5"/>
  99. </constraints>
  100. </tableViewCellContentView>
  101. <connections>
  102. <outlet property="browserIcon" destination="kjV-ez-MfM" id="WBT-0o-4dg"/>
  103. <outlet property="browserLabel" destination="jGx-48-XMs" id="nrF-4l-vHP"/>
  104. <outlet property="infoLabel" destination="ZwR-ey-2Tv" id="H4w-pW-nb0"/>
  105. <outlet property="loadingIndicator" destination="XCX-xB-bdI" id="Y0c-wX-kdA"/>
  106. </connections>
  107. </tableViewCell>
  108. </prototypes>
  109. <connections>
  110. <outlet property="dataSource" destination="rgi-Np-f1f" id="AEN-cD-pfG"/>
  111. <outlet property="delegate" destination="rgi-Np-f1f" id="fmZ-ip-xoX"/>
  112. </connections>
  113. </tableView>
  114. <navigationItem key="navigationItem" title="Title" largeTitleDisplayMode="never" id="0aZ-HV-9vo">
  115. <barButtonItem key="rightBarButtonItem" image="QRScan" id="ixo-ag-1ot">
  116. <connections>
  117. <action selector="scanNewSession:" destination="rgi-Np-f1f" id="e03-cC-b9B"/>
  118. </connections>
  119. </barButtonItem>
  120. </navigationItem>
  121. <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" prompted="NO"/>
  122. <connections>
  123. <outlet property="cameraButton" destination="ixo-ag-1ot" id="D9D-aA-9QH"/>
  124. </connections>
  125. </tableViewController>
  126. <placeholder placeholderIdentifier="IBFirstResponder" id="H5c-no-tgs" userLabel="First Responder" sceneMemberID="firstResponder"/>
  127. </objects>
  128. <point key="canvasLocation" x="-2999.1999999999998" y="1479.3103448275863"/>
  129. </scene>
  130. <!--Settings-->
  131. <scene sceneID="nKh-tx-oaN">
  132. <objects>
  133. <tableViewController storyboardIdentifier="settingsViewController" id="2PC-CR-xd5" customClass="SettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  134. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="mmJ-dB-SRw">
  135. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  136. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  137. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  138. <sections>
  139. <tableViewSection id="Btr-8m-OHg">
  140. <cells>
  141. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="SaB-S6-XQO" imageView="lax-y1-5gu" style="IBUITableViewCellStyleDefault" id="Rqu-Ei-Leq">
  142. <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
  143. <autoresizingMask key="autoresizingMask"/>
  144. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Rqu-Ei-Leq" id="pRQ-KI-aph">
  145. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  146. <autoresizingMask key="autoresizingMask"/>
  147. <subviews>
  148. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Privacy" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="SaB-S6-XQO">
  149. <rect key="frame" x="57" y="0.0" width="283" height="44"/>
  150. <autoresizingMask key="autoresizingMask"/>
  151. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  152. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  153. <nil key="highlightedColor"/>
  154. </label>
  155. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="PrivacyLight" id="lax-y1-5gu">
  156. <rect key="frame" x="16" y="9" width="26" height="26"/>
  157. <autoresizingMask key="autoresizingMask"/>
  158. </imageView>
  159. </subviews>
  160. </tableViewCellContentView>
  161. <connections>
  162. <segue destination="L65-cn-Epp" kind="show" id="yKy-DC-cub"/>
  163. </connections>
  164. </tableViewCell>
  165. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" misplaced="YES" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="bMQ-iT-eGf" imageView="D9L-51-fJ4" style="IBUITableViewCellStyleDefault" id="pDZ-78-Yrt">
  166. <rect key="frame" x="0.0" y="61.5" width="375" height="44"/>
  167. <autoresizingMask key="autoresizingMask"/>
  168. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="pDZ-78-Yrt" id="x4K-gM-gsl">
  169. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  170. <autoresizingMask key="autoresizingMask"/>
  171. <subviews>
  172. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Appearance" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="bMQ-iT-eGf">
  173. <rect key="frame" x="57" y="0.0" width="283" height="44"/>
  174. <autoresizingMask key="autoresizingMask"/>
  175. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  176. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  177. <nil key="highlightedColor"/>
  178. </label>
  179. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="AppearanceLight" id="D9L-51-fJ4">
  180. <rect key="frame" x="16" y="9" width="26" height="26"/>
  181. <autoresizingMask key="autoresizingMask"/>
  182. </imageView>
  183. </subviews>
  184. </tableViewCellContentView>
  185. <connections>
  186. <segue destination="m14-Er-fpS" kind="show" id="jUy-we-JLV"/>
  187. </connections>
  188. </tableViewCell>
  189. <tableViewCell contentMode="scaleToFill" misplaced="YES" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="8G0-w5-Ogg" imageView="oEd-cY-YBO" style="IBUITableViewCellStyleDefault" id="Vfu-hq-hEW">
  190. <rect key="frame" x="0.0" y="105.5" width="375" height="44"/>
  191. <autoresizingMask key="autoresizingMask"/>
  192. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Vfu-hq-hEW" id="jUw-Re-bHu">
  193. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  194. <autoresizingMask key="autoresizingMask"/>
  195. <subviews>
  196. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Notifications" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="8G0-w5-Ogg">
  197. <rect key="frame" x="58" y="0.0" width="282" height="44"/>
  198. <autoresizingMask key="autoresizingMask"/>
  199. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  200. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  201. <nil key="highlightedColor"/>
  202. </label>
  203. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="NotificationsLight" id="oEd-cY-YBO">
  204. <rect key="frame" x="16" y="9" width="27" height="26"/>
  205. <autoresizingMask key="autoresizingMask"/>
  206. </imageView>
  207. </subviews>
  208. </tableViewCellContentView>
  209. <connections>
  210. <segue destination="TrM-Qf-Qx4" kind="show" id="n6M-yY-keW"/>
  211. </connections>
  212. </tableViewCell>
  213. <tableViewCell contentMode="scaleToFill" misplaced="YES" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="cZS-fm-VM3" imageView="Nfz-7n-KDO" style="IBUITableViewCellStyleDefault" id="3uu-C1-keL">
  214. <rect key="frame" x="0.0" y="149.5" width="375" height="44"/>
  215. <autoresizingMask key="autoresizingMask"/>
  216. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3uu-C1-keL" id="egc-YG-ClL">
  217. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  218. <autoresizingMask key="autoresizingMask"/>
  219. <subviews>
  220. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Chat" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="cZS-fm-VM3">
  221. <rect key="frame" x="57" y="0.0" width="283" height="44"/>
  222. <autoresizingMask key="autoresizingMask"/>
  223. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  224. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  225. <nil key="highlightedColor"/>
  226. </label>
  227. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="ChatLight" id="Nfz-7n-KDO">
  228. <rect key="frame" x="16" y="9" width="26" height="26"/>
  229. <autoresizingMask key="autoresizingMask"/>
  230. </imageView>
  231. </subviews>
  232. </tableViewCellContentView>
  233. <connections>
  234. <segue destination="h3L-LN-tr9" kind="show" id="nth-ef-g1j"/>
  235. </connections>
  236. </tableViewCell>
  237. <tableViewCell contentMode="scaleToFill" misplaced="YES" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="ch4-Rz-Vt0" imageView="1tT-6D-raI" style="IBUITableViewCellStyleDefault" id="2fC-S8-V2G">
  238. <rect key="frame" x="0.0" y="193.5" width="375" height="44"/>
  239. <autoresizingMask key="autoresizingMask"/>
  240. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="2fC-S8-V2G" id="nHK-ts-QPg">
  241. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  242. <autoresizingMask key="autoresizingMask"/>
  243. <subviews>
  244. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Media" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="ch4-Rz-Vt0">
  245. <rect key="frame" x="57" y="0.0" width="283" height="44"/>
  246. <autoresizingMask key="autoresizingMask"/>
  247. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  248. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  249. <nil key="highlightedColor"/>
  250. </label>
  251. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="MediaLight" id="1tT-6D-raI">
  252. <rect key="frame" x="16" y="9" width="26" height="26"/>
  253. <autoresizingMask key="autoresizingMask"/>
  254. </imageView>
  255. </subviews>
  256. </tableViewCellContentView>
  257. <connections>
  258. <segue destination="HC7-Yt-s1f" kind="show" id="emB-QE-CC5"/>
  259. </connections>
  260. </tableViewCell>
  261. <tableViewCell contentMode="scaleToFill" misplaced="YES" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Nab-aA-gik" imageView="c8N-ed-UYf" style="IBUITableViewCellStyleDefault" id="6wE-42-dyW">
  262. <rect key="frame" x="0.0" y="237.5" width="375" height="44"/>
  263. <autoresizingMask key="autoresizingMask"/>
  264. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6wE-42-dyW" id="CkQ-RY-JxU">
  265. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  266. <autoresizingMask key="autoresizingMask"/>
  267. <subviews>
  268. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Storage Management" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Nab-aA-gik">
  269. <rect key="frame" x="57" y="0.0" width="283" height="44"/>
  270. <autoresizingMask key="autoresizingMask"/>
  271. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  272. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  273. <nil key="highlightedColor"/>
  274. </label>
  275. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="StorageManagementLight" id="c8N-ed-UYf">
  276. <rect key="frame" x="16" y="9" width="26" height="26"/>
  277. <autoresizingMask key="autoresizingMask"/>
  278. </imageView>
  279. </subviews>
  280. </tableViewCellContentView>
  281. <connections>
  282. <segue destination="RmG-ce-hCV" kind="show" id="OMw-73-LOk"/>
  283. </connections>
  284. </tableViewCell>
  285. <tableViewCell contentMode="scaleToFill" misplaced="YES" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="aIj-lm-zMl" detailTextLabel="Qpp-gz-gkC" imageView="mih-1p-qzU" style="IBUITableViewCellStyleValue1" id="qn1-0N-FBd">
  286. <rect key="frame" x="0.0" y="281.5" width="375" height="44"/>
  287. <autoresizingMask key="autoresizingMask"/>
  288. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="qn1-0N-FBd" id="fsz-2U-8Bd">
  289. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  290. <autoresizingMask key="autoresizingMask"/>
  291. <subviews>
  292. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Passcode Lock" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="aIj-lm-zMl">
  293. <rect key="frame" x="57" y="12" width="114.5" height="20.5"/>
  294. <autoresizingMask key="autoresizingMask"/>
  295. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  296. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  297. <nil key="highlightedColor"/>
  298. </label>
  299. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Qpp-gz-gkC">
  300. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  301. <autoresizingMask key="autoresizingMask"/>
  302. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  303. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  304. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  305. </label>
  306. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="PasscodeLockLight" id="mih-1p-qzU">
  307. <rect key="frame" x="16" y="9" width="26" height="26"/>
  308. <autoresizingMask key="autoresizingMask"/>
  309. </imageView>
  310. </subviews>
  311. </tableViewCellContentView>
  312. </tableViewCell>
  313. <tableViewCell contentMode="scaleToFill" misplaced="YES" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="pk6-CB-I9M" imageView="wIC-sp-QSN" style="IBUITableViewCellStyleDefault" id="owx-NW-S4B">
  314. <rect key="frame" x="0.0" y="325.5" width="375" height="44"/>
  315. <autoresizingMask key="autoresizingMask"/>
  316. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="owx-NW-S4B" id="3w2-US-uYh">
  317. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  318. <autoresizingMask key="autoresizingMask"/>
  319. <subviews>
  320. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Dev Mode" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="pk6-CB-I9M">
  321. <rect key="frame" x="57" y="0.0" width="283" height="44"/>
  322. <autoresizingMask key="autoresizingMask"/>
  323. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  324. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  325. <nil key="highlightedColor"/>
  326. </label>
  327. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="DevModeLight" id="wIC-sp-QSN">
  328. <rect key="frame" x="16" y="9" width="26" height="26"/>
  329. <autoresizingMask key="autoresizingMask"/>
  330. </imageView>
  331. </subviews>
  332. </tableViewCellContentView>
  333. <connections>
  334. <segue destination="UUK-A4-Kvt" kind="show" id="2hL-2Q-uj2"/>
  335. </connections>
  336. </tableViewCell>
  337. </cells>
  338. </tableViewSection>
  339. <tableViewSection headerTitle="" id="Qqp-Yh-p4Q">
  340. <cells>
  341. <tableViewCell contentMode="scaleToFill" selectionStyle="none" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="2nG-dM-oou" imageView="3Wb-yI-5yG" style="IBUITableViewCellStyleDefault" id="Xwk-oO-mdT">
  342. <rect key="frame" x="0.0" y="409" width="375" height="44"/>
  343. <autoresizingMask key="autoresizingMask"/>
  344. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Xwk-oO-mdT" id="Oxc-s2-NSr">
  345. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  346. <autoresizingMask key="autoresizingMask"/>
  347. <subviews>
  348. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Calls" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2nG-dM-oou">
  349. <rect key="frame" x="57" y="0.0" width="283" height="44"/>
  350. <autoresizingMask key="autoresizingMask"/>
  351. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  352. <nil key="highlightedColor"/>
  353. </label>
  354. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="ThreemaCallsSettingsLight" id="3Wb-yI-5yG">
  355. <rect key="frame" x="16" y="9" width="26" height="26"/>
  356. <autoresizingMask key="autoresizingMask"/>
  357. </imageView>
  358. </subviews>
  359. </tableViewCellContentView>
  360. <connections>
  361. <segue destination="vhQ-fG-5Bt" kind="show" id="9JH-xo-iyc"/>
  362. </connections>
  363. </tableViewCell>
  364. <tableViewCell contentMode="scaleToFill" misplaced="YES" selectionStyle="none" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="EIQ-BB-fEn" detailTextLabel="w6Z-IX-2ZA" imageView="37H-21-6Cj" style="IBUITableViewCellStyleValue1" id="6eJ-9i-EE7">
  365. <rect key="frame" x="0.0" y="453" width="375" height="44"/>
  366. <autoresizingMask key="autoresizingMask"/>
  367. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6eJ-9i-EE7" id="f6x-W1-So7">
  368. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  369. <autoresizingMask key="autoresizingMask"/>
  370. <subviews>
  371. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Web" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="EIQ-BB-fEn">
  372. <rect key="frame" x="57" y="12" width="106.5" height="20.5"/>
  373. <autoresizingMask key="autoresizingMask"/>
  374. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  375. <nil key="highlightedColor"/>
  376. </label>
  377. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="w6Z-IX-2ZA">
  378. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  379. <autoresizingMask key="autoresizingMask"/>
  380. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  381. <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57666590073529411" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  382. <color key="highlightedColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57633107930672267" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  383. </label>
  384. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="ThreemaWebLight" id="37H-21-6Cj">
  385. <rect key="frame" x="16" y="9" width="26" height="26"/>
  386. <autoresizingMask key="autoresizingMask"/>
  387. </imageView>
  388. </subviews>
  389. </tableViewCellContentView>
  390. <connections>
  391. <segue destination="rgi-Np-f1f" kind="show" id="jOu-4k-XCs"/>
  392. </connections>
  393. </tableViewCell>
  394. </cells>
  395. </tableViewSection>
  396. <tableViewSection headerTitle="" id="5dV-M1-4fo">
  397. <cells>
  398. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="bLS-Z9-TSk" detailTextLabel="8hI-GF-46C" style="IBUITableViewCellStyleValue1" id="2M1-eA-akA">
  399. <rect key="frame" x="0.0" y="536.5" width="375" height="44"/>
  400. <autoresizingMask key="autoresizingMask"/>
  401. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="2M1-eA-akA" id="nLH-tb-Hsz">
  402. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  403. <autoresizingMask key="autoresizingMask"/>
  404. <subviews>
  405. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Network Status" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="bLS-Z9-TSk">
  406. <rect key="frame" x="16" y="12" width="117.5" height="20.5"/>
  407. <autoresizingMask key="autoresizingMask"/>
  408. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  409. <nil key="highlightedColor"/>
  410. </label>
  411. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Connected" textAlignment="right" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="8hI-GF-46C">
  412. <rect key="frame" x="275" y="12" width="84" height="20.5"/>
  413. <autoresizingMask key="autoresizingMask"/>
  414. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  415. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  416. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  417. </label>
  418. </subviews>
  419. </tableViewCellContentView>
  420. </tableViewCell>
  421. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="FHz-R0-2YX" detailTextLabel="2a3-K6-cFL" style="IBUITableViewCellStyleValue1" id="uwp-gd-REU">
  422. <rect key="frame" x="0.0" y="580.5" width="375" height="44"/>
  423. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  424. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uwp-gd-REU" id="kr7-VX-mGK">
  425. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  426. <autoresizingMask key="autoresizingMask"/>
  427. <subviews>
  428. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Version" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="FHz-R0-2YX">
  429. <rect key="frame" x="16" y="12" width="57" height="20.5"/>
  430. <autoresizingMask key="autoresizingMask"/>
  431. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  432. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  433. <nil key="highlightedColor"/>
  434. </label>
  435. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="0.0 (000)" textAlignment="right" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2a3-K6-cFL" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
  436. <rect key="frame" x="287.5" y="12" width="71.5" height="20.5"/>
  437. <autoresizingMask key="autoresizingMask"/>
  438. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  439. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  440. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  441. </label>
  442. </subviews>
  443. </tableViewCellContentView>
  444. </tableViewCell>
  445. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="8Kf-u4-xCN">
  446. <rect key="frame" x="0.0" y="624.5" width="375" height="44"/>
  447. <autoresizingMask key="autoresizingMask"/>
  448. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="8Kf-u4-xCN" id="Vdp-3B-COb">
  449. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  450. <autoresizingMask key="autoresizingMask"/>
  451. <subviews>
  452. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="wordWrap" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="ZMs-fp-gbD">
  453. <rect key="frame" x="8" y="11" width="41.5" height="22"/>
  454. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  455. <nil key="textColor"/>
  456. <nil key="highlightedColor"/>
  457. </label>
  458. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="right" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="OC2-0Y-pj2">
  459. <rect key="frame" x="325.5" y="11" width="41.5" height="22"/>
  460. <constraints>
  461. <constraint firstAttribute="width" relation="lessThanOrEqual" constant="150" id="cfd-kP-dKc"/>
  462. </constraints>
  463. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  464. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  465. <nil key="highlightedColor"/>
  466. </label>
  467. </subviews>
  468. <constraints>
  469. <constraint firstItem="ZMs-fp-gbD" firstAttribute="leading" secondItem="Vdp-3B-COb" secondAttribute="leadingMargin" id="2eK-HB-FoK"/>
  470. <constraint firstAttribute="trailingMargin" secondItem="OC2-0Y-pj2" secondAttribute="trailing" id="5HC-Pq-lcD"/>
  471. <constraint firstItem="OC2-0Y-pj2" firstAttribute="top" secondItem="Vdp-3B-COb" secondAttribute="topMargin" id="6lv-Ml-pAA"/>
  472. <constraint firstItem="OC2-0Y-pj2" firstAttribute="centerY" secondItem="Vdp-3B-COb" secondAttribute="centerY" id="CYO-z0-vfx"/>
  473. <constraint firstItem="ZMs-fp-gbD" firstAttribute="top" secondItem="Vdp-3B-COb" secondAttribute="topMargin" id="Ge9-2e-fwY"/>
  474. <constraint firstItem="ZMs-fp-gbD" firstAttribute="centerY" secondItem="Vdp-3B-COb" secondAttribute="centerY" id="SbW-6I-use"/>
  475. <constraint firstAttribute="bottomMargin" secondItem="ZMs-fp-gbD" secondAttribute="bottom" id="aoq-Tx-DwA"/>
  476. <constraint firstItem="OC2-0Y-pj2" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="ZMs-fp-gbD" secondAttribute="trailing" constant="10" id="dsV-oA-FC4"/>
  477. <constraint firstAttribute="bottomMargin" secondItem="OC2-0Y-pj2" secondAttribute="bottom" id="sFc-3u-FwS"/>
  478. </constraints>
  479. </tableViewCellContentView>
  480. </tableViewCell>
  481. </cells>
  482. </tableViewSection>
  483. <tableViewSection headerTitle="" id="Oi9-gX-BvD">
  484. <cells>
  485. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="WWx-HN-MHB" imageView="cKL-n6-ffM" style="IBUITableViewCellStyleDefault" id="igB-ck-F3u">
  486. <rect key="frame" x="0.0" y="708" width="375" height="44"/>
  487. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  488. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="igB-ck-F3u" id="uVb-9Z-9Wm">
  489. <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
  490. <autoresizingMask key="autoresizingMask"/>
  491. <subviews>
  492. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Invite a Friend" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="WWx-HN-MHB">
  493. <rect key="frame" x="49" y="0.0" width="299" height="44"/>
  494. <autoresizingMask key="autoresizingMask"/>
  495. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  496. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  497. <nil key="highlightedColor"/>
  498. </label>
  499. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="InviteAFriendLight" id="cKL-n6-ffM">
  500. <rect key="frame" x="8" y="9" width="26" height="26"/>
  501. <autoresizingMask key="autoresizingMask"/>
  502. </imageView>
  503. </subviews>
  504. </tableViewCellContentView>
  505. </tableViewCell>
  506. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="KQm-3z-p5f" imageView="ddV-qz-WMt" style="IBUITableViewCellStyleDefault" id="ciV-iW-Qa4">
  507. <rect key="frame" x="0.0" y="752" width="375" height="44"/>
  508. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  509. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ciV-iW-Qa4" id="QDq-tN-gca">
  510. <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
  511. <autoresizingMask key="autoresizingMask"/>
  512. <subviews>
  513. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Channel" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="KQm-3z-p5f">
  514. <rect key="frame" x="49" y="0.0" width="299" height="44"/>
  515. <autoresizingMask key="autoresizingMask"/>
  516. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  517. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  518. <nil key="highlightedColor"/>
  519. </label>
  520. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="ThreemaChannelLight" id="ddV-qz-WMt">
  521. <rect key="frame" x="8" y="9" width="26" height="26"/>
  522. <autoresizingMask key="autoresizingMask"/>
  523. </imageView>
  524. </subviews>
  525. </tableViewCellContentView>
  526. </tableViewCell>
  527. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="hqy-Tv-y10" imageView="uv0-9G-ZEo" style="IBUITableViewCellStyleDefault" id="oFI-QH-Jyu">
  528. <rect key="frame" x="0.0" y="796" width="375" height="44"/>
  529. <autoresizingMask key="autoresizingMask"/>
  530. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oFI-QH-Jyu" id="o9l-sS-9lO">
  531. <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
  532. <autoresizingMask key="autoresizingMask"/>
  533. <subviews>
  534. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Work" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="hqy-Tv-y10">
  535. <rect key="frame" x="49" y="0.0" width="299" height="44"/>
  536. <autoresizingMask key="autoresizingMask"/>
  537. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  538. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  539. <nil key="highlightedColor"/>
  540. </label>
  541. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleAspectFit" insetsLayoutMarginsFromSafeArea="NO" image="ThreemaWorkSettingsLight" id="uv0-9G-ZEo">
  542. <rect key="frame" x="8" y="9" width="26" height="26"/>
  543. <autoresizingMask key="autoresizingMask"/>
  544. </imageView>
  545. </subviews>
  546. </tableViewCellContentView>
  547. <connections>
  548. <segue destination="jCJ-Xa-v16" kind="show" identifier="ThreemaWorkSegue" id="Kku-Nn-wnt"/>
  549. </connections>
  550. </tableViewCell>
  551. </cells>
  552. </tableViewSection>
  553. <tableViewSection headerTitle="" id="OuY-U2-cAH">
  554. <cells>
  555. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="x94-1w-4Li" imageView="sgw-Y5-qFA" style="IBUITableViewCellStyleDefault" id="q2K-zC-OaO">
  556. <rect key="frame" x="0.0" y="879.5" width="375" height="44"/>
  557. <autoresizingMask key="autoresizingMask"/>
  558. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="q2K-zC-OaO" id="6FR-OG-mfs">
  559. <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
  560. <autoresizingMask key="autoresizingMask"/>
  561. <subviews>
  562. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Support" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="x94-1w-4Li">
  563. <rect key="frame" x="49" y="0.0" width="299" height="44"/>
  564. <autoresizingMask key="autoresizingMask"/>
  565. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  566. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  567. <nil key="highlightedColor"/>
  568. </label>
  569. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="SupportLight" id="sgw-Y5-qFA">
  570. <rect key="frame" x="8" y="9" width="26" height="26"/>
  571. <autoresizingMask key="autoresizingMask"/>
  572. </imageView>
  573. </subviews>
  574. </tableViewCellContentView>
  575. <connections>
  576. <segue destination="YXd-Rd-n37" kind="show" id="1nR-jZ-z84"/>
  577. </connections>
  578. </tableViewCell>
  579. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="tz7-kW-scx" imageView="GpC-Ew-HLa" style="IBUITableViewCellStyleDefault" id="agj-Re-bFU">
  580. <rect key="frame" x="0.0" y="923.5" width="375" height="44"/>
  581. <autoresizingMask key="autoresizingMask"/>
  582. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="agj-Re-bFU" id="FzU-DV-vZ5">
  583. <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
  584. <autoresizingMask key="autoresizingMask"/>
  585. <subviews>
  586. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Privacy Policy" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="tz7-kW-scx">
  587. <rect key="frame" x="49" y="0.0" width="299" height="44"/>
  588. <autoresizingMask key="autoresizingMask"/>
  589. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  590. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  591. <nil key="highlightedColor"/>
  592. </label>
  593. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="PrivacyPolicyLight" id="GpC-Ew-HLa">
  594. <rect key="frame" x="8" y="9" width="26" height="26"/>
  595. <autoresizingMask key="autoresizingMask"/>
  596. </imageView>
  597. </subviews>
  598. </tableViewCellContentView>
  599. <connections>
  600. <segue destination="ExO-Da-OuT" kind="show" id="7vH-Tj-jlZ"/>
  601. </connections>
  602. </tableViewCell>
  603. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="2bS-As-V6Z" imageView="d0h-42-YPE" style="IBUITableViewCellStyleDefault" id="UNP-ds-IUg">
  604. <rect key="frame" x="0.0" y="967.5" width="375" height="44"/>
  605. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  606. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UNP-ds-IUg" id="b4u-gS-s6e">
  607. <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
  608. <autoresizingMask key="autoresizingMask"/>
  609. <subviews>
  610. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="License" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2bS-As-V6Z">
  611. <rect key="frame" x="49" y="0.0" width="299" height="44"/>
  612. <autoresizingMask key="autoresizingMask"/>
  613. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  614. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  615. <nil key="highlightedColor"/>
  616. </label>
  617. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="LicenseLight" id="d0h-42-YPE">
  618. <rect key="frame" x="8" y="9" width="26" height="26"/>
  619. <autoresizingMask key="autoresizingMask"/>
  620. </imageView>
  621. </subviews>
  622. </tableViewCellContentView>
  623. <connections>
  624. <segue destination="XhF-Vw-SGc" kind="show" id="xJk-LS-4es"/>
  625. </connections>
  626. </tableViewCell>
  627. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="bde-fJ-sgC" imageView="FW1-dc-HTR" style="IBUITableViewCellStyleDefault" id="4F9-ah-alP">
  628. <rect key="frame" x="0.0" y="1011.5" width="375" height="44"/>
  629. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  630. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4F9-ah-alP" id="Kq4-5a-Z4M">
  631. <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
  632. <autoresizingMask key="autoresizingMask"/>
  633. <subviews>
  634. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Advanced" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="bde-fJ-sgC">
  635. <rect key="frame" x="49" y="0.0" width="299" height="44"/>
  636. <autoresizingMask key="autoresizingMask"/>
  637. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  638. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  639. <nil key="highlightedColor"/>
  640. </label>
  641. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="AdvancedLight" id="FW1-dc-HTR">
  642. <rect key="frame" x="8" y="9" width="26" height="26"/>
  643. <autoresizingMask key="autoresizingMask"/>
  644. </imageView>
  645. </subviews>
  646. </tableViewCellContentView>
  647. <connections>
  648. <segue destination="jNb-wC-joh" kind="show" id="Ccc-ah-LNd"/>
  649. </connections>
  650. </tableViewCell>
  651. </cells>
  652. </tableViewSection>
  653. </sections>
  654. <connections>
  655. <outlet property="dataSource" destination="2PC-CR-xd5" id="xjO-QP-VxC"/>
  656. <outlet property="delegate" destination="2PC-CR-xd5" id="QUP-PI-zv4"/>
  657. </connections>
  658. </tableView>
  659. <navigationItem key="navigationItem" title="Settings" id="Z1n-S1-DAp"/>
  660. <connections>
  661. <outlet property="advancedCell" destination="4F9-ah-alP" id="qvk-2z-1vj"/>
  662. <outlet property="appearanceCell" destination="pDZ-78-Yrt" id="ZzG-Pp-LEo"/>
  663. <outlet property="chatCell" destination="3uu-C1-keL" id="xVZ-pe-3aj"/>
  664. <outlet property="devModeCell" destination="owx-NW-S4B" id="4ID-zj-XoC"/>
  665. <outlet property="inviteAFriendCell" destination="igB-ck-F3u" id="5Lr-hc-wXg"/>
  666. <outlet property="licenseCell" destination="UNP-ds-IUg" id="rR6-t0-bHd"/>
  667. <outlet property="mediaCell" destination="2fC-S8-V2G" id="Fo1-7Y-q5N"/>
  668. <outlet property="networkStatusCell" destination="2M1-eA-akA" id="yy2-d2-pkl"/>
  669. <outlet property="notificationCell" destination="Vfu-hq-hEW" id="mRU-Xu-F8b"/>
  670. <outlet property="passcodeLockCell" destination="qn1-0N-FBd" id="XrC-oP-Dkr"/>
  671. <outlet property="privacyCell" destination="Rqu-Ei-Leq" id="iP2-u4-JcR"/>
  672. <outlet property="privacyPolicyCell" destination="agj-Re-bFU" id="qzA-KB-12o"/>
  673. <outlet property="storageManagementCell" destination="6wE-42-dyW" id="6zr-Eg-eP6"/>
  674. <outlet property="supportCell" destination="q2K-zC-OaO" id="7TN-De-niT"/>
  675. <outlet property="threemaCallsCell" destination="Xwk-oO-mdT" id="zrh-qC-5KQ"/>
  676. <outlet property="threemaChannelCell" destination="ciV-iW-Qa4" id="mvo-8o-AVg"/>
  677. <outlet property="threemaWebCell" destination="6eJ-9i-EE7" id="WOT-a5-p9X"/>
  678. <outlet property="threemaWorkCell" destination="oFI-QH-Jyu" id="K1F-pV-9g4"/>
  679. <outlet property="userNameCellDetailLabel" destination="OC2-0Y-pj2" id="asq-RL-9UG"/>
  680. <outlet property="usernameCell" destination="8Kf-u4-xCN" id="IvP-co-3mw"/>
  681. <outlet property="usernameCellLabel" destination="ZMs-fp-gbD" id="hbF-fL-ypp"/>
  682. <outlet property="versionCell" destination="uwp-gd-REU" id="n9m-8c-jhl"/>
  683. </connections>
  684. </tableViewController>
  685. <placeholder placeholderIdentifier="IBFirstResponder" id="szj-xm-Gf2" userLabel="First Responder" sceneMemberID="firstResponder"/>
  686. </objects>
  687. <point key="canvasLocation" x="-4250" y="1732"/>
  688. </scene>
  689. <!--DevMode-->
  690. <scene sceneID="2IO-BO-0kq">
  691. <objects>
  692. <tableViewController storyboardIdentifier="devmodeViewController" id="UUK-A4-Kvt" userLabel="DevMode" customClass="DevModeViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  693. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="lhI-ii-g1G">
  694. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  695. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  696. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  697. <sections>
  698. <tableViewSection id="fe3-5E-Yu2">
  699. <cells>
  700. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" textLabel="8jH-Z9-Bsu" style="IBUITableViewCellStyleDefault" id="aZ2-q9-auA">
  701. <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
  702. <autoresizingMask key="autoresizingMask"/>
  703. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="aZ2-q9-auA" id="WGP-nU-1wN">
  704. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  705. <autoresizingMask key="autoresizingMask"/>
  706. <subviews>
  707. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="8jH-Z9-Bsu">
  708. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  709. <autoresizingMask key="autoresizingMask"/>
  710. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  711. <nil key="textColor"/>
  712. <nil key="highlightedColor"/>
  713. </label>
  714. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="bsH-cs-Mlv">
  715. <rect key="frame" x="162" y="6.5" width="51" height="31"/>
  716. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  717. <connections>
  718. <action selector="quoteV2ValueChangedWithSender:" destination="UUK-A4-Kvt" eventType="valueChanged" id="hru-0c-Gx0"/>
  719. </connections>
  720. </switch>
  721. </subviews>
  722. </tableViewCellContentView>
  723. <connections>
  724. <outlet property="accessoryView" destination="bsH-cs-Mlv" id="dO8-Re-yxZ"/>
  725. </connections>
  726. </tableViewCell>
  727. </cells>
  728. </tableViewSection>
  729. </sections>
  730. <connections>
  731. <outlet property="dataSource" destination="UUK-A4-Kvt" id="cJN-0H-WZT"/>
  732. <outlet property="delegate" destination="UUK-A4-Kvt" id="MRH-XG-hfx"/>
  733. </connections>
  734. </tableView>
  735. <navigationItem key="navigationItem" title="Settings" id="pn3-uL-xG8"/>
  736. <connections>
  737. <outlet property="quoteV2Label" destination="8jH-Z9-Bsu" id="Sgt-WN-Znm"/>
  738. <outlet property="quoteV2Switch" destination="bsH-cs-Mlv" id="LFe-Ip-tWM"/>
  739. </connections>
  740. </tableViewController>
  741. <placeholder placeholderIdentifier="IBFirstResponder" id="Dyo-4E-uDj" userLabel="First Responder" sceneMemberID="firstResponder"/>
  742. </objects>
  743. <point key="canvasLocation" x="-5254" y="1731"/>
  744. </scene>
  745. <!--Privacy-->
  746. <scene sceneID="x9x-aK-vql">
  747. <objects>
  748. <tableViewController id="L65-cn-Epp" customClass="PrivacySettingsViewController" sceneMemberID="viewController">
  749. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="H3i-0f-5GT">
  750. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  751. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  752. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  753. <sections>
  754. <tableViewSection headerTitle="Contacts" footerTitle="Anybody can send you a message. New contacts will be added automatically when their first message arrives." id="vhK-tc-aH5">
  755. <cells>
  756. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="Wdo-iP-Jy2" style="IBUITableViewCellStyleDefault" id="BGB-jz-fVt">
  757. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  758. <autoresizingMask key="autoresizingMask"/>
  759. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="BGB-jz-fVt" id="o7o-kZ-zFa">
  760. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  761. <autoresizingMask key="autoresizingMask"/>
  762. <subviews>
  763. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" preservesSuperviewLayoutMargins="YES" layoutMarginsFollowReadableWidth="YES" insetsLayoutMarginsFromSafeArea="NO" text="Sync Contacts" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Wdo-iP-Jy2">
  764. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  765. <autoresizingMask key="autoresizingMask"/>
  766. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  767. <nil key="textColor"/>
  768. <nil key="highlightedColor"/>
  769. </label>
  770. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" preservesSuperviewLayoutMargins="YES" layoutMarginsFollowReadableWidth="YES" contentHorizontalAlignment="right" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="F81-lF-lUJ">
  771. <rect key="frame" x="162" y="6" width="51" height="31"/>
  772. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  773. <connections>
  774. <action selector="syncContactsChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="Xsp-gZ-GM6"/>
  775. </connections>
  776. </switch>
  777. </subviews>
  778. </tableViewCellContentView>
  779. <connections>
  780. <outlet property="accessoryView" destination="F81-lF-lUJ" id="v7W-tW-c4V"/>
  781. </connections>
  782. </tableViewCell>
  783. <tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="5hd-D5-keA" style="IBUITableViewCellStyleDefault" id="nEy-Ky-4nP">
  784. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  785. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  786. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nEy-Ky-4nP" id="oAp-iy-mnC">
  787. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  788. <autoresizingMask key="autoresizingMask"/>
  789. <subviews>
  790. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Exclusion List" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="5hd-D5-keA">
  791. <rect key="frame" x="16" y="0.0" width="324" height="44"/>
  792. <autoresizingMask key="autoresizingMask"/>
  793. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  794. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  795. <nil key="highlightedColor"/>
  796. </label>
  797. </subviews>
  798. </tableViewCellContentView>
  799. <connections>
  800. <segue destination="ZhF-RE-lv8" kind="show" id="F8X-70-yyf"/>
  801. </connections>
  802. </tableViewCell>
  803. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="t3A-s5-ui3" style="IBUITableViewCellStyleDefault" id="bbO-k0-e5Q">
  804. <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
  805. <autoresizingMask key="autoresizingMask"/>
  806. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="bbO-k0-e5Q" id="kir-9c-rJs">
  807. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  808. <autoresizingMask key="autoresizingMask"/>
  809. <subviews>
  810. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Block Unknown" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="t3A-s5-ui3">
  811. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  812. <autoresizingMask key="autoresizingMask"/>
  813. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  814. <nil key="textColor"/>
  815. <nil key="highlightedColor"/>
  816. </label>
  817. <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mJi-vQ-oRP">
  818. <rect key="frame" x="162" y="5.5" width="51" height="31"/>
  819. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  820. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  821. <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  822. <connections>
  823. <action selector="blockUnknownChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="v24-og-2ot"/>
  824. </connections>
  825. </switch>
  826. </subviews>
  827. </tableViewCellContentView>
  828. <connections>
  829. <outlet property="accessoryView" destination="mJi-vQ-oRP" id="2eI-tn-Yps"/>
  830. </connections>
  831. </tableViewCell>
  832. </cells>
  833. </tableViewSection>
  834. <tableViewSection headerTitle="Chat" id="R1G-2w-yDd">
  835. <cells>
  836. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="pd4-eC-QZk" style="IBUITableViewCellStyleDefault" id="gC1-Ts-8nL">
  837. <rect key="frame" x="0.0" y="271.5" width="375" height="44"/>
  838. <autoresizingMask key="autoresizingMask"/>
  839. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="gC1-Ts-8nL" id="PmZ-KI-pzH">
  840. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  841. <autoresizingMask key="autoresizingMask"/>
  842. <subviews>
  843. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Send Read Receipts" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="pd4-eC-QZk">
  844. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  845. <autoresizingMask key="autoresizingMask"/>
  846. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  847. <nil key="textColor"/>
  848. <nil key="highlightedColor"/>
  849. </label>
  850. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="gFG-ah-E8c">
  851. <rect key="frame" x="163" y="5.5" width="49" height="31"/>
  852. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  853. <connections>
  854. <action selector="readReceiptsChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="D2I-QG-92X"/>
  855. </connections>
  856. </switch>
  857. </subviews>
  858. </tableViewCellContentView>
  859. <connections>
  860. <outlet property="accessoryView" destination="gFG-ah-E8c" id="GCN-r9-8Yg"/>
  861. </connections>
  862. </tableViewCell>
  863. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="O7I-2W-NWv" style="IBUITableViewCellStyleDefault" id="3v2-oW-DKb">
  864. <rect key="frame" x="0.0" y="315.5" width="375" height="44"/>
  865. <autoresizingMask key="autoresizingMask"/>
  866. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="3v2-oW-DKb" id="V0f-Pp-A4R">
  867. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  868. <autoresizingMask key="autoresizingMask"/>
  869. <subviews>
  870. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Send Typing Indicator" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="O7I-2W-NWv">
  871. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  872. <autoresizingMask key="autoresizingMask"/>
  873. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  874. <nil key="textColor"/>
  875. <nil key="highlightedColor"/>
  876. </label>
  877. <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="EgO-Ha-XLl">
  878. <rect key="frame" x="162" y="6" width="51" height="31"/>
  879. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  880. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  881. <connections>
  882. <action selector="typingIndicatorChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="P6X-pQ-rAW"/>
  883. </connections>
  884. </switch>
  885. </subviews>
  886. </tableViewCellContentView>
  887. <connections>
  888. <outlet property="accessoryView" destination="EgO-Ha-XLl" id="7kf-aZ-nqe"/>
  889. </connections>
  890. </tableViewCell>
  891. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="mWM-cJ-vcw" style="IBUITableViewCellStyleDefault" id="Ayz-J8-2LP">
  892. <rect key="frame" x="0.0" y="359.5" width="375" height="44"/>
  893. <autoresizingMask key="autoresizingMask"/>
  894. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Ayz-J8-2LP" id="r1L-5b-fQz">
  895. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  896. <autoresizingMask key="autoresizingMask"/>
  897. <subviews>
  898. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Choose POIs" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="mWM-cJ-vcw">
  899. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  900. <autoresizingMask key="autoresizingMask"/>
  901. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  902. <nil key="textColor"/>
  903. <nil key="highlightedColor"/>
  904. </label>
  905. <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="dCM-P3-jra">
  906. <rect key="frame" x="162" y="6" width="51" height="31"/>
  907. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  908. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  909. <connections>
  910. <action selector="poiChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="ANf-cY-UZb"/>
  911. </connections>
  912. </switch>
  913. </subviews>
  914. </tableViewCellContentView>
  915. <connections>
  916. <outlet property="accessoryView" destination="dCM-P3-jra" id="LAK-Js-lv2"/>
  917. </connections>
  918. </tableViewCell>
  919. </cells>
  920. </tableViewSection>
  921. </sections>
  922. <connections>
  923. <outlet property="dataSource" destination="L65-cn-Epp" id="xrR-uj-KCA"/>
  924. <outlet property="delegate" destination="L65-cn-Epp" id="T4L-OR-DpP"/>
  925. </connections>
  926. </tableView>
  927. <navigationItem key="navigationItem" title="Privacy" largeTitleDisplayMode="never" id="BH4-Z9-imt"/>
  928. <connections>
  929. <outlet property="blockUnknownCell" destination="bbO-k0-e5Q" id="HmG-jt-XuS"/>
  930. <outlet property="blockUnknownLabel" destination="t3A-s5-ui3" id="5wk-bQ-Zyx"/>
  931. <outlet property="blockUnknownSwitch" destination="mJi-vQ-oRP" id="nyj-nd-tUf"/>
  932. <outlet property="poiSwitch" destination="dCM-P3-jra" id="NvE-Y7-BZh"/>
  933. <outlet property="readReceiptsSwitch" destination="gFG-ah-E8c" id="8Ln-dH-hCR"/>
  934. <outlet property="syncContactsCell" destination="BGB-jz-fVt" id="r10-A3-u54"/>
  935. <outlet property="syncContactsLabel" destination="Wdo-iP-Jy2" id="1mM-nR-YWA"/>
  936. <outlet property="syncContactsSwitch" destination="F81-lF-lUJ" id="5RZ-9u-Xgg"/>
  937. <outlet property="typingIndicatorSwitch" destination="EgO-Ha-XLl" id="Td6-uW-Gqa"/>
  938. </connections>
  939. </tableViewController>
  940. <placeholder placeholderIdentifier="IBFirstResponder" id="7aW-Nh-1VM" userLabel="First Responder" sceneMemberID="firstResponder"/>
  941. </objects>
  942. <point key="canvasLocation" x="-2857" y="-125"/>
  943. </scene>
  944. <!--Threema Calls-->
  945. <scene sceneID="kAt-sa-xmw">
  946. <objects>
  947. <tableViewController id="vhQ-fG-5Bt" userLabel="Threema Calls" customClass="ThreemaCallsSettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  948. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="XhH-Dd-c6g">
  949. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  950. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  951. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  952. <sections>
  953. <tableViewSection id="URr-SE-ZCl">
  954. <cells>
  955. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="tbO-52-AvQ" style="IBUITableViewCellStyleDefault" id="T4d-Gy-uRl">
  956. <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
  957. <autoresizingMask key="autoresizingMask"/>
  958. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="T4d-Gy-uRl" id="MpJ-bf-X9Y">
  959. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  960. <autoresizingMask key="autoresizingMask"/>
  961. <subviews>
  962. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Enable Threema Call" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="tbO-52-AvQ">
  963. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  964. <autoresizingMask key="autoresizingMask"/>
  965. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  966. <nil key="textColor"/>
  967. <nil key="highlightedColor"/>
  968. </label>
  969. <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="972-58-TnY">
  970. <rect key="frame" x="162" y="6" width="51" height="31"/>
  971. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  972. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  973. <connections>
  974. <action selector="enableThreemaCallSwitchChangedWithSender:" destination="vhQ-fG-5Bt" eventType="valueChanged" id="3V7-DX-PoB"/>
  975. </connections>
  976. </switch>
  977. </subviews>
  978. </tableViewCellContentView>
  979. <connections>
  980. <outlet property="accessoryView" destination="972-58-TnY" id="oi4-T3-3By"/>
  981. </connections>
  982. </tableViewCell>
  983. </cells>
  984. </tableViewSection>
  985. <tableViewSection id="NQi-Tj-6G0">
  986. <cells>
  987. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="5Z4-we-4ct" style="IBUITableViewCellStyleDefault" id="dzF-Sv-sOu">
  988. <rect key="frame" x="0.0" y="96.5" width="375" height="44"/>
  989. <autoresizingMask key="autoresizingMask"/>
  990. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="dzF-Sv-sOu" id="sNc-df-xxz">
  991. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  992. <autoresizingMask key="autoresizingMask"/>
  993. <subviews>
  994. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Always relay calls" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="5Z4-we-4ct">
  995. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  996. <autoresizingMask key="autoresizingMask"/>
  997. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  998. <nil key="textColor"/>
  999. <nil key="highlightedColor"/>
  1000. </label>
  1001. <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="qXg-2T-fDk">
  1002. <rect key="frame" x="162" y="6" width="51" height="31"/>
  1003. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1004. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1005. <connections>
  1006. <action selector="alwaysRelayCallsSwitchChangedWithSender:" destination="vhQ-fG-5Bt" eventType="valueChanged" id="8PS-Y0-5f8"/>
  1007. </connections>
  1008. </switch>
  1009. </subviews>
  1010. </tableViewCellContentView>
  1011. <connections>
  1012. <outlet property="accessoryView" destination="qXg-2T-fDk" id="ReJ-Pq-ILE"/>
  1013. </connections>
  1014. </tableViewCell>
  1015. </cells>
  1016. </tableViewSection>
  1017. <tableViewSection id="YSe-95-QYe">
  1018. <cells>
  1019. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Q1w-c7-mEv" style="IBUITableViewCellStyleDefault" id="5W8-Xp-vmV">
  1020. <rect key="frame" x="0.0" y="175.5" width="375" height="44"/>
  1021. <autoresizingMask key="autoresizingMask"/>
  1022. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="5W8-Xp-vmV" id="uex-BE-feO">
  1023. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1024. <autoresizingMask key="autoresizingMask"/>
  1025. <subviews>
  1026. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Integrate calls into iOS" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Q1w-c7-mEv">
  1027. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1028. <autoresizingMask key="autoresizingMask"/>
  1029. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1030. <nil key="textColor"/>
  1031. <nil key="highlightedColor"/>
  1032. </label>
  1033. <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="fIm-go-XWw">
  1034. <rect key="frame" x="162" y="6" width="51" height="31"/>
  1035. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1036. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1037. <connections>
  1038. <action selector="enableCallKitSwitchChangedWithSender:" destination="vhQ-fG-5Bt" eventType="valueChanged" id="4uS-H0-fBa"/>
  1039. </connections>
  1040. </switch>
  1041. </subviews>
  1042. </tableViewCellContentView>
  1043. <connections>
  1044. <outlet property="accessoryView" destination="fIm-go-XWw" id="1EP-yg-zjw"/>
  1045. </connections>
  1046. </tableViewCell>
  1047. </cells>
  1048. </tableViewSection>
  1049. <tableViewSection id="dXO-RI-sLt">
  1050. <cells>
  1051. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="3S0-6H-Ocr" style="IBUITableViewCellStyleDefault" id="N4F-Ht-W32">
  1052. <rect key="frame" x="0.0" y="254.5" width="375" height="44"/>
  1053. <autoresizingMask key="autoresizingMask"/>
  1054. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="N4F-Ht-W32" id="Fj5-cb-Kjq">
  1055. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1056. <autoresizingMask key="autoresizingMask"/>
  1057. <subviews>
  1058. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Enable Threema Video Calls" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="3S0-6H-Ocr">
  1059. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1060. <autoresizingMask key="autoresizingMask"/>
  1061. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1062. <nil key="textColor"/>
  1063. <nil key="highlightedColor"/>
  1064. </label>
  1065. <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="xyI-3T-M38">
  1066. <rect key="frame" x="162" y="6" width="51" height="31"/>
  1067. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1068. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1069. <connections>
  1070. <action selector="enableVideoCallSwitchChangedWithSender:" destination="vhQ-fG-5Bt" eventType="valueChanged" id="awj-hF-ZDW"/>
  1071. </connections>
  1072. </switch>
  1073. </subviews>
  1074. </tableViewCellContentView>
  1075. <connections>
  1076. <outlet property="accessoryView" destination="xyI-3T-M38" id="AeM-Eu-Ojo"/>
  1077. </connections>
  1078. </tableViewCell>
  1079. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="qjU-ul-8OA">
  1080. <rect key="frame" x="0.0" y="298.5" width="375" height="44"/>
  1081. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1082. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="qjU-ul-8OA" id="ecs-Ur-Lih">
  1083. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  1084. <autoresizingMask key="autoresizingMask"/>
  1085. <subviews>
  1086. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="249" verticalHuggingPriority="251" horizontalCompressionResistancePriority="751" verticalCompressionResistancePriority="749" text="Preferred picture quality" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="rME-eF-iPo">
  1087. <rect key="frame" x="16" y="11" width="184" height="22"/>
  1088. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1089. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1090. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1091. <nil key="highlightedColor"/>
  1092. </label>
  1093. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="249" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="Detail" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="n4P-Of-W5c">
  1094. <rect key="frame" x="296" y="15" width="44" height="14"/>
  1095. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1096. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1097. <nil key="highlightedColor"/>
  1098. </label>
  1099. </subviews>
  1100. <constraints>
  1101. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="n4P-Of-W5c" secondAttribute="bottom" constant="4" id="2na-5u-2ve"/>
  1102. <constraint firstItem="rME-eF-iPo" firstAttribute="top" secondItem="ecs-Ur-Lih" secondAttribute="topMargin" id="5nX-Tt-xMs"/>
  1103. <constraint firstItem="n4P-Of-W5c" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="rME-eF-iPo" secondAttribute="trailing" constant="10" id="HNq-FL-Kuy"/>
  1104. <constraint firstItem="n4P-Of-W5c" firstAttribute="centerY" secondItem="ecs-Ur-Lih" secondAttribute="centerY" id="Ssd-iG-1ns"/>
  1105. <constraint firstItem="rME-eF-iPo" firstAttribute="leading" secondItem="ecs-Ur-Lih" secondAttribute="leadingMargin" id="dcc-Kb-6eK"/>
  1106. <constraint firstItem="rME-eF-iPo" firstAttribute="centerY" secondItem="ecs-Ur-Lih" secondAttribute="centerY" id="f9b-ih-xG2"/>
  1107. <constraint firstAttribute="bottomMargin" secondItem="rME-eF-iPo" secondAttribute="bottom" id="hVO-72-W5y"/>
  1108. <constraint firstAttribute="trailingMargin" secondItem="n4P-Of-W5c" secondAttribute="trailing" id="oWn-g9-8qg"/>
  1109. <constraint firstItem="n4P-Of-W5c" firstAttribute="top" relation="greaterThanOrEqual" secondItem="ecs-Ur-Lih" secondAttribute="topMargin" constant="4" id="yUy-yh-nHK"/>
  1110. </constraints>
  1111. </tableViewCellContentView>
  1112. <connections>
  1113. <segue destination="ua2-6d-8w5" kind="show" id="sOp-Op-J1B"/>
  1114. </connections>
  1115. </tableViewCell>
  1116. </cells>
  1117. </tableViewSection>
  1118. </sections>
  1119. <connections>
  1120. <outlet property="dataSource" destination="vhQ-fG-5Bt" id="LlP-f0-aI8"/>
  1121. <outlet property="delegate" destination="vhQ-fG-5Bt" id="hO7-ZG-Aqq"/>
  1122. </connections>
  1123. </tableView>
  1124. <navigationItem key="navigationItem" title="Privacy" largeTitleDisplayMode="never" id="9hC-3k-nmq"/>
  1125. <connections>
  1126. <outlet property="alwaysRelayThreemaCallsCell" destination="dzF-Sv-sOu" id="Zx9-ae-7Dn"/>
  1127. <outlet property="alwaysRelayThreemaCallsSwitch" destination="qXg-2T-fDk" id="20a-Ma-smf"/>
  1128. <outlet property="enableCallKitCell" destination="5W8-Xp-vmV" id="mCj-WC-3oE"/>
  1129. <outlet property="enableCallKitSwitch" destination="fIm-go-XWw" id="RCh-LE-Ctu"/>
  1130. <outlet property="enableThreemaCallSwitch" destination="972-58-TnY" id="1Fd-vr-1Od"/>
  1131. <outlet property="enableThreemaCallsCell" destination="T4d-Gy-uRl" id="MmL-B7-Eg3"/>
  1132. <outlet property="enableVideoCell" destination="N4F-Ht-W32" id="zdO-Cb-Lgk"/>
  1133. <outlet property="enableVideoSwitch" destination="xyI-3T-M38" id="q9b-4v-cdp"/>
  1134. <outlet property="videoQualityCellDetailLabel" destination="n4P-Of-W5c" id="ReW-DV-MbE"/>
  1135. <outlet property="videoQualityCellTitleLabel" destination="rME-eF-iPo" id="LtK-ev-ylH"/>
  1136. </connections>
  1137. </tableViewController>
  1138. <placeholder placeholderIdentifier="IBFirstResponder" id="otN-Yd-Mon" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1139. </objects>
  1140. <point key="canvasLocation" x="-4034" y="378"/>
  1141. </scene>
  1142. <!--Media-->
  1143. <scene sceneID="IxK-la-sko">
  1144. <objects>
  1145. <tableViewController id="HC7-Yt-s1f" customClass="MediaSettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  1146. <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="Qfs-sa-LIM">
  1147. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  1148. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1149. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1150. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  1151. <sections>
  1152. <tableViewSection id="vAM-qA-yAf">
  1153. <cells>
  1154. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="xhX-4h-CHj" detailTextLabel="2Ve-Rz-Jab" style="IBUITableViewCellStyleValue1" id="4VW-HY-Qc5">
  1155. <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
  1156. <autoresizingMask key="autoresizingMask"/>
  1157. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4VW-HY-Qc5" id="4bg-Ic-XoR">
  1158. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  1159. <autoresizingMask key="autoresizingMask"/>
  1160. <subviews>
  1161. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Image Size" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="xhX-4h-CHj">
  1162. <rect key="frame" x="16" y="12" width="83" height="20.5"/>
  1163. <autoresizingMask key="autoresizingMask"/>
  1164. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1165. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1166. <nil key="highlightedColor"/>
  1167. </label>
  1168. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2Ve-Rz-Jab">
  1169. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  1170. <autoresizingMask key="autoresizingMask"/>
  1171. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1172. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1173. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1174. </label>
  1175. </subviews>
  1176. </tableViewCellContentView>
  1177. <connections>
  1178. <segue destination="BgE-Bg-LfV" kind="show" id="Rjc-J8-9d3"/>
  1179. </connections>
  1180. </tableViewCell>
  1181. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="icP-dl-OGv" detailTextLabel="jrN-Cn-NEr" style="IBUITableViewCellStyleValue1" id="I1C-UF-uNg">
  1182. <rect key="frame" x="0.0" y="61.5" width="375" height="44"/>
  1183. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1184. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="I1C-UF-uNg" id="5zl-vF-6ZU">
  1185. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  1186. <autoresizingMask key="autoresizingMask"/>
  1187. <subviews>
  1188. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Video Quality" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="icP-dl-OGv">
  1189. <rect key="frame" x="16" y="12" width="101.5" height="20.5"/>
  1190. <autoresizingMask key="autoresizingMask"/>
  1191. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1192. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1193. <nil key="highlightedColor"/>
  1194. </label>
  1195. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="jrN-Cn-NEr">
  1196. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  1197. <autoresizingMask key="autoresizingMask"/>
  1198. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1199. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1200. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1201. </label>
  1202. </subviews>
  1203. </tableViewCellContentView>
  1204. <connections>
  1205. <segue destination="kFh-T4-aJO" kind="show" id="7ul-gl-wFi"/>
  1206. </connections>
  1207. </tableViewCell>
  1208. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="XgJ-Fv-QL5" rowHeight="62" style="IBUITableViewCellStyleDefault" id="p1L-IU-dz8">
  1209. <rect key="frame" x="0.0" y="105.5" width="375" height="62"/>
  1210. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1211. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="p1L-IU-dz8" id="Cnd-7k-ioc">
  1212. <rect key="frame" x="0.0" y="0.0" width="375" height="62"/>
  1213. <autoresizingMask key="autoresizingMask"/>
  1214. <subviews>
  1215. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Save Media to Camera Roll" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="XgJ-Fv-QL5">
  1216. <rect key="frame" x="16" y="0.0" width="343" height="62"/>
  1217. <autoresizingMask key="autoresizingMask"/>
  1218. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1219. <nil key="textColor"/>
  1220. <nil key="highlightedColor"/>
  1221. </label>
  1222. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cBx-6u-SE4">
  1223. <rect key="frame" x="161" y="15" width="52" height="31"/>
  1224. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1225. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1226. <connections>
  1227. <action selector="autoSaveMediaChanged:" destination="HC7-Yt-s1f" eventType="valueChanged" id="SI1-pY-fU0"/>
  1228. </connections>
  1229. </switch>
  1230. </subviews>
  1231. </tableViewCellContentView>
  1232. <connections>
  1233. <outlet property="accessoryView" destination="cBx-6u-SE4" id="HXb-mQ-QeH"/>
  1234. </connections>
  1235. </tableViewCell>
  1236. </cells>
  1237. </tableViewSection>
  1238. </sections>
  1239. <connections>
  1240. <outlet property="dataSource" destination="HC7-Yt-s1f" id="S43-KP-saa"/>
  1241. <outlet property="delegate" destination="HC7-Yt-s1f" id="zxx-SV-uH5"/>
  1242. </connections>
  1243. </tableView>
  1244. <navigationItem key="navigationItem" title="Media" largeTitleDisplayMode="never" id="U7Q-cL-ZiA"/>
  1245. <connections>
  1246. <outlet property="autoSaveMediaCell" destination="p1L-IU-dz8" id="LRP-0g-Xyg"/>
  1247. <outlet property="autoSaveMediaLabel" destination="XgJ-Fv-QL5" id="EHX-1N-zqK"/>
  1248. <outlet property="autoSaveMediaSwitch" destination="cBx-6u-SE4" id="i02-rC-wgf"/>
  1249. <outlet property="imageSizeLabel" destination="2Ve-Rz-Jab" id="jkP-Sb-a6d"/>
  1250. <outlet property="videoQualityLabel" destination="jrN-Cn-NEr" id="Owc-mv-ejZ"/>
  1251. </connections>
  1252. </tableViewController>
  1253. <placeholder placeholderIdentifier="IBFirstResponder" id="rFV-nj-jno" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1254. </objects>
  1255. <point key="canvasLocation" x="-1895" y="3295"/>
  1256. </scene>
  1257. <!--Storage Management-->
  1258. <scene sceneID="db1-zk-fbo">
  1259. <objects>
  1260. <tableViewController id="RmG-ce-hCV" customClass="StorageManagementViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  1261. <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="qoO-5d-bCa">
  1262. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  1263. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1264. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1265. <sections>
  1266. <tableViewSection id="SaD-7I-oOD">
  1267. <cells>
  1268. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="9HG-t5-Xhb" detailTextLabel="kHb-uQ-Ce1" style="IBUITableViewCellStyleValue1" id="Zu8-sa-HVR">
  1269. <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
  1270. <autoresizingMask key="autoresizingMask"/>
  1271. <tableViewCellContentView key="contentView" autoresizesSubviews="NO" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Zu8-sa-HVR" id="8KB-nO-Lha">
  1272. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1273. <autoresizingMask key="autoresizingMask"/>
  1274. <subviews>
  1275. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Space on internal storage" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="9HG-t5-Xhb">
  1276. <rect key="frame" x="16" y="12" width="194.5" height="20.5"/>
  1277. <autoresizingMask key="autoresizingMask"/>
  1278. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1279. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1280. <nil key="highlightedColor"/>
  1281. </label>
  1282. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="-" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="kHb-uQ-Ce1">
  1283. <rect key="frame" x="351" y="12" width="8" height="20.5"/>
  1284. <autoresizingMask key="autoresizingMask"/>
  1285. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1286. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1287. <nil key="highlightedColor"/>
  1288. </label>
  1289. </subviews>
  1290. </tableViewCellContentView>
  1291. </tableViewCell>
  1292. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="e89-ku-bQL" detailTextLabel="Ue7-f7-Pqb" style="IBUITableViewCellStyleValue1" id="acV-pF-P2u">
  1293. <rect key="frame" x="0.0" y="61.5" width="375" height="44"/>
  1294. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1295. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="acV-pF-P2u" id="7QK-gb-SeW">
  1296. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1297. <autoresizingMask key="autoresizingMask"/>
  1298. <subviews>
  1299. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="In use" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="e89-ku-bQL">
  1300. <rect key="frame" x="16" y="12" width="45.5" height="20.5"/>
  1301. <autoresizingMask key="autoresizingMask"/>
  1302. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1303. <nil key="textColor"/>
  1304. <nil key="highlightedColor"/>
  1305. </label>
  1306. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="-" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Ue7-f7-Pqb">
  1307. <rect key="frame" x="351" y="12" width="8" height="20.5"/>
  1308. <autoresizingMask key="autoresizingMask"/>
  1309. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1310. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1311. <nil key="highlightedColor"/>
  1312. </label>
  1313. </subviews>
  1314. </tableViewCellContentView>
  1315. </tableViewCell>
  1316. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="06t-fE-Y6z" detailTextLabel="giX-Df-fBe" style="IBUITableViewCellStyleValue1" id="67R-ne-Opo">
  1317. <rect key="frame" x="0.0" y="105.5" width="375" height="44"/>
  1318. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1319. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="67R-ne-Opo" id="krO-pV-Kdp">
  1320. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1321. <autoresizingMask key="autoresizingMask"/>
  1322. <subviews>
  1323. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Total free space" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="06t-fE-Y6z">
  1324. <rect key="frame" x="16" y="12" width="121.5" height="20.5"/>
  1325. <autoresizingMask key="autoresizingMask"/>
  1326. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1327. <nil key="textColor"/>
  1328. <nil key="highlightedColor"/>
  1329. </label>
  1330. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="-" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="giX-Df-fBe">
  1331. <rect key="frame" x="351" y="12" width="8" height="20.5"/>
  1332. <autoresizingMask key="autoresizingMask"/>
  1333. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1334. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1335. <nil key="highlightedColor"/>
  1336. </label>
  1337. </subviews>
  1338. </tableViewCellContentView>
  1339. </tableViewCell>
  1340. <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="0.0" id="Y2R-Xy-r7u">
  1341. <rect key="frame" x="0.0" y="149.5" width="375" height="44"/>
  1342. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1343. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" tableViewCell="Y2R-Xy-r7u" id="I1H-Tq-D1G">
  1344. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1345. <autoresizingMask key="autoresizingMask"/>
  1346. <subviews>
  1347. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="trt-Co-3xT">
  1348. <rect key="frame" x="339" y="12" width="20" height="20"/>
  1349. </activityIndicatorView>
  1350. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Used by Threema" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="lgV-MU-UON">
  1351. <rect key="frame" x="16" y="12" width="135" height="20.5"/>
  1352. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1353. <nil key="textColor"/>
  1354. <nil key="highlightedColor"/>
  1355. </label>
  1356. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="-" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wE7-pn-Gu5">
  1357. <rect key="frame" x="351" y="11.5" width="8" height="21"/>
  1358. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1359. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1360. <nil key="highlightedColor"/>
  1361. </label>
  1362. </subviews>
  1363. <constraints>
  1364. <constraint firstItem="wE7-pn-Gu5" firstAttribute="centerY" secondItem="I1H-Tq-D1G" secondAttribute="centerY" id="17N-1O-sXu"/>
  1365. <constraint firstItem="trt-Co-3xT" firstAttribute="trailing" secondItem="I1H-Tq-D1G" secondAttribute="trailingMargin" id="1YD-Kr-gAc"/>
  1366. <constraint firstItem="lgV-MU-UON" firstAttribute="centerY" secondItem="I1H-Tq-D1G" secondAttribute="centerY" id="8ZQ-C6-kco"/>
  1367. <constraint firstItem="lgV-MU-UON" firstAttribute="left" secondItem="I1H-Tq-D1G" secondAttribute="leftMargin" id="G5g-qc-2mr"/>
  1368. <constraint firstItem="wE7-pn-Gu5" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="lgV-MU-UON" secondAttribute="trailing" constant="10" id="cud-ju-s9I"/>
  1369. <constraint firstItem="trt-Co-3xT" firstAttribute="centerY" secondItem="I1H-Tq-D1G" secondAttribute="centerY" id="tzC-C7-hkL"/>
  1370. <constraint firstItem="wE7-pn-Gu5" firstAttribute="trailing" secondItem="I1H-Tq-D1G" secondAttribute="trailingMargin" id="uoo-iV-nYe"/>
  1371. </constraints>
  1372. </tableViewCellContentView>
  1373. </tableViewCell>
  1374. </cells>
  1375. </tableViewSection>
  1376. <tableViewSection id="qiD-zj-Qqg">
  1377. <string key="footerTitle">The data will not be deleted automatically but only when tapping the Delete Media and Files button. Thumbnails will not be deleted.</string>
  1378. <cells/>
  1379. </tableViewSection>
  1380. <tableViewSection id="mIj-qg-9G8">
  1381. <string key="footerTitle">Falls der Speicherplatz knapp wird, können Sie alte, verschlüsselt gespeicherte Medien-Dateien löschen, um Platz zu schaffen. Die Vorschaubilder bleiben erhalten.</string>
  1382. <cells>
  1383. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MediaOlderThanCell" id="OZa-Io-Fcw">
  1384. <rect key="frame" x="0.0" y="308" width="375" height="44"/>
  1385. <autoresizingMask key="autoresizingMask"/>
  1386. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OZa-Io-Fcw" id="g4c-xW-wVu">
  1387. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  1388. <autoresizingMask key="autoresizingMask"/>
  1389. <subviews>
  1390. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" verticalCompressionResistancePriority="500" text="Label" lineBreakMode="wordWrap" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="7UQ-Nr-5Tn">
  1391. <rect key="frame" x="16" y="12" width="41.5" height="20.5"/>
  1392. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1393. <nil key="textColor"/>
  1394. <nil key="highlightedColor"/>
  1395. </label>
  1396. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="right" lineBreakMode="wordWrap" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="RcX-GS-Xg5">
  1397. <rect key="frame" x="260" y="11" width="80" height="22"/>
  1398. <constraints>
  1399. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="80" id="qc3-TI-ofX"/>
  1400. </constraints>
  1401. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1402. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1403. <nil key="highlightedColor"/>
  1404. </label>
  1405. </subviews>
  1406. <constraints>
  1407. <constraint firstItem="RcX-GS-Xg5" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="7UQ-Nr-5Tn" secondAttribute="trailing" constant="10" id="3i5-eD-SJV"/>
  1408. <constraint firstAttribute="bottomMargin" secondItem="RcX-GS-Xg5" secondAttribute="bottom" id="NjD-ci-ijH"/>
  1409. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="7UQ-Nr-5Tn" secondAttribute="bottom" id="RXb-uN-gbf"/>
  1410. <constraint firstItem="7UQ-Nr-5Tn" firstAttribute="top" relation="greaterThanOrEqual" secondItem="g4c-xW-wVu" secondAttribute="topMargin" id="Ufo-HT-AhC"/>
  1411. <constraint firstItem="7UQ-Nr-5Tn" firstAttribute="leading" secondItem="g4c-xW-wVu" secondAttribute="leadingMargin" id="c3D-tC-yXU"/>
  1412. <constraint firstAttribute="trailingMargin" secondItem="RcX-GS-Xg5" secondAttribute="trailing" id="qK5-p2-YEx"/>
  1413. <constraint firstItem="RcX-GS-Xg5" firstAttribute="top" secondItem="g4c-xW-wVu" secondAttribute="topMargin" id="tpt-bl-3Sd"/>
  1414. <constraint firstItem="7UQ-Nr-5Tn" firstAttribute="centerY" secondItem="g4c-xW-wVu" secondAttribute="centerY" id="vwr-VJ-X8P"/>
  1415. <constraint firstItem="RcX-GS-Xg5" firstAttribute="centerY" secondItem="g4c-xW-wVu" secondAttribute="centerY" id="xiY-Gk-wVL"/>
  1416. </constraints>
  1417. </tableViewCellContentView>
  1418. <connections>
  1419. <segue destination="Hzc-Lf-ZjH" kind="show" id="YhG-1S-Qc5"/>
  1420. </connections>
  1421. </tableViewCell>
  1422. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="u9c-Ns-n40">
  1423. <rect key="frame" x="0.0" y="352" width="375" height="44"/>
  1424. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1425. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="u9c-Ns-n40" id="sbb-QW-hc6">
  1426. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1427. <autoresizingMask key="autoresizingMask"/>
  1428. <subviews>
  1429. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Daten löschen" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="2kJ-Y2-iOd">
  1430. <rect key="frame" x="133" y="11.5" width="109" height="21"/>
  1431. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1432. <color key="textColor" name="systemRedColor" catalog="System" colorSpace="catalog"/>
  1433. <nil key="highlightedColor"/>
  1434. </label>
  1435. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="lKc-iX-W6R">
  1436. <rect key="frame" x="176" y="11" width="20" height="20"/>
  1437. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
  1438. </activityIndicatorView>
  1439. </subviews>
  1440. <constraints>
  1441. <constraint firstItem="2kJ-Y2-iOd" firstAttribute="centerX" secondItem="sbb-QW-hc6" secondAttribute="centerX" id="Dfe-qX-rOA"/>
  1442. <constraint firstAttribute="trailingMargin" relation="greaterThanOrEqual" secondItem="2kJ-Y2-iOd" secondAttribute="trailing" id="M5R-Cg-zis"/>
  1443. <constraint firstItem="2kJ-Y2-iOd" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="sbb-QW-hc6" secondAttribute="leadingMargin" id="PET-9G-cn4"/>
  1444. <constraint firstItem="2kJ-Y2-iOd" firstAttribute="centerY" secondItem="sbb-QW-hc6" secondAttribute="centerY" id="crh-6n-hZN"/>
  1445. </constraints>
  1446. </tableViewCellContentView>
  1447. </tableViewCell>
  1448. </cells>
  1449. </tableViewSection>
  1450. <tableViewSection footerTitle="Sie können auch ältere Nachrichten komplett löschen." id="Na7-X0-iSY">
  1451. <cells>
  1452. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MessageOlderThanCell" id="fe6-DJ-0be">
  1453. <rect key="frame" x="0.0" y="475.5" width="375" height="44"/>
  1454. <autoresizingMask key="autoresizingMask"/>
  1455. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fe6-DJ-0be" id="HfD-h0-tA7">
  1456. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  1457. <autoresizingMask key="autoresizingMask"/>
  1458. <subviews>
  1459. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" verticalCompressionResistancePriority="500" text="Label" lineBreakMode="wordWrap" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="wVB-DV-DFQ">
  1460. <rect key="frame" x="16" y="12" width="41.5" height="20.5"/>
  1461. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1462. <nil key="textColor"/>
  1463. <nil key="highlightedColor"/>
  1464. </label>
  1465. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" textAlignment="right" lineBreakMode="wordWrap" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="mfL-7m-jcS">
  1466. <rect key="frame" x="260" y="11" width="80" height="22"/>
  1467. <constraints>
  1468. <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="80" id="4T7-3f-Gnb"/>
  1469. </constraints>
  1470. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1471. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1472. <nil key="highlightedColor"/>
  1473. </label>
  1474. </subviews>
  1475. <constraints>
  1476. <constraint firstAttribute="bottomMargin" secondItem="mfL-7m-jcS" secondAttribute="bottom" id="0FK-Ia-lL4"/>
  1477. <constraint firstItem="mfL-7m-jcS" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="wVB-DV-DFQ" secondAttribute="trailing" constant="10" id="A0s-Jd-riJ"/>
  1478. <constraint firstAttribute="trailingMargin" secondItem="mfL-7m-jcS" secondAttribute="trailing" id="Dqw-do-b15"/>
  1479. <constraint firstItem="wVB-DV-DFQ" firstAttribute="top" relation="greaterThanOrEqual" secondItem="HfD-h0-tA7" secondAttribute="topMargin" id="Vod-DC-fnc"/>
  1480. <constraint firstItem="wVB-DV-DFQ" firstAttribute="centerY" secondItem="HfD-h0-tA7" secondAttribute="centerY" id="X0d-hV-Jdw"/>
  1481. <constraint firstItem="wVB-DV-DFQ" firstAttribute="leading" secondItem="HfD-h0-tA7" secondAttribute="leadingMargin" id="hrW-I2-w0e"/>
  1482. <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="wVB-DV-DFQ" secondAttribute="bottom" id="xHm-58-sRa"/>
  1483. <constraint firstItem="mfL-7m-jcS" firstAttribute="centerY" secondItem="HfD-h0-tA7" secondAttribute="centerY" id="xLO-CS-b4M"/>
  1484. <constraint firstItem="mfL-7m-jcS" firstAttribute="top" secondItem="HfD-h0-tA7" secondAttribute="topMargin" id="xTa-Zo-MK4"/>
  1485. </constraints>
  1486. </tableViewCellContentView>
  1487. <connections>
  1488. <segue destination="Hzc-Lf-ZjH" kind="show" id="RkS-Fm-UCf"/>
  1489. </connections>
  1490. </tableViewCell>
  1491. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="H5A-O5-yMk">
  1492. <rect key="frame" x="0.0" y="519.5" width="375" height="44"/>
  1493. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1494. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="H5A-O5-yMk" id="gBN-eR-ZN9">
  1495. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1496. <autoresizingMask key="autoresizingMask"/>
  1497. <subviews>
  1498. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Nachrichten löschen" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="QMn-HC-MBS">
  1499. <rect key="frame" x="109.5" y="11.5" width="156.5" height="21"/>
  1500. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1501. <color key="textColor" name="systemRedColor" catalog="System" colorSpace="catalog"/>
  1502. <nil key="highlightedColor"/>
  1503. </label>
  1504. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="bIS-aK-BKb">
  1505. <rect key="frame" x="176" y="11" width="20" height="20"/>
  1506. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
  1507. </activityIndicatorView>
  1508. </subviews>
  1509. <constraints>
  1510. <constraint firstItem="QMn-HC-MBS" firstAttribute="centerX" secondItem="gBN-eR-ZN9" secondAttribute="centerX" id="CUN-ye-emW"/>
  1511. <constraint firstAttribute="trailingMargin" relation="greaterThanOrEqual" secondItem="QMn-HC-MBS" secondAttribute="trailing" id="GPc-iK-lzQ"/>
  1512. <constraint firstItem="QMn-HC-MBS" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="gBN-eR-ZN9" secondAttribute="leadingMargin" id="KsN-tb-PiF"/>
  1513. <constraint firstItem="QMn-HC-MBS" firstAttribute="centerY" secondItem="gBN-eR-ZN9" secondAttribute="centerY" id="MC4-W7-O5l"/>
  1514. </constraints>
  1515. </tableViewCellContentView>
  1516. </tableViewCell>
  1517. </cells>
  1518. </tableViewSection>
  1519. </sections>
  1520. <connections>
  1521. <outlet property="dataSource" destination="RmG-ce-hCV" id="O7N-fC-zqS"/>
  1522. <outlet property="delegate" destination="RmG-ce-hCV" id="SNO-fX-l6Z"/>
  1523. </connections>
  1524. </tableView>
  1525. <navigationItem key="navigationItem" title="Storage Management" largeTitleDisplayMode="never" id="u0Q-wW-S40"/>
  1526. <connections>
  1527. <outlet property="mediaDeleteActivityIndicator" destination="lKc-iX-W6R" id="MYI-2b-g95"/>
  1528. <outlet property="mediaDeleteButtonLabel" destination="2kJ-Y2-iOd" id="Adx-0C-Xpr"/>
  1529. <outlet property="mediaDeleteCell" destination="u9c-Ns-n40" id="api-pk-yGh"/>
  1530. <outlet property="mediaDeleteDetailLabel" destination="RcX-GS-Xg5" id="xxL-e4-6js"/>
  1531. <outlet property="mediaDeleteLabel" destination="7UQ-Nr-5Tn" id="jGb-jg-Pou"/>
  1532. <outlet property="messageDeleteActivityIndicator" destination="bIS-aK-BKb" id="aKQ-fB-D7K"/>
  1533. <outlet property="messageDeleteButtonLabel" destination="QMn-HC-MBS" id="31n-g8-UmC"/>
  1534. <outlet property="messageDeleteCell" destination="H5A-O5-yMk" id="1l8-8P-jme"/>
  1535. <outlet property="messageDeleteDetailLabel" destination="mfL-7m-jcS" id="t3u-Zl-mAO"/>
  1536. <outlet property="messageDeleteLabel" destination="wVB-DV-DFQ" id="7kg-1u-uV4"/>
  1537. <outlet property="storageThreema" destination="lgV-MU-UON" id="xYl-sX-6jD"/>
  1538. <outlet property="storageThreemaActivityIndicator" destination="trt-Co-3xT" id="gm0-Tu-O6t"/>
  1539. <outlet property="storageThreemaValue" destination="wE7-pn-Gu5" id="Dxb-Vs-evi"/>
  1540. <outlet property="storageTotal" destination="9HG-t5-Xhb" id="29s-gd-T6T"/>
  1541. <outlet property="storageTotalFree" destination="06t-fE-Y6z" id="SPJ-MM-RK3"/>
  1542. <outlet property="storageTotalFreeValue" destination="giX-Df-fBe" id="6sd-X6-7hY"/>
  1543. <outlet property="storageTotalInUse" destination="e89-ku-bQL" id="yIl-id-SlZ"/>
  1544. <outlet property="storageTotalInUseValue" destination="Ue7-f7-Pqb" id="vAs-Tw-NIU"/>
  1545. <outlet property="storageTotalValue" destination="kHb-uQ-Ce1" id="hEt-j2-8Ck"/>
  1546. </connections>
  1547. </tableViewController>
  1548. <placeholder placeholderIdentifier="IBFirstResponder" id="QEw-ky-zpV" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1549. </objects>
  1550. <point key="canvasLocation" x="-2609" y="3660"/>
  1551. </scene>
  1552. <!--License-->
  1553. <scene sceneID="JIg-yI-uJN">
  1554. <objects>
  1555. <viewController id="XhF-Vw-SGc" customClass="LicenseViewController" sceneMemberID="viewController">
  1556. <view key="view" contentMode="scaleToFill" id="jyX-KT-ELE">
  1557. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  1558. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1559. <viewLayoutGuide key="safeArea" id="baG-5t-WCv"/>
  1560. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1561. </view>
  1562. <navigationItem key="navigationItem" title="License" largeTitleDisplayMode="never" id="Cuk-M6-y9N"/>
  1563. </viewController>
  1564. <placeholder placeholderIdentifier="IBFirstResponder" id="hWo-hH-bwF" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1565. </objects>
  1566. <point key="canvasLocation" x="-3975" y="3660"/>
  1567. </scene>
  1568. <!--Chat-->
  1569. <scene sceneID="Xxc-cj-Iy1">
  1570. <objects>
  1571. <tableViewController id="h3L-LN-tr9" customClass="ChatSettingsViewController" sceneMemberID="viewController">
  1572. <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="CeI-lv-1A0">
  1573. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  1574. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1575. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1576. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  1577. <sections>
  1578. <tableViewSection headerTitle="Wallpaper" id="ri0-wl-hNq">
  1579. <cells>
  1580. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="178" id="2Qs-fK-vGR">
  1581. <rect key="frame" x="0.0" y="55.5" width="375" height="178"/>
  1582. <autoresizingMask key="autoresizingMask"/>
  1583. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="2Qs-fK-vGR" id="pMf-9h-Z0O">
  1584. <rect key="frame" x="0.0" y="0.0" width="348" height="178"/>
  1585. <autoresizingMask key="autoresizingMask"/>
  1586. <subviews>
  1587. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" image="WallpaperDefault.png" translatesAutoresizingMaskIntoConstraints="NO" id="OsR-zP-kti">
  1588. <rect key="frame" x="113" y="14" width="149" height="150"/>
  1589. <constraints>
  1590. <constraint firstAttribute="height" constant="150" id="98K-WP-he5"/>
  1591. <constraint firstAttribute="width" constant="149" id="J9b-7t-oFB"/>
  1592. </constraints>
  1593. </imageView>
  1594. </subviews>
  1595. </tableViewCellContentView>
  1596. <constraints>
  1597. <constraint firstItem="OsR-zP-kti" firstAttribute="centerX" secondItem="2Qs-fK-vGR" secondAttribute="centerX" id="aTu-27-SDK"/>
  1598. <constraint firstItem="OsR-zP-kti" firstAttribute="centerY" secondItem="2Qs-fK-vGR" secondAttribute="centerY" id="gTc-8o-K7J"/>
  1599. </constraints>
  1600. </tableViewCell>
  1601. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="Rfg-a6-EB2" style="IBUITableViewCellStyleDefault" id="sOM-UB-bbQ">
  1602. <rect key="frame" x="0.0" y="233.5" width="375" height="44"/>
  1603. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  1604. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sOM-UB-bbQ" id="4yl-tr-0Fh">
  1605. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1606. <autoresizingMask key="autoresizingMask"/>
  1607. <subviews>
  1608. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Reset Wallpaper" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Rfg-a6-EB2">
  1609. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1610. <autoresizingMask key="autoresizingMask"/>
  1611. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1612. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1613. <nil key="highlightedColor"/>
  1614. </label>
  1615. </subviews>
  1616. </tableViewCellContentView>
  1617. <accessibility key="accessibilityConfiguration">
  1618. <accessibilityTraits key="traits" button="YES"/>
  1619. </accessibility>
  1620. </tableViewCell>
  1621. </cells>
  1622. </tableViewSection>
  1623. <tableViewSection headerTitle="" id="mMI-Jx-DlD">
  1624. <cells>
  1625. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="oTH-CS-y8U" detailTextLabel="yFW-ty-9QR" style="IBUITableViewCellStyleValue1" id="hRZ-eA-tCq">
  1626. <rect key="frame" x="0.0" y="317" width="375" height="44"/>
  1627. <autoresizingMask key="autoresizingMask"/>
  1628. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="hRZ-eA-tCq" id="GPP-Hp-9d9">
  1629. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  1630. <autoresizingMask key="autoresizingMask"/>
  1631. <subviews>
  1632. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Font Size" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="oTH-CS-y8U">
  1633. <rect key="frame" x="16" y="12" width="70.5" height="20.5"/>
  1634. <autoresizingMask key="autoresizingMask"/>
  1635. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1636. <nil key="textColor"/>
  1637. <nil key="highlightedColor"/>
  1638. </label>
  1639. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="yFW-ty-9QR">
  1640. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  1641. <autoresizingMask key="autoresizingMask"/>
  1642. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1643. <nil key="textColor"/>
  1644. <nil key="highlightedColor"/>
  1645. </label>
  1646. </subviews>
  1647. </tableViewCellContentView>
  1648. <connections>
  1649. <segue destination="DcU-Gz-xaH" kind="show" id="gyv-Ob-KUU"/>
  1650. </connections>
  1651. </tableViewCell>
  1652. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="etj-Pj-I1Y" style="IBUITableViewCellStyleDefault" id="ixz-q3-6RD">
  1653. <rect key="frame" x="0.0" y="361" width="375" height="44"/>
  1654. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1655. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ixz-q3-6RD" id="OyE-SD-qXq">
  1656. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1657. <autoresizingMask key="autoresizingMask"/>
  1658. <subviews>
  1659. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Bigger single emoji" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="etj-Pj-I1Y">
  1660. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1661. <autoresizingMask key="autoresizingMask"/>
  1662. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1663. <nil key="textColor"/>
  1664. <nil key="highlightedColor"/>
  1665. </label>
  1666. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="fd5-YI-sdV">
  1667. <rect key="frame" x="163" y="5" width="49" height="31"/>
  1668. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1669. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1670. <connections>
  1671. <action selector="biggerEmojiChanged:" destination="h3L-LN-tr9" eventType="valueChanged" id="vry-8w-2OI"/>
  1672. </connections>
  1673. </switch>
  1674. </subviews>
  1675. </tableViewCellContentView>
  1676. <connections>
  1677. <outlet property="accessoryView" destination="fd5-YI-sdV" id="dI6-Dg-Y1C"/>
  1678. </connections>
  1679. </tableViewCell>
  1680. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="HDn-EN-rtP" style="IBUITableViewCellStyleDefault" id="J93-5H-rdW">
  1681. <rect key="frame" x="0.0" y="405" width="375" height="44"/>
  1682. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1683. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="J93-5H-rdW" id="o5o-AR-zf4">
  1684. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1685. <autoresizingMask key="autoresizingMask"/>
  1686. <subviews>
  1687. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Received Message Time" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="HDn-EN-rtP">
  1688. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1689. <autoresizingMask key="autoresizingMask"/>
  1690. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1691. <nil key="textColor"/>
  1692. <nil key="highlightedColor"/>
  1693. </label>
  1694. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="vXD-qW-yUV">
  1695. <rect key="frame" x="163" y="5" width="49" height="31"/>
  1696. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1697. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1698. <connections>
  1699. <action selector="showReceivedTimestampChanged:" destination="h3L-LN-tr9" eventType="valueChanged" id="aaV-FC-i09"/>
  1700. </connections>
  1701. </switch>
  1702. </subviews>
  1703. </tableViewCellContentView>
  1704. <connections>
  1705. <outlet property="accessoryView" destination="vXD-qW-yUV" id="HAr-4f-VN4"/>
  1706. </connections>
  1707. </tableViewCell>
  1708. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="7C7-0j-j2r" style="IBUITableViewCellStyleDefault" id="93r-4t-eNU">
  1709. <rect key="frame" x="0.0" y="449" width="375" height="44"/>
  1710. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1711. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="93r-4t-eNU" id="g7c-eb-CcI">
  1712. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1713. <autoresizingMask key="autoresizingMask"/>
  1714. <subviews>
  1715. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Return Key = Send" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="7C7-0j-j2r">
  1716. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1717. <autoresizingMask key="autoresizingMask"/>
  1718. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1719. <nil key="textColor"/>
  1720. <nil key="highlightedColor"/>
  1721. </label>
  1722. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cZN-Wy-eRX">
  1723. <rect key="frame" x="163" y="5" width="49" height="31"/>
  1724. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1725. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1726. <connections>
  1727. <action selector="returnToSendChanged:" destination="h3L-LN-tr9" eventType="valueChanged" id="c4P-xS-Pzj"/>
  1728. </connections>
  1729. </switch>
  1730. </subviews>
  1731. </tableViewCellContentView>
  1732. <connections>
  1733. <outlet property="accessoryView" destination="cZN-Wy-eRX" id="sJ5-KD-ho5"/>
  1734. </connections>
  1735. </tableViewCell>
  1736. </cells>
  1737. </tableViewSection>
  1738. </sections>
  1739. <connections>
  1740. <outlet property="dataSource" destination="h3L-LN-tr9" id="GJn-yO-a1n"/>
  1741. <outlet property="delegate" destination="h3L-LN-tr9" id="LYd-dK-yWI"/>
  1742. </connections>
  1743. </tableView>
  1744. <navigationItem key="navigationItem" title="Chat" largeTitleDisplayMode="never" id="jI2-1V-LmF"/>
  1745. <connections>
  1746. <outlet property="biggerEmojiLabel" destination="etj-Pj-I1Y" id="Zdy-RS-X57"/>
  1747. <outlet property="biggerEmojiSwitch" destination="fd5-YI-sdV" id="ZEe-6u-vwZ"/>
  1748. <outlet property="fontSizeLabel" destination="yFW-ty-9QR" id="Y2j-DB-5g1"/>
  1749. <outlet property="returnToSendSwitch" destination="cZN-Wy-eRX" id="1Np-q1-m2Q"/>
  1750. <outlet property="showReceivedTimestampSwitch" destination="vXD-qW-yUV" id="yX1-kb-QjX"/>
  1751. <outlet property="wallpaperImageView" destination="OsR-zP-kti" id="Aa8-O1-tXZ"/>
  1752. </connections>
  1753. </tableViewController>
  1754. <placeholder placeholderIdentifier="IBFirstResponder" id="DzQ-L3-J8A" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1755. </objects>
  1756. <point key="canvasLocation" x="-2153" y="2615"/>
  1757. </scene>
  1758. <!--Appearance-->
  1759. <scene sceneID="K0z-Fx-gjn">
  1760. <objects>
  1761. <tableViewController id="m14-Er-fpS" customClass="AppearanceSettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  1762. <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="iUb-sS-b1Q">
  1763. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  1764. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1765. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1766. <sections>
  1767. <tableViewSection headerTitle="Design theme" id="y1u-xK-T6S">
  1768. <cells>
  1769. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" rowHeight="230" id="jp9-dS-eWG">
  1770. <rect key="frame" x="0.0" y="55.5" width="375" height="230"/>
  1771. <autoresizingMask key="autoresizingMask"/>
  1772. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jp9-dS-eWG" id="juV-BJ-fK3">
  1773. <rect key="frame" x="0.0" y="0.0" width="375" height="230"/>
  1774. <autoresizingMask key="autoresizingMask"/>
  1775. <subviews>
  1776. <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" alignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="BRY-hu-mtc">
  1777. <rect key="frame" x="10" y="10" width="355" height="210"/>
  1778. <subviews>
  1779. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="tmZ-Yt-Bt8">
  1780. <rect key="frame" x="0.0" y="1" width="118.5" height="208"/>
  1781. <subviews>
  1782. <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9yp-pM-s75">
  1783. <rect key="frame" x="17.5" y="0.0" width="83" height="180"/>
  1784. <state key="normal" image="System-Theme"/>
  1785. <connections>
  1786. <action selector="systemThemeSelectedWithSender:" destination="m14-Er-fpS" eventType="touchUpInside" id="nqb-0C-9d3"/>
  1787. </connections>
  1788. </button>
  1789. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="System" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="iF9-Vl-b0E">
  1790. <rect key="frame" x="33.5" y="190" width="51" height="18"/>
  1791. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  1792. <color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
  1793. <nil key="highlightedColor"/>
  1794. </label>
  1795. </subviews>
  1796. </stackView>
  1797. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="IJe-wc-fhA">
  1798. <rect key="frame" x="118.5" y="1" width="118" height="208"/>
  1799. <subviews>
  1800. <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="44O-uU-ZGh">
  1801. <rect key="frame" x="17.5" y="0.0" width="83" height="180"/>
  1802. <state key="normal" image="Light-Theme"/>
  1803. <connections>
  1804. <action selector="lightThemeSelectedWithSender:" destination="m14-Er-fpS" eventType="touchUpInside" id="jJ8-TK-aRz"/>
  1805. </connections>
  1806. </button>
  1807. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Light" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="5qo-b9-Lor">
  1808. <rect key="frame" x="42" y="190" width="34.5" height="18"/>
  1809. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  1810. <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="calibratedWhite"/>
  1811. <nil key="highlightedColor"/>
  1812. </label>
  1813. </subviews>
  1814. </stackView>
  1815. <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="Gpq-cS-N4S">
  1816. <rect key="frame" x="236.5" y="1" width="118.5" height="208"/>
  1817. <subviews>
  1818. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qzu-kK-UV3">
  1819. <rect key="frame" x="18" y="0.0" width="83" height="180"/>
  1820. <state key="normal" image="Dark-Theme"/>
  1821. <connections>
  1822. <action selector="darkThemeSelectedWithSender:" destination="m14-Er-fpS" eventType="touchUpInside" id="p1A-eT-o1u"/>
  1823. </connections>
  1824. </button>
  1825. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Dark" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="V5m-Tp-tcN">
  1826. <rect key="frame" x="43" y="190" width="32.5" height="18"/>
  1827. <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
  1828. <color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
  1829. <nil key="highlightedColor"/>
  1830. </label>
  1831. </subviews>
  1832. </stackView>
  1833. </subviews>
  1834. </stackView>
  1835. </subviews>
  1836. <constraints>
  1837. <constraint firstItem="BRY-hu-mtc" firstAttribute="top" secondItem="juV-BJ-fK3" secondAttribute="top" constant="10" id="MGM-Zt-Sbx"/>
  1838. <constraint firstItem="BRY-hu-mtc" firstAttribute="leading" secondItem="juV-BJ-fK3" secondAttribute="leading" constant="10" id="i1b-Ru-dqj"/>
  1839. <constraint firstAttribute="bottom" secondItem="BRY-hu-mtc" secondAttribute="bottom" constant="10" id="l4o-6e-S3z"/>
  1840. <constraint firstAttribute="trailing" secondItem="BRY-hu-mtc" secondAttribute="trailing" constant="10" id="qLp-jf-98M"/>
  1841. </constraints>
  1842. </tableViewCellContentView>
  1843. </tableViewCell>
  1844. </cells>
  1845. </tableViewSection>
  1846. <tableViewSection footerTitle="" id="JVM-dV-raQ">
  1847. <cells>
  1848. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="C7N-a6-E8Y" style="IBUITableViewCellStyleDefault" id="cqw-A1-TA9">
  1849. <rect key="frame" x="0.0" y="320.5" width="375" height="44"/>
  1850. <autoresizingMask key="autoresizingMask"/>
  1851. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="cqw-A1-TA9" id="MEn-O3-lum">
  1852. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1853. <autoresizingMask key="autoresizingMask"/>
  1854. <subviews>
  1855. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Hide Stale Contacts" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="C7N-a6-E8Y">
  1856. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1857. <autoresizingMask key="autoresizingMask"/>
  1858. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1859. <nil key="textColor"/>
  1860. <nil key="highlightedColor"/>
  1861. </label>
  1862. <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="w2e-jm-x0a">
  1863. <rect key="frame" x="162" y="5.5" width="51" height="31"/>
  1864. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1865. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1866. <connections>
  1867. <action selector="hideStaleContactsChangedWithSender:" destination="m14-Er-fpS" eventType="valueChanged" id="cgy-zn-9Pa"/>
  1868. </connections>
  1869. </switch>
  1870. </subviews>
  1871. </tableViewCellContentView>
  1872. <connections>
  1873. <outlet property="accessoryView" destination="w2e-jm-x0a" id="Ol4-Bj-X7C"/>
  1874. </connections>
  1875. </tableViewCell>
  1876. </cells>
  1877. </tableViewSection>
  1878. <tableViewSection footerTitle="" id="c3z-wL-s4q">
  1879. <cells>
  1880. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="73k-4u-GSo" style="IBUITableViewCellStyleDefault" id="4jy-xK-aLD">
  1881. <rect key="frame" x="0.0" y="404" width="375" height="44"/>
  1882. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1883. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4jy-xK-aLD" id="A9D-1O-sko">
  1884. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1885. <autoresizingMask key="autoresizingMask"/>
  1886. <subviews>
  1887. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Show profile pictures" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="73k-4u-GSo">
  1888. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1889. <autoresizingMask key="autoresizingMask"/>
  1890. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1891. <nil key="textColor"/>
  1892. <nil key="highlightedColor"/>
  1893. </label>
  1894. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9nu-XV-2dr">
  1895. <rect key="frame" x="164" y="6" width="47" height="31"/>
  1896. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1897. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1898. <connections>
  1899. <action selector="showProfilePicturesChangedWithSender:" destination="m14-Er-fpS" eventType="valueChanged" id="PN2-vV-lmD"/>
  1900. </connections>
  1901. </switch>
  1902. </subviews>
  1903. </tableViewCellContentView>
  1904. <connections>
  1905. <outlet property="accessoryView" destination="9nu-XV-2dr" id="RuY-3G-wt6"/>
  1906. </connections>
  1907. </tableViewCell>
  1908. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="SeE-st-lWM" detailTextLabel="qCc-Eb-8rc" style="IBUITableViewCellStyleValue1" id="Qhs-h4-VKz">
  1909. <rect key="frame" x="0.0" y="448" width="375" height="44"/>
  1910. <autoresizingMask key="autoresizingMask"/>
  1911. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Qhs-h4-VKz" id="e5z-pf-FCM">
  1912. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  1913. <autoresizingMask key="autoresizingMask"/>
  1914. <subviews>
  1915. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Display Order" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="SeE-st-lWM">
  1916. <rect key="frame" x="16" y="12" width="104" height="20.5"/>
  1917. <autoresizingMask key="autoresizingMask"/>
  1918. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1919. <nil key="textColor"/>
  1920. <nil key="highlightedColor"/>
  1921. </label>
  1922. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="qCc-Eb-8rc">
  1923. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  1924. <autoresizingMask key="autoresizingMask"/>
  1925. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1926. <nil key="textColor"/>
  1927. <nil key="highlightedColor"/>
  1928. </label>
  1929. </subviews>
  1930. </tableViewCellContentView>
  1931. <connections>
  1932. <segue destination="gvW-Vv-w9b" kind="show" id="5cK-di-0X5"/>
  1933. </connections>
  1934. </tableViewCell>
  1935. </cells>
  1936. </tableViewSection>
  1937. <tableViewSection footerTitle="" id="MSz-po-upr">
  1938. <cells>
  1939. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="TyO-Dl-3LV" style="IBUITableViewCellStyleDefault" id="zRe-zG-lmh">
  1940. <rect key="frame" x="0.0" y="531.5" width="375" height="44"/>
  1941. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1942. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="zRe-zG-lmh" id="32m-ED-tCf">
  1943. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1944. <autoresizingMask key="autoresizingMask"/>
  1945. <subviews>
  1946. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Show gallery preview" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="TyO-Dl-3LV">
  1947. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1948. <autoresizingMask key="autoresizingMask"/>
  1949. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1950. <nil key="textColor"/>
  1951. <nil key="highlightedColor"/>
  1952. </label>
  1953. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Sco-6v-Kmm">
  1954. <rect key="frame" x="164" y="6" width="47" height="31"/>
  1955. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1956. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1957. <connections>
  1958. <action selector="showGalleryPreviewChangedWithSender:" destination="m14-Er-fpS" eventType="valueChanged" id="Sj8-GL-N3N"/>
  1959. </connections>
  1960. </switch>
  1961. </subviews>
  1962. </tableViewCellContentView>
  1963. <connections>
  1964. <outlet property="accessoryView" destination="Sco-6v-Kmm" id="1ye-YC-m2Q"/>
  1965. </connections>
  1966. </tableViewCell>
  1967. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="8MF-g0-jVQ" style="IBUITableViewCellStyleDefault" id="6vh-oQ-5GE">
  1968. <rect key="frame" x="0.0" y="575.5" width="375" height="44"/>
  1969. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1970. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6vh-oQ-5GE" id="pdL-ZB-HkE">
  1971. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1972. <autoresizingMask key="autoresizingMask"/>
  1973. <subviews>
  1974. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Limit: %.0f thumbnails" textAlignment="natural" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="8MF-g0-jVQ" userLabel="Preview limit">
  1975. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  1976. <autoresizingMask key="autoresizingMask"/>
  1977. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  1978. <nil key="textColor"/>
  1979. <nil key="highlightedColor"/>
  1980. </label>
  1981. <slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="5" minValue="5" maxValue="100" translatesAutoresizingMaskIntoConstraints="NO" id="qtd-p4-KW4">
  1982. <rect key="frame" x="128" y="6.5" width="180" height="30"/>
  1983. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1984. <connections>
  1985. <action selector="previewLimitChangedWithSender:" destination="m14-Er-fpS" eventType="valueChanged" id="hL3-kP-aJc"/>
  1986. </connections>
  1987. </slider>
  1988. </subviews>
  1989. </tableViewCellContentView>
  1990. <connections>
  1991. <outlet property="accessoryView" destination="qtd-p4-KW4" id="U8h-nn-0pI"/>
  1992. </connections>
  1993. </tableViewCell>
  1994. </cells>
  1995. </tableViewSection>
  1996. </sections>
  1997. <connections>
  1998. <outlet property="dataSource" destination="m14-Er-fpS" id="G9A-QN-3sA"/>
  1999. <outlet property="delegate" destination="m14-Er-fpS" id="wgC-rp-GLn"/>
  2000. </connections>
  2001. </tableView>
  2002. <navigationItem key="navigationItem" title="Appearance" largeTitleDisplayMode="never" id="ZYa-QO-V4r"/>
  2003. <connections>
  2004. <outlet property="darkThemeButton" destination="qzu-kK-UV3" id="rGi-gf-qUn"/>
  2005. <outlet property="darkThemeLabel" destination="V5m-Tp-tcN" id="4di-cO-jaq"/>
  2006. <outlet property="displayOrderLabel" destination="SeE-st-lWM" id="zbn-Wk-cvs"/>
  2007. <outlet property="displayOrderValue" destination="qCc-Eb-8rc" id="tja-yE-Mtk"/>
  2008. <outlet property="hideStaleContactsLabel" destination="C7N-a6-E8Y" id="zkY-6d-MaM"/>
  2009. <outlet property="hideStaleContactsSwitch" destination="w2e-jm-x0a" id="V8r-an-IYu"/>
  2010. <outlet property="lightThemeButton" destination="44O-uU-ZGh" id="u5u-4a-zdR"/>
  2011. <outlet property="lightThemeLabel" destination="5qo-b9-Lor" id="KiK-Y7-kFQ"/>
  2012. <outlet property="previewLimitLabel" destination="8MF-g0-jVQ" id="qaK-gW-A5f"/>
  2013. <outlet property="previewLimitSlider" destination="qtd-p4-KW4" id="IzK-5S-v5T"/>
  2014. <outlet property="showGalleryPreviewLabel" destination="TyO-Dl-3LV" id="MCN-JE-EOK"/>
  2015. <outlet property="showGalleryPreviewSwitch" destination="Sco-6v-Kmm" id="qGB-Jd-qCe"/>
  2016. <outlet property="showProfilePicturesLabel" destination="73k-4u-GSo" id="jNX-14-2qy"/>
  2017. <outlet property="showProfilePicturesSwitch" destination="9nu-XV-2dr" id="I53-un-CKF"/>
  2018. <outlet property="systemStackView" destination="tmZ-Yt-Bt8" id="AMc-Gq-eFc"/>
  2019. <outlet property="systemThemeButton" destination="9yp-pM-s75" id="cM3-1F-GHR"/>
  2020. <outlet property="systemThemeLabel" destination="iF9-Vl-b0E" id="8lT-U7-odB"/>
  2021. <outlet property="themeCell" destination="jp9-dS-eWG" id="d5k-Iz-haw"/>
  2022. </connections>
  2023. </tableViewController>
  2024. <placeholder placeholderIdentifier="IBFirstResponder" id="CW3-VB-HOX" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2025. </objects>
  2026. <point key="canvasLocation" x="-1844" y="671.51424287856082"/>
  2027. </scene>
  2028. <!--Font Size-->
  2029. <scene sceneID="61B-zt-SgN">
  2030. <objects>
  2031. <tableViewController id="DcU-Gz-xaH" customClass="FontSizeViewController" sceneMemberID="viewController">
  2032. <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="JG1-3E-mql">
  2033. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2034. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2035. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2036. <prototypes>
  2037. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="FontSizeCell" textLabel="eXp-kk-t9y" style="IBUITableViewCellStyleDefault" id="3xn-bM-y5d">
  2038. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  2039. <autoresizingMask key="autoresizingMask"/>
  2040. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3xn-bM-y5d" id="lSq-v1-Jk2">
  2041. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2042. <autoresizingMask key="autoresizingMask"/>
  2043. <subviews>
  2044. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="xx pt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="eXp-kk-t9y">
  2045. <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
  2046. <autoresizingMask key="autoresizingMask"/>
  2047. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2048. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2049. <nil key="highlightedColor"/>
  2050. </label>
  2051. </subviews>
  2052. </tableViewCellContentView>
  2053. </tableViewCell>
  2054. </prototypes>
  2055. <sections/>
  2056. <connections>
  2057. <outlet property="dataSource" destination="DcU-Gz-xaH" id="l5Z-fa-evJ"/>
  2058. <outlet property="delegate" destination="DcU-Gz-xaH" id="aF8-aM-Ugf"/>
  2059. </connections>
  2060. </tableView>
  2061. <navigationItem key="navigationItem" title="Font Size" largeTitleDisplayMode="never" id="3OC-m7-GmD"/>
  2062. </tableViewController>
  2063. <placeholder placeholderIdentifier="IBFirstResponder" id="emr-fI-efp" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2064. </objects>
  2065. <point key="canvasLocation" x="-1322" y="2615"/>
  2066. </scene>
  2067. <!--Support-->
  2068. <scene sceneID="vcf-K7-dpb">
  2069. <objects>
  2070. <viewController id="YXd-Rd-n37" customClass="SupportViewController" sceneMemberID="viewController">
  2071. <view key="view" contentMode="scaleToFill" id="wUZ-PG-0pK">
  2072. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2073. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2074. <viewLayoutGuide key="safeArea" id="KiJ-iO-XpX"/>
  2075. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2076. </view>
  2077. <navigationItem key="navigationItem" title="Support" largeTitleDisplayMode="never" id="Yb8-8D-YgU"/>
  2078. </viewController>
  2079. <placeholder placeholderIdentifier="IBFirstResponder" id="Qyb-8B-a97" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2080. </objects>
  2081. <point key="canvasLocation" x="-5377" y="3660"/>
  2082. </scene>
  2083. <!--Threema Work-->
  2084. <scene sceneID="i5f-Si-Sni">
  2085. <objects>
  2086. <viewController title="Threema Work" id="jCJ-Xa-v16" customClass="ThreemaWorkViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2087. <view key="view" contentMode="scaleToFill" id="oa3-wk-YlW">
  2088. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2089. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2090. <viewLayoutGuide key="safeArea" id="HCP-yY-DFu"/>
  2091. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2092. </view>
  2093. <navigationItem key="navigationItem" title="Threema Work" largeTitleDisplayMode="never" id="EsR-Zr-hie"/>
  2094. </viewController>
  2095. <placeholder placeholderIdentifier="IBFirstResponder" id="Ta8-TF-XUU" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2096. </objects>
  2097. <point key="canvasLocation" x="-6082" y="3660"/>
  2098. </scene>
  2099. <!--Privacy Policy-->
  2100. <scene sceneID="dLm-4Q-eoX">
  2101. <objects>
  2102. <viewController storyboardIdentifier="PrivacyPolicyViewController" id="ExO-Da-OuT" customClass="PrivacyPolicyViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2103. <view key="view" contentMode="scaleToFill" id="mxa-H9-8pT">
  2104. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2105. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2106. <viewLayoutGuide key="safeArea" id="oJu-iR-IRQ"/>
  2107. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2108. </view>
  2109. <navigationItem key="navigationItem" title="Privacy Policy" largeTitleDisplayMode="never" id="SQX-77-CzT"/>
  2110. </viewController>
  2111. <placeholder placeholderIdentifier="IBFirstResponder" id="d7D-1Q-JJO" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2112. </objects>
  2113. <point key="canvasLocation" x="-4614" y="3660"/>
  2114. </scene>
  2115. <!--Image Size-->
  2116. <scene sceneID="eTi-ay-W8l">
  2117. <objects>
  2118. <tableViewController storyboardIdentifier="ImageSizeViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="BgE-Bg-LfV" customClass="ImageSizeViewController" sceneMemberID="viewController">
  2119. <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="h01-Hj-Gji">
  2120. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2121. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2122. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2123. <prototypes>
  2124. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="checkmark" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ImageSizeCell" textLabel="f2r-1x-GtL" detailTextLabel="ij7-I7-TzW" rowHeight="62" style="IBUITableViewCellStyleSubtitle" id="258-UB-9Hd">
  2125. <rect key="frame" x="0.0" y="55.5" width="375" height="62"/>
  2126. <autoresizingMask key="autoresizingMask"/>
  2127. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="258-UB-9Hd" id="Y0F-Tf-Wyf">
  2128. <rect key="frame" x="0.0" y="0.0" width="335" height="62"/>
  2129. <autoresizingMask key="autoresizingMask"/>
  2130. <subviews>
  2131. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Size" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="f2r-1x-GtL">
  2132. <rect key="frame" x="16" y="11" width="32" height="20.5"/>
  2133. <autoresizingMask key="autoresizingMask"/>
  2134. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2135. <nil key="textColor"/>
  2136. <nil key="highlightedColor"/>
  2137. </label>
  2138. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="max. 640 x 640 pixels" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="ij7-I7-TzW">
  2139. <rect key="frame" x="16" y="34.5" width="125.5" height="14.5"/>
  2140. <autoresizingMask key="autoresizingMask"/>
  2141. <fontDescription key="fontDescription" style="UICTFontTextStyleCaption1"/>
  2142. <nil key="textColor"/>
  2143. <nil key="highlightedColor"/>
  2144. </label>
  2145. </subviews>
  2146. </tableViewCellContentView>
  2147. </tableViewCell>
  2148. </prototypes>
  2149. <sections/>
  2150. <connections>
  2151. <outlet property="dataSource" destination="BgE-Bg-LfV" id="oNj-dV-rX7"/>
  2152. <outlet property="delegate" destination="BgE-Bg-LfV" id="cKI-sd-rEd"/>
  2153. </connections>
  2154. </tableView>
  2155. <navigationItem key="navigationItem" title="Image Size" largeTitleDisplayMode="never" id="owJ-3Q-Phk"/>
  2156. </tableViewController>
  2157. <placeholder placeholderIdentifier="IBFirstResponder" id="Niv-Ln-y9E" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2158. </objects>
  2159. <point key="canvasLocation" x="-606" y="3191"/>
  2160. </scene>
  2161. <!--Notifications-->
  2162. <scene sceneID="5mN-NJ-oOY">
  2163. <objects>
  2164. <tableViewController id="TrM-Qf-Qx4" customClass="GlobalNotificationSettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2165. <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="XqO-wS-cLA">
  2166. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2167. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2168. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2169. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  2170. <sections>
  2171. <tableViewSection headerTitle="In App" id="f4R-xX-l5O">
  2172. <cells>
  2173. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="767-fB-vds" style="IBUITableViewCellStyleDefault" id="lHX-iX-iIT">
  2174. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2175. <autoresizingMask key="autoresizingMask"/>
  2176. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="lHX-iX-iIT" id="sp2-aT-Qsk">
  2177. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2178. <autoresizingMask key="autoresizingMask"/>
  2179. <subviews>
  2180. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Sounds" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="767-fB-vds">
  2181. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2182. <autoresizingMask key="autoresizingMask"/>
  2183. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2184. <nil key="textColor"/>
  2185. <nil key="highlightedColor"/>
  2186. </label>
  2187. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Hyu-IV-qZZ">
  2188. <rect key="frame" x="161" y="6" width="52" height="31"/>
  2189. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2190. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2191. <connections>
  2192. <action selector="inAppSoundsChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="kIQ-ZP-YOq"/>
  2193. </connections>
  2194. </switch>
  2195. </subviews>
  2196. </tableViewCellContentView>
  2197. <connections>
  2198. <outlet property="accessoryView" destination="Hyu-IV-qZZ" id="PGW-Dh-YKe"/>
  2199. </connections>
  2200. </tableViewCell>
  2201. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="ecU-zr-KHj" style="IBUITableViewCellStyleDefault" id="M4n-c4-r9Q">
  2202. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  2203. <autoresizingMask key="autoresizingMask"/>
  2204. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="M4n-c4-r9Q" id="Fte-uZ-s3J">
  2205. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2206. <autoresizingMask key="autoresizingMask"/>
  2207. <subviews>
  2208. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Vibrate" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="ecU-zr-KHj">
  2209. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2210. <autoresizingMask key="autoresizingMask"/>
  2211. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2212. <nil key="textColor"/>
  2213. <nil key="highlightedColor"/>
  2214. </label>
  2215. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="deL-tR-mD5">
  2216. <rect key="frame" x="161" y="6" width="52" height="31"/>
  2217. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2218. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2219. <connections>
  2220. <action selector="inAppVibrateChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="dGu-Mg-rRo"/>
  2221. </connections>
  2222. </switch>
  2223. </subviews>
  2224. </tableViewCellContentView>
  2225. <connections>
  2226. <outlet property="accessoryView" destination="deL-tR-mD5" id="jza-Ic-Yue"/>
  2227. </connections>
  2228. </tableViewCell>
  2229. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="TK5-dl-jlh" style="IBUITableViewCellStyleDefault" id="vTy-Tq-X3e">
  2230. <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
  2231. <autoresizingMask key="autoresizingMask"/>
  2232. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vTy-Tq-X3e" id="2np-kl-PbJ">
  2233. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2234. <autoresizingMask key="autoresizingMask"/>
  2235. <subviews>
  2236. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Preview" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="TK5-dl-jlh">
  2237. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2238. <autoresizingMask key="autoresizingMask"/>
  2239. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2240. <nil key="textColor"/>
  2241. <nil key="highlightedColor"/>
  2242. </label>
  2243. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rgH-Jx-nPi">
  2244. <rect key="frame" x="161" y="6" width="52" height="31"/>
  2245. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2246. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2247. <connections>
  2248. <action selector="inAppPreviewChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="HGs-vn-okK"/>
  2249. </connections>
  2250. </switch>
  2251. </subviews>
  2252. </tableViewCellContentView>
  2253. <connections>
  2254. <outlet property="accessoryView" destination="rgH-Jx-nPi" id="4xC-l4-a8K"/>
  2255. </connections>
  2256. </tableViewCell>
  2257. </cells>
  2258. </tableViewSection>
  2259. <tableViewSection headerTitle="Push Notifications" id="GAH-k5-f9K">
  2260. <cells>
  2261. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Gxz-el-mis" detailTextLabel="GCE-65-OPQ" style="IBUITableViewCellStyleValue1" id="Z8x-Ww-GZI">
  2262. <rect key="frame" x="0.0" y="243" width="375" height="44"/>
  2263. <autoresizingMask key="autoresizingMask"/>
  2264. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Z8x-Ww-GZI" id="a8m-r3-2FS">
  2265. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  2266. <autoresizingMask key="autoresizingMask"/>
  2267. <subviews>
  2268. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Gxz-el-mis">
  2269. <rect key="frame" x="16" y="12" width="49" height="20.5"/>
  2270. <autoresizingMask key="autoresizingMask"/>
  2271. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2272. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2273. <nil key="highlightedColor"/>
  2274. </label>
  2275. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="GCE-65-OPQ">
  2276. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  2277. <autoresizingMask key="autoresizingMask"/>
  2278. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2279. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2280. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2281. </label>
  2282. </subviews>
  2283. </tableViewCellContentView>
  2284. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  2285. <connections>
  2286. <segue destination="qv3-v9-aLb" kind="show" id="Gyf-bm-t8M"/>
  2287. </connections>
  2288. </tableViewCell>
  2289. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="K7w-aV-b8T" detailTextLabel="iDF-6E-SQr" style="IBUITableViewCellStyleValue1" id="Evb-58-Ek5">
  2290. <rect key="frame" x="0.0" y="287" width="375" height="44"/>
  2291. <autoresizingMask key="autoresizingMask"/>
  2292. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Evb-58-Ek5" id="IBU-hm-l06">
  2293. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  2294. <autoresizingMask key="autoresizingMask"/>
  2295. <subviews>
  2296. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Group Sound" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="K7w-aV-b8T">
  2297. <rect key="frame" x="16" y="12" width="100.5" height="20.5"/>
  2298. <autoresizingMask key="autoresizingMask"/>
  2299. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2300. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2301. <nil key="highlightedColor"/>
  2302. </label>
  2303. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="iDF-6E-SQr">
  2304. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  2305. <autoresizingMask key="autoresizingMask"/>
  2306. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2307. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2308. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2309. </label>
  2310. </subviews>
  2311. </tableViewCellContentView>
  2312. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  2313. <connections>
  2314. <segue destination="qhR-xH-Gr5" kind="show" identifier="EditPushGroupSound" id="25v-R2-DcL"/>
  2315. </connections>
  2316. </tableViewCell>
  2317. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="tmM-ej-SO5" style="IBUITableViewCellStyleDefault" id="zAU-Tq-9Ko">
  2318. <rect key="frame" x="0.0" y="331" width="375" height="44"/>
  2319. <autoresizingMask key="autoresizingMask"/>
  2320. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="zAU-Tq-9Ko" id="6oB-CX-vx7">
  2321. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2322. <autoresizingMask key="autoresizingMask"/>
  2323. <subviews>
  2324. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Preview" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="tmM-ej-SO5">
  2325. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2326. <autoresizingMask key="autoresizingMask"/>
  2327. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2328. <nil key="textColor"/>
  2329. <nil key="highlightedColor"/>
  2330. </label>
  2331. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="M0O-MD-hOh">
  2332. <rect key="frame" x="163" y="6" width="49" height="31"/>
  2333. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2334. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2335. <connections>
  2336. <action selector="pushDecryptChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="XDh-dA-dN0"/>
  2337. </connections>
  2338. </switch>
  2339. </subviews>
  2340. </tableViewCellContentView>
  2341. <connections>
  2342. <outlet property="accessoryView" destination="M0O-MD-hOh" id="VRS-Hc-ju4"/>
  2343. </connections>
  2344. </tableViewCell>
  2345. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="sDQ-S3-zni" style="IBUITableViewCellStyleDefault" id="r8y-Il-4Pl">
  2346. <rect key="frame" x="0.0" y="375" width="375" height="44"/>
  2347. <autoresizingMask key="autoresizingMask"/>
  2348. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="r8y-Il-4Pl" id="zuI-Cd-rW2">
  2349. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2350. <autoresizingMask key="autoresizingMask"/>
  2351. <subviews>
  2352. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Show Nickname" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="sDQ-S3-zni">
  2353. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2354. <autoresizingMask key="autoresizingMask"/>
  2355. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2356. <nil key="textColor"/>
  2357. <nil key="highlightedColor"/>
  2358. </label>
  2359. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="gId-s3-jsa">
  2360. <rect key="frame" x="163" y="6" width="49" height="31"/>
  2361. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2362. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2363. <connections>
  2364. <action selector="pushShowNicknameChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="6yG-sx-TO7"/>
  2365. </connections>
  2366. </switch>
  2367. </subviews>
  2368. </tableViewCellContentView>
  2369. <connections>
  2370. <outlet property="accessoryView" destination="gId-s3-jsa" id="riT-b5-w7Y"/>
  2371. </connections>
  2372. </tableViewCell>
  2373. </cells>
  2374. </tableViewSection>
  2375. <tableViewSection headerTitle="Threema Call" id="7hB-ZG-6eB">
  2376. <cells>
  2377. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="XLO-ze-uPq" detailTextLabel="IzO-Nl-ekz" style="IBUITableViewCellStyleValue1" id="4HG-pk-T7F">
  2378. <rect key="frame" x="0.0" y="474.5" width="375" height="44"/>
  2379. <autoresizingMask key="autoresizingMask"/>
  2380. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4HG-pk-T7F" id="DIc-AJ-vSR">
  2381. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  2382. <autoresizingMask key="autoresizingMask"/>
  2383. <subviews>
  2384. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="XLO-ze-uPq">
  2385. <rect key="frame" x="16" y="12" width="49" height="20.5"/>
  2386. <autoresizingMask key="autoresizingMask"/>
  2387. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2388. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2389. <nil key="highlightedColor"/>
  2390. </label>
  2391. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="IzO-Nl-ekz">
  2392. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  2393. <autoresizingMask key="autoresizingMask"/>
  2394. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2395. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2396. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2397. </label>
  2398. </subviews>
  2399. </tableViewCellContentView>
  2400. <connections>
  2401. <segue destination="0KV-wo-YRa" kind="show" id="SS8-H8-0rf"/>
  2402. </connections>
  2403. </tableViewCell>
  2404. </cells>
  2405. </tableViewSection>
  2406. <tableViewSection headerTitle="Work-Life balance" id="szt-Qx-ulO">
  2407. <cells>
  2408. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="QSK-AZ-ClW" style="IBUITableViewCellStyleDefault" id="Xm6-gH-MXB">
  2409. <rect key="frame" x="0.0" y="574" width="375" height="44"/>
  2410. <autoresizingMask key="autoresizingMask"/>
  2411. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Xm6-gH-MXB" id="mbQ-vU-Gah">
  2412. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2413. <autoresizingMask key="autoresizingMask"/>
  2414. <subviews>
  2415. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="After-work DND" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="QSK-AZ-ClW">
  2416. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2417. <autoresizingMask key="autoresizingMask"/>
  2418. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2419. <nil key="textColor"/>
  2420. <nil key="highlightedColor"/>
  2421. </label>
  2422. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oqG-if-nwO">
  2423. <rect key="frame" x="163" y="6" width="49" height="31"/>
  2424. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2425. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2426. <connections>
  2427. <action selector="masterDndChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="lnj-rM-o80"/>
  2428. </connections>
  2429. </switch>
  2430. </subviews>
  2431. </tableViewCellContentView>
  2432. <connections>
  2433. <outlet property="accessoryView" destination="oqG-if-nwO" id="Vh9-W9-NhX"/>
  2434. </connections>
  2435. </tableViewCell>
  2436. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="83i-Sz-RiA" detailTextLabel="yCv-CF-FTa" style="IBUITableViewCellStyleValue1" id="174-wB-Vhl">
  2437. <rect key="frame" x="0.0" y="618" width="375" height="44"/>
  2438. <autoresizingMask key="autoresizingMask"/>
  2439. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="174-wB-Vhl" id="eSj-xj-lVW">
  2440. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  2441. <autoresizingMask key="autoresizingMask"/>
  2442. <subviews>
  2443. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Working Days" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="83i-Sz-RiA">
  2444. <rect key="frame" x="16" y="12" width="105" height="20.5"/>
  2445. <autoresizingMask key="autoresizingMask"/>
  2446. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2447. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2448. <nil key="highlightedColor"/>
  2449. </label>
  2450. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="yCv-CF-FTa">
  2451. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  2452. <autoresizingMask key="autoresizingMask"/>
  2453. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2454. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2455. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2456. </label>
  2457. </subviews>
  2458. </tableViewCellContentView>
  2459. <connections>
  2460. <segue destination="TdA-X0-iHo" kind="show" id="t5R-Is-Z5o"/>
  2461. </connections>
  2462. </tableViewCell>
  2463. <tableViewCell tag="1" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="dQF-El-WN5" detailTextLabel="2IJ-eg-1EA" style="IBUITableViewCellStyleValue1" id="HuF-hQ-8Iz">
  2464. <rect key="frame" x="0.0" y="662" width="375" height="44"/>
  2465. <autoresizingMask key="autoresizingMask"/>
  2466. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="HuF-hQ-8Iz" id="ZeI-OJ-D3J">
  2467. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2468. <autoresizingMask key="autoresizingMask"/>
  2469. <subviews>
  2470. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Start" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="dQF-El-WN5">
  2471. <rect key="frame" x="16" y="12" width="37.5" height="20.5"/>
  2472. <autoresizingMask key="autoresizingMask"/>
  2473. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2474. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2475. <nil key="highlightedColor"/>
  2476. </label>
  2477. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2IJ-eg-1EA">
  2478. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  2479. <autoresizingMask key="autoresizingMask"/>
  2480. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2481. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2482. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2483. </label>
  2484. </subviews>
  2485. </tableViewCellContentView>
  2486. </tableViewCell>
  2487. <tableViewCell tag="2" contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="fgB-qj-59D" detailTextLabel="fz9-XE-Oer" style="IBUITableViewCellStyleValue1" id="RMr-l7-KOu">
  2488. <rect key="frame" x="0.0" y="706" width="375" height="44"/>
  2489. <autoresizingMask key="autoresizingMask"/>
  2490. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RMr-l7-KOu" id="JHe-5j-GcI">
  2491. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2492. <autoresizingMask key="autoresizingMask"/>
  2493. <subviews>
  2494. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="End" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="fgB-qj-59D">
  2495. <rect key="frame" x="16" y="12" width="29.5" height="20.5"/>
  2496. <autoresizingMask key="autoresizingMask"/>
  2497. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2498. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2499. <nil key="highlightedColor"/>
  2500. </label>
  2501. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="fz9-XE-Oer">
  2502. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  2503. <autoresizingMask key="autoresizingMask"/>
  2504. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2505. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2506. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2507. </label>
  2508. </subviews>
  2509. </tableViewCellContentView>
  2510. </tableViewCell>
  2511. </cells>
  2512. </tableViewSection>
  2513. </sections>
  2514. <connections>
  2515. <outlet property="dataSource" destination="TrM-Qf-Qx4" id="5tu-bD-uJZ"/>
  2516. <outlet property="delegate" destination="TrM-Qf-Qx4" id="ngk-di-of7"/>
  2517. </connections>
  2518. </tableView>
  2519. <navigationItem key="navigationItem" title="Notifications" largeTitleDisplayMode="never" id="QQx-aC-ygX"/>
  2520. <connections>
  2521. <outlet property="inAppPreviewLabel" destination="TK5-dl-jlh" id="A6o-lC-raK"/>
  2522. <outlet property="inAppPreviewSwitch" destination="rgH-Jx-nPi" id="SNw-EV-lmY"/>
  2523. <outlet property="inAppSoundsLabel" destination="767-fB-vds" id="Rfw-M7-DhY"/>
  2524. <outlet property="inAppSoundsSwitch" destination="Hyu-IV-qZZ" id="yQt-SF-XaN"/>
  2525. <outlet property="inAppVibrateLabel" destination="ecU-zr-KHj" id="V8d-ve-cYA"/>
  2526. <outlet property="inAppVibrateSwitch" destination="deL-tR-mD5" id="vAy-zo-m6l"/>
  2527. <outlet property="masterDndDaysCell" destination="174-wB-Vhl" id="XiL-eO-Xf0"/>
  2528. <outlet property="masterDndDaysLabel" destination="83i-Sz-RiA" id="5lh-0V-e4g"/>
  2529. <outlet property="masterDndDaysValueLabel" destination="yCv-CF-FTa" id="BfX-P8-o8u"/>
  2530. <outlet property="masterDndEndTimeCell" destination="RMr-l7-KOu" id="pBC-SH-ODn"/>
  2531. <outlet property="masterDndEndTimeLabel" destination="fgB-qj-59D" id="EK8-rj-EM1"/>
  2532. <outlet property="masterDndEndTimeValueLabel" destination="fz9-XE-Oer" id="enW-W6-yCM"/>
  2533. <outlet property="masterDndLabel" destination="QSK-AZ-ClW" id="hQ8-ry-tbX"/>
  2534. <outlet property="masterDndStartTimeCell" destination="HuF-hQ-8Iz" id="eRO-SA-NVX"/>
  2535. <outlet property="masterDndStartTimeLabel" destination="dQF-El-WN5" id="a2s-Du-0gL"/>
  2536. <outlet property="masterDndStartTimeValueLabel" destination="2IJ-eg-1EA" id="lT5-AL-L3w"/>
  2537. <outlet property="masterDndSwitch" destination="oqG-if-nwO" id="crs-pN-k2B"/>
  2538. <outlet property="pushDecryptLabel" destination="tmM-ej-SO5" id="XAJ-1K-QYd"/>
  2539. <outlet property="pushDecryptSwitch" destination="M0O-MD-hOh" id="UnS-vt-ZLl"/>
  2540. <outlet property="pushGroupSoundCell" destination="Evb-58-Ek5" id="moE-RE-k3L"/>
  2541. <outlet property="pushGroupSoundLabel" destination="K7w-aV-b8T" id="JLP-n2-En9"/>
  2542. <outlet property="pushGroupSoundValueLabel" destination="iDF-6E-SQr" id="bs8-2H-oxd"/>
  2543. <outlet property="pushPreviewCell" destination="zAU-Tq-9Ko" id="cNC-an-r3O"/>
  2544. <outlet property="pushShowNicknameLabel" destination="sDQ-S3-zni" id="PRP-G9-fMX"/>
  2545. <outlet property="pushShowNicknameSwitch" destination="gId-s3-jsa" id="aI6-lG-Xe6"/>
  2546. <outlet property="pushSoundLabel" destination="Gxz-el-mis" id="o34-6s-3Ks"/>
  2547. <outlet property="pushSoundValueLabel" destination="GCE-65-OPQ" id="gEi-1u-yoC"/>
  2548. <outlet property="voIPSoundLabel" destination="XLO-ze-uPq" id="tqw-iy-idt"/>
  2549. <outlet property="voIPSoundValueLabel" destination="IzO-Nl-ekz" id="c7V-GI-NV7"/>
  2550. </connections>
  2551. </tableViewController>
  2552. <placeholder placeholderIdentifier="IBFirstResponder" id="hsB-HP-3Hy" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2553. </objects>
  2554. <point key="canvasLocation" x="-2298" y="1481"/>
  2555. </scene>
  2556. <!--Push Sound-->
  2557. <scene sceneID="MNi-D0-Ueh">
  2558. <objects>
  2559. <tableViewController id="qv3-v9-aLb" customClass="PushSoundViewController" sceneMemberID="viewController">
  2560. <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="KiM-AM-MaN">
  2561. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2562. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2563. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2564. <prototypes>
  2565. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="qT1-va-5Fb" style="IBUITableViewCellStyleDefault" id="Syl-BH-Bl7">
  2566. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  2567. <autoresizingMask key="autoresizingMask"/>
  2568. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Syl-BH-Bl7" id="zN3-6Z-dmP">
  2569. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2570. <autoresizingMask key="autoresizingMask"/>
  2571. <subviews>
  2572. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="qT1-va-5Fb">
  2573. <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
  2574. <autoresizingMask key="autoresizingMask"/>
  2575. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2576. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2577. <nil key="highlightedColor"/>
  2578. </label>
  2579. </subviews>
  2580. </tableViewCellContentView>
  2581. </tableViewCell>
  2582. </prototypes>
  2583. <connections>
  2584. <outlet property="dataSource" destination="qv3-v9-aLb" id="8hx-EU-VbC"/>
  2585. <outlet property="delegate" destination="qv3-v9-aLb" id="euw-jZ-Ofx"/>
  2586. </connections>
  2587. </tableView>
  2588. <navigationItem key="navigationItem" title="Push Sound" largeTitleDisplayMode="never" id="wii-ly-S2S"/>
  2589. </tableViewController>
  2590. <placeholder placeholderIdentifier="IBFirstResponder" id="FTe-3Q-bb2" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2591. </objects>
  2592. <point key="canvasLocation" x="231" y="755"/>
  2593. </scene>
  2594. <!--Threema Call Sound-->
  2595. <scene sceneID="tI8-CU-KSs">
  2596. <objects>
  2597. <tableViewController id="0KV-wo-YRa" userLabel="Threema Call Sound" customClass="VoIPSoundViewController" sceneMemberID="viewController">
  2598. <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="14V-py-ZFL">
  2599. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2600. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2601. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2602. <prototypes>
  2603. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="B1c-wM-V4d" style="IBUITableViewCellStyleDefault" id="KKV-bu-QN2">
  2604. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  2605. <autoresizingMask key="autoresizingMask"/>
  2606. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KKV-bu-QN2" id="OIK-cp-OR8">
  2607. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2608. <autoresizingMask key="autoresizingMask"/>
  2609. <subviews>
  2610. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="B1c-wM-V4d">
  2611. <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
  2612. <autoresizingMask key="autoresizingMask"/>
  2613. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2614. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2615. <nil key="highlightedColor"/>
  2616. </label>
  2617. </subviews>
  2618. </tableViewCellContentView>
  2619. </tableViewCell>
  2620. </prototypes>
  2621. <connections>
  2622. <outlet property="dataSource" destination="0KV-wo-YRa" id="HIe-7Z-TU4"/>
  2623. <outlet property="delegate" destination="0KV-wo-YRa" id="AFq-8D-fdO"/>
  2624. </connections>
  2625. </tableView>
  2626. <navigationItem key="navigationItem" title="Threema Call Sound" largeTitleDisplayMode="never" id="yts-q5-Yzc"/>
  2627. </tableViewController>
  2628. <placeholder placeholderIdentifier="IBFirstResponder" id="q8N-Il-hHQ" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2629. </objects>
  2630. <point key="canvasLocation" x="230" y="1624"/>
  2631. </scene>
  2632. <!--MasterDndDaysViewController-->
  2633. <scene sceneID="cto-Oi-7S1">
  2634. <objects>
  2635. <tableViewController id="TdA-X0-iHo" userLabel="MasterDndDaysViewController" customClass="MasterDndDaysViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2636. <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="4D9-4W-vFT">
  2637. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2638. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2639. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2640. <prototypes>
  2641. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MasterDndDaysCell" textLabel="upe-NW-h86" style="IBUITableViewCellStyleDefault" id="P8e-5U-M1X">
  2642. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  2643. <autoresizingMask key="autoresizingMask"/>
  2644. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="P8e-5U-M1X" id="fFZ-Wl-g0E">
  2645. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2646. <autoresizingMask key="autoresizingMask"/>
  2647. <subviews>
  2648. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Monday" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="upe-NW-h86">
  2649. <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
  2650. <autoresizingMask key="autoresizingMask"/>
  2651. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2652. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2653. <nil key="highlightedColor"/>
  2654. </label>
  2655. </subviews>
  2656. </tableViewCellContentView>
  2657. </tableViewCell>
  2658. </prototypes>
  2659. <connections>
  2660. <outlet property="dataSource" destination="TdA-X0-iHo" id="d1a-sf-grt"/>
  2661. <outlet property="delegate" destination="TdA-X0-iHo" id="OL1-fB-LJo"/>
  2662. </connections>
  2663. </tableView>
  2664. <navigationItem key="navigationItem" title="Working Days" largeTitleDisplayMode="never" id="Y3i-h0-x0z"/>
  2665. </tableViewController>
  2666. <placeholder placeholderIdentifier="IBFirstResponder" id="arC-9P-3Xx" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2667. </objects>
  2668. <point key="canvasLocation" x="-660" y="2006"/>
  2669. </scene>
  2670. <!--Sync Exclusion List View Controller-->
  2671. <scene sceneID="B0G-4r-CoG">
  2672. <objects>
  2673. <tableViewController id="ZhF-RE-lv8" customClass="SyncExclusionListViewController" sceneMemberID="viewController">
  2674. <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="LmX-On-jac">
  2675. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2676. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2677. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2678. <prototypes>
  2679. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExclusionCell" textLabel="PX2-6n-WIX" style="IBUITableViewCellStyleDefault" id="bcf-cN-lKF">
  2680. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  2681. <autoresizingMask key="autoresizingMask"/>
  2682. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bcf-cN-lKF" id="Sin-mw-mc4">
  2683. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2684. <autoresizingMask key="autoresizingMask"/>
  2685. <subviews>
  2686. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="PX2-6n-WIX">
  2687. <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
  2688. <autoresizingMask key="autoresizingMask"/>
  2689. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2690. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2691. <nil key="highlightedColor"/>
  2692. </label>
  2693. </subviews>
  2694. </tableViewCellContentView>
  2695. </tableViewCell>
  2696. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" reuseIdentifier="AddCell" textLabel="Sow-GN-gms" imageView="OlZ-Su-kjW" style="IBUITableViewCellStyleDefault" id="LfY-Bf-ahR">
  2697. <rect key="frame" x="0.0" y="99" width="375" height="43.5"/>
  2698. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2699. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LfY-Bf-ahR" id="iHg-nZ-ZKC">
  2700. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2701. <autoresizingMask key="autoresizingMask"/>
  2702. <subviews>
  2703. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Add exclusion..." textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Sow-GN-gms">
  2704. <rect key="frame" x="53" y="0.0" width="306" height="43.5"/>
  2705. <autoresizingMask key="autoresizingMask"/>
  2706. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2707. <nil key="textColor"/>
  2708. <nil key="highlightedColor"/>
  2709. </label>
  2710. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="AddMember" id="OlZ-Su-kjW">
  2711. <rect key="frame" x="16" y="10.5" width="22" height="22"/>
  2712. <autoresizingMask key="autoresizingMask"/>
  2713. </imageView>
  2714. </subviews>
  2715. </tableViewCellContentView>
  2716. </tableViewCell>
  2717. </prototypes>
  2718. <connections>
  2719. <outlet property="dataSource" destination="ZhF-RE-lv8" id="Yn0-gS-Z7H"/>
  2720. <outlet property="delegate" destination="ZhF-RE-lv8" id="UZk-tv-Sxa"/>
  2721. </connections>
  2722. </tableView>
  2723. </tableViewController>
  2724. <placeholder placeholderIdentifier="IBFirstResponder" id="PG0-Ho-tWp" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2725. </objects>
  2726. <point key="canvasLocation" x="-2026" y="-125"/>
  2727. </scene>
  2728. <!--Older than-->
  2729. <scene sceneID="NsK-Jg-HXD">
  2730. <objects>
  2731. <tableViewController id="Hzc-Lf-ZjH" customClass="StorageManagementOlderThanViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2732. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="18" sectionFooterHeight="18" id="6vw-Nb-ji7">
  2733. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2734. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2735. <color key="backgroundColor" systemColor="systemBackgroundColor"/>
  2736. <prototypes>
  2737. <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="OlderThanCell" id="h6f-uo-76r">
  2738. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  2739. <autoresizingMask key="autoresizingMask"/>
  2740. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="h6f-uo-76r" id="wor-1e-ge6">
  2741. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2742. <autoresizingMask key="autoresizingMask"/>
  2743. </tableViewCellContentView>
  2744. <connections>
  2745. <segue destination="Aek-B3-BlA" kind="unwind" unwindAction="refreshOlderThanIndex:" id="Qan-g2-Wzy"/>
  2746. </connections>
  2747. </tableViewCell>
  2748. </prototypes>
  2749. <connections>
  2750. <outlet property="dataSource" destination="Hzc-Lf-ZjH" id="bBw-Xj-cfB"/>
  2751. <outlet property="delegate" destination="Hzc-Lf-ZjH" id="KzK-Z2-jvC"/>
  2752. </connections>
  2753. </tableView>
  2754. <navigationItem key="navigationItem" title="Older than" largeTitleDisplayMode="never" id="r6W-Ij-j5O"/>
  2755. </tableViewController>
  2756. <placeholder placeholderIdentifier="IBFirstResponder" id="mko-CC-f3Z" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
  2757. <exit id="Aek-B3-BlA" userLabel="Exit" sceneMemberID="exit"/>
  2758. </objects>
  2759. <point key="canvasLocation" x="-1825" y="4093"/>
  2760. </scene>
  2761. <!--Video Quality-->
  2762. <scene sceneID="rmd-n4-qVA">
  2763. <objects>
  2764. <tableViewController id="kFh-T4-aJO" customClass="VideoQualityViewController" sceneMemberID="viewController">
  2765. <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="NVV-GB-y5B">
  2766. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2767. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2768. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2769. <prototypes>
  2770. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="checkmark" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="VideoQualityCell" textLabel="JeY-ke-mv9" detailTextLabel="F51-gk-IFX" style="IBUITableViewCellStyleSubtitle" id="9eM-nU-uB5">
  2771. <rect key="frame" x="0.0" y="55.5" width="375" height="57.5"/>
  2772. <autoresizingMask key="autoresizingMask"/>
  2773. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9eM-nU-uB5" id="R6U-Jn-OGK">
  2774. <rect key="frame" x="0.0" y="0.0" width="335" height="57.5"/>
  2775. <autoresizingMask key="autoresizingMask"/>
  2776. <subviews>
  2777. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="JeY-ke-mv9">
  2778. <rect key="frame" x="16" y="9" width="33" height="20.5"/>
  2779. <autoresizingMask key="autoresizingMask"/>
  2780. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2781. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2782. <nil key="highlightedColor"/>
  2783. </label>
  2784. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Subtitle" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="F51-gk-IFX">
  2785. <rect key="frame" x="16" y="32.5" width="44" height="14.5"/>
  2786. <autoresizingMask key="autoresizingMask"/>
  2787. <fontDescription key="fontDescription" style="UICTFontTextStyleCaption1"/>
  2788. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2789. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2790. </label>
  2791. </subviews>
  2792. </tableViewCellContentView>
  2793. </tableViewCell>
  2794. </prototypes>
  2795. <sections/>
  2796. <connections>
  2797. <outlet property="dataSource" destination="kFh-T4-aJO" id="cp8-B7-L3h"/>
  2798. <outlet property="delegate" destination="kFh-T4-aJO" id="Y3h-Ji-f69"/>
  2799. </connections>
  2800. </tableView>
  2801. <navigationItem key="navigationItem" title="Video Quality" largeTitleDisplayMode="never" id="Oji-5c-VQi"/>
  2802. </tableViewController>
  2803. <placeholder placeholderIdentifier="IBFirstResponder" id="aRb-vW-izE" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2804. </objects>
  2805. <point key="canvasLocation" x="-833" y="3884"/>
  2806. </scene>
  2807. <!--Video Quality-->
  2808. <scene sceneID="3Gv-3n-OcY">
  2809. <objects>
  2810. <tableViewController id="ua2-6d-8w5" customClass="ThreemaVideoCallQualityViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  2811. <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="PrV-IU-wcd">
  2812. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2813. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2814. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2815. <prototypes>
  2816. <tableViewCell contentMode="scaleToFill" restorationIdentifier="ThreemaVideoCallQualitySettingCell" selectionStyle="blue" accessoryType="checkmark" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ThreemaVideoCallQualitySettingCell" textLabel="2EM-QH-X8q" detailTextLabel="vhl-XQ-YFx" style="IBUITableViewCellStyleSubtitle" id="95j-qQ-Yv1">
  2817. <rect key="frame" x="0.0" y="55.5" width="375" height="57.5"/>
  2818. <autoresizingMask key="autoresizingMask"/>
  2819. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="95j-qQ-Yv1" id="PL1-ze-kc7">
  2820. <rect key="frame" x="0.0" y="0.0" width="335" height="57.5"/>
  2821. <autoresizingMask key="autoresizingMask"/>
  2822. <subviews>
  2823. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2EM-QH-X8q">
  2824. <rect key="frame" x="16" y="9" width="33" height="20.5"/>
  2825. <autoresizingMask key="autoresizingMask"/>
  2826. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2827. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2828. <nil key="highlightedColor"/>
  2829. </label>
  2830. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Subtitle" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="vhl-XQ-YFx">
  2831. <rect key="frame" x="16" y="32.5" width="44" height="14.5"/>
  2832. <autoresizingMask key="autoresizingMask"/>
  2833. <fontDescription key="fontDescription" style="UICTFontTextStyleCaption1"/>
  2834. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2835. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2836. </label>
  2837. </subviews>
  2838. </tableViewCellContentView>
  2839. </tableViewCell>
  2840. </prototypes>
  2841. <sections/>
  2842. <connections>
  2843. <outlet property="dataSource" destination="ua2-6d-8w5" id="qIO-pu-lV4"/>
  2844. <outlet property="delegate" destination="ua2-6d-8w5" id="hxz-Q1-qns"/>
  2845. </connections>
  2846. </tableView>
  2847. <navigationItem key="navigationItem" title="Video Quality" largeTitleDisplayMode="never" id="xdv-oq-YmZ"/>
  2848. </tableViewController>
  2849. <placeholder placeholderIdentifier="IBFirstResponder" id="BP6-bF-e3G" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2850. </objects>
  2851. <point key="canvasLocation" x="-4934" y="377"/>
  2852. </scene>
  2853. <!--Advanced-->
  2854. <scene sceneID="CbY-lX-26Y">
  2855. <objects>
  2856. <tableViewController id="jNb-wC-joh" customClass="AdvancedSettingsViewController" sceneMemberID="viewController">
  2857. <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="IHO-fW-RZ8">
  2858. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  2859. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2860. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2861. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  2862. <sections>
  2863. <tableViewSection headerTitle="Networking" footerTitle="" id="ukQ-aK-GUe">
  2864. <cells>
  2865. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="jKP-qh-haK" style="IBUITableViewCellStyleDefault" id="CQK-hJ-soJ">
  2866. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2867. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  2868. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CQK-hJ-soJ" id="lTk-Vx-Td5">
  2869. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2870. <autoresizingMask key="autoresizingMask"/>
  2871. <subviews>
  2872. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="IPv6" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="jKP-qh-haK">
  2873. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2874. <autoresizingMask key="autoresizingMask"/>
  2875. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2876. <nil key="textColor"/>
  2877. <nil key="highlightedColor"/>
  2878. </label>
  2879. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="COU-0n-jpD">
  2880. <rect key="frame" x="162" y="6" width="50" height="31"/>
  2881. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2882. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2883. <connections>
  2884. <action selector="enableIPv6Changed:" destination="jNb-wC-joh" eventType="valueChanged" id="Iws-On-Zoj"/>
  2885. </connections>
  2886. </switch>
  2887. </subviews>
  2888. </tableViewCellContentView>
  2889. <connections>
  2890. <outlet property="accessoryView" destination="COU-0n-jpD" id="bgh-Jr-omO"/>
  2891. </connections>
  2892. </tableViewCell>
  2893. </cells>
  2894. </tableViewSection>
  2895. <tableViewSection headerTitle="Sensor" footerTitle="" id="N0M-ec-m5Y">
  2896. <cells>
  2897. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="BK0-LJ-WwY" style="IBUITableViewCellStyleDefault" id="TMu-aO-hpW">
  2898. <rect key="frame" x="0.0" y="167" width="375" height="44"/>
  2899. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  2900. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="TMu-aO-hpW" id="yNi-ks-Uld">
  2901. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2902. <autoresizingMask key="autoresizingMask"/>
  2903. <subviews>
  2904. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Proximity monitoring" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="BK0-LJ-WwY">
  2905. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2906. <autoresizingMask key="autoresizingMask"/>
  2907. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2908. <nil key="textColor"/>
  2909. <nil key="highlightedColor"/>
  2910. </label>
  2911. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4io-Vw-v9j">
  2912. <rect key="frame" x="162" y="6" width="50" height="31"/>
  2913. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2914. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2915. <connections>
  2916. <action selector="proximityMonitoringChanged:" destination="jNb-wC-joh" eventType="valueChanged" id="Q3C-WJ-ZVI"/>
  2917. </connections>
  2918. </switch>
  2919. </subviews>
  2920. </tableViewCellContentView>
  2921. <connections>
  2922. <outlet property="accessoryView" destination="4io-Vw-v9j" id="XBf-UT-byv"/>
  2923. </connections>
  2924. </tableViewCell>
  2925. </cells>
  2926. </tableViewSection>
  2927. <tableViewSection headerTitle="Validation logging" id="VzU-Hf-fg5">
  2928. <cells>
  2929. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="WeM-6s-Xpj" style="IBUITableViewCellStyleDefault" id="8Tg-MJ-eWg">
  2930. <rect key="frame" x="0.0" y="271" width="375" height="44"/>
  2931. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  2932. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="8Tg-MJ-eWg" id="oXE-8Z-R10">
  2933. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2934. <autoresizingMask key="autoresizingMask"/>
  2935. <subviews>
  2936. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Validation Logging" textAlignment="natural" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="WeM-6s-Xpj">
  2937. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2938. <autoresizingMask key="autoresizingMask"/>
  2939. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2940. <nil key="textColor"/>
  2941. <nil key="highlightedColor"/>
  2942. </label>
  2943. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="w73-Gv-QU8">
  2944. <rect key="frame" x="162" y="6" width="50" height="31"/>
  2945. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2946. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2947. <connections>
  2948. <action selector="validationLoggingChanged:" destination="jNb-wC-joh" eventType="valueChanged" id="ISc-1o-EWW"/>
  2949. </connections>
  2950. </switch>
  2951. </subviews>
  2952. </tableViewCellContentView>
  2953. <connections>
  2954. <outlet property="accessoryView" destination="w73-Gv-QU8" id="HLf-da-Nqf"/>
  2955. </connections>
  2956. </tableViewCell>
  2957. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="k9C-Wp-8hl" detailTextLabel="67x-OC-XxU" style="IBUITableViewCellStyleValue1" id="LNI-F0-5pZ">
  2958. <rect key="frame" x="0.0" y="315" width="375" height="44"/>
  2959. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2960. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LNI-F0-5pZ" id="Rva-kc-OPd">
  2961. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2962. <autoresizingMask key="autoresizingMask"/>
  2963. <subviews>
  2964. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Log Size" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="k9C-Wp-8hl">
  2965. <rect key="frame" x="16" y="12" width="65" height="20.5"/>
  2966. <autoresizingMask key="autoresizingMask"/>
  2967. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2968. <nil key="highlightedColor"/>
  2969. </label>
  2970. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="0 KB" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="67x-OC-XxU">
  2971. <rect key="frame" x="322.5" y="12" width="36.5" height="20.5"/>
  2972. <autoresizingMask key="autoresizingMask"/>
  2973. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2974. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2975. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2976. </label>
  2977. </subviews>
  2978. </tableViewCellContentView>
  2979. </tableViewCell>
  2980. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="m9f-E9-TK7" style="IBUITableViewCellStyleDefault" id="H4J-YE-Fgg">
  2981. <rect key="frame" x="0.0" y="359" width="375" height="44"/>
  2982. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  2983. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="H4J-YE-Fgg" id="NDc-wF-6pL">
  2984. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  2985. <autoresizingMask key="autoresizingMask"/>
  2986. <subviews>
  2987. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Email Log" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="m9f-E9-TK7">
  2988. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  2989. <autoresizingMask key="autoresizingMask"/>
  2990. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  2991. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2992. <nil key="highlightedColor"/>
  2993. </label>
  2994. </subviews>
  2995. </tableViewCellContentView>
  2996. <accessibility key="accessibilityConfiguration">
  2997. <accessibilityTraits key="traits" button="YES"/>
  2998. </accessibility>
  2999. </tableViewCell>
  3000. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="KvG-gM-I5I" style="IBUITableViewCellStyleDefault" id="0ok-yW-hpY">
  3001. <rect key="frame" x="0.0" y="403" width="375" height="44"/>
  3002. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  3003. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="0ok-yW-hpY" id="nuy-RZ-u3R">
  3004. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3005. <autoresizingMask key="autoresizingMask"/>
  3006. <subviews>
  3007. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Clear Log" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="KvG-gM-I5I">
  3008. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  3009. <autoresizingMask key="autoresizingMask"/>
  3010. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3011. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3012. <nil key="highlightedColor"/>
  3013. </label>
  3014. </subviews>
  3015. </tableViewCellContentView>
  3016. <accessibility key="accessibilityConfiguration">
  3017. <accessibilityTraits key="traits" button="YES"/>
  3018. </accessibility>
  3019. </tableViewCell>
  3020. </cells>
  3021. </tableViewSection>
  3022. <tableViewSection headerTitle="" id="EbJ-z9-VNn" userLabel="Sentry">
  3023. <cells>
  3024. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="Nyx-m0-yFD" detailTextLabel="RP5-V9-cLk" style="IBUITableViewCellStyleValue1" id="6EQ-oY-luY">
  3025. <rect key="frame" x="0.0" y="486.5" width="375" height="44"/>
  3026. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3027. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6EQ-oY-luY" id="jR7-zz-3iV">
  3028. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3029. <autoresizingMask key="autoresizingMask"/>
  3030. <subviews>
  3031. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Sentry" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Nyx-m0-yFD">
  3032. <rect key="frame" x="16" y="12" width="50" height="20.5"/>
  3033. <autoresizingMask key="autoresizingMask"/>
  3034. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3035. <nil key="textColor"/>
  3036. <nil key="highlightedColor"/>
  3037. </label>
  3038. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="RP5-V9-cLk" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
  3039. <rect key="frame" x="315" y="12" width="44" height="20.5"/>
  3040. <autoresizingMask key="autoresizingMask"/>
  3041. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3042. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3043. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3044. </label>
  3045. </subviews>
  3046. </tableViewCellContentView>
  3047. </tableViewCell>
  3048. </cells>
  3049. </tableViewSection>
  3050. <tableViewSection headerTitle="" id="TnV-WA-jSe" userLabel="WebRTC Diagnostics">
  3051. <cells>
  3052. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="eN8-vV-OIw" style="IBUITableViewCellStyleDefault" id="0uO-n4-M3U">
  3053. <rect key="frame" x="0.0" y="570" width="375" height="44"/>
  3054. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3055. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="0uO-n4-M3U" id="GKA-Mk-iTS">
  3056. <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
  3057. <autoresizingMask key="autoresizingMask"/>
  3058. <subviews>
  3059. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="WebRTC Diagnostics" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="eN8-vV-OIw">
  3060. <rect key="frame" x="16" y="0.0" width="324" height="44"/>
  3061. <autoresizingMask key="autoresizingMask"/>
  3062. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3063. <nil key="textColor"/>
  3064. <nil key="highlightedColor"/>
  3065. </label>
  3066. </subviews>
  3067. </tableViewCellContentView>
  3068. <connections>
  3069. <segue destination="v7U-eW-BRI" kind="show" id="cH2-dF-NeJ"/>
  3070. </connections>
  3071. </tableViewCell>
  3072. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="fKv-Ae-5f0" style="IBUITableViewCellStyleDefault" id="mf1-cU-s3g">
  3073. <rect key="frame" x="0.0" y="614" width="375" height="44"/>
  3074. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  3075. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="mf1-cU-s3g" id="AH9-6n-gT8">
  3076. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  3077. <autoresizingMask key="autoresizingMask"/>
  3078. <subviews>
  3079. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Flush Message Queue" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="fKv-Ae-5f0">
  3080. <rect key="frame" x="16" y="0.0" width="343" height="44"/>
  3081. <autoresizingMask key="autoresizingMask"/>
  3082. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3083. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3084. <nil key="highlightedColor"/>
  3085. </label>
  3086. </subviews>
  3087. </tableViewCellContentView>
  3088. <accessibility key="accessibilityConfiguration">
  3089. <accessibilityTraits key="traits" button="YES"/>
  3090. </accessibility>
  3091. </tableViewCell>
  3092. </cells>
  3093. </tableViewSection>
  3094. </sections>
  3095. <connections>
  3096. <outlet property="dataSource" destination="jNb-wC-joh" id="gH1-aZ-nIW"/>
  3097. <outlet property="delegate" destination="jNb-wC-joh" id="9zo-Yb-ErE"/>
  3098. </connections>
  3099. </tableView>
  3100. <navigationItem key="navigationItem" title="Advanced" largeTitleDisplayMode="never" id="UsC-dS-qae"/>
  3101. <connections>
  3102. <outlet property="enableIPv6Switch" destination="COU-0n-jpD" id="fVv-6e-hcE"/>
  3103. <outlet property="flushMessageQueueCell" destination="mf1-cU-s3g" id="Zfv-PS-2kh"/>
  3104. <outlet property="logSizeLabel" destination="67x-OC-XxU" id="Der-o5-Onk"/>
  3105. <outlet property="proximityMonitoringSwitch" destination="4io-Vw-v9j" id="AhK-1R-Kab"/>
  3106. <outlet property="sentryAppDeviceLabel" destination="RP5-V9-cLk" id="vXB-u6-CQg"/>
  3107. <outlet property="validationLoggingSwitch" destination="w73-Gv-QU8" id="Ufy-Dn-Jlp"/>
  3108. </connections>
  3109. </tableViewController>
  3110. <placeholder placeholderIdentifier="IBFirstResponder" id="kcE-wn-ApW" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3111. </objects>
  3112. <point key="canvasLocation" x="-3305" y="3660"/>
  3113. </scene>
  3114. <!--CallDiagnostic-->
  3115. <scene sceneID="Sxt-HM-5pA">
  3116. <objects>
  3117. <viewControllerPlaceholder storyboardName="CallDiagnostic" id="v7U-eW-BRI" sceneMemberID="viewController">
  3118. <navigationItem key="navigationItem" largeTitleDisplayMode="never" id="TIS-ZF-YlO"/>
  3119. </viewControllerPlaceholder>
  3120. <placeholder placeholderIdentifier="IBFirstResponder" id="CF7-ml-t3P" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3121. </objects>
  3122. <point key="canvasLocation" x="-3307" y="4112"/>
  3123. </scene>
  3124. <!--Push Group Sound-->
  3125. <scene sceneID="C7y-oi-wiZ">
  3126. <objects>
  3127. <tableViewController id="qhR-xH-Gr5" customClass="PushSoundViewController" sceneMemberID="viewController">
  3128. <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="uIT-S0-TDC">
  3129. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  3130. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3131. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3132. <prototypes>
  3133. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="9WQ-EZ-toz" style="IBUITableViewCellStyleDefault" id="Epl-jd-B9C">
  3134. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  3135. <autoresizingMask key="autoresizingMask"/>
  3136. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Epl-jd-B9C" id="1LQ-CC-u11">
  3137. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3138. <autoresizingMask key="autoresizingMask"/>
  3139. <subviews>
  3140. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="9WQ-EZ-toz">
  3141. <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
  3142. <autoresizingMask key="autoresizingMask"/>
  3143. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3144. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3145. <nil key="highlightedColor"/>
  3146. </label>
  3147. </subviews>
  3148. </tableViewCellContentView>
  3149. </tableViewCell>
  3150. </prototypes>
  3151. <connections>
  3152. <outlet property="dataSource" destination="qhR-xH-Gr5" id="7sV-Nn-eH6"/>
  3153. <outlet property="delegate" destination="qhR-xH-Gr5" id="9n8-Ap-ewf"/>
  3154. </connections>
  3155. </tableView>
  3156. <navigationItem key="navigationItem" title="Push Group Sound" largeTitleDisplayMode="never" id="ezY-mc-1PI"/>
  3157. </tableViewController>
  3158. <placeholder placeholderIdentifier="IBFirstResponder" id="JLp-rw-eCb" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3159. </objects>
  3160. <point key="canvasLocation" x="921" y="1123"/>
  3161. </scene>
  3162. <!--Display Order-->
  3163. <scene sceneID="47c-9O-gE2">
  3164. <objects>
  3165. <tableViewController id="gvW-Vv-w9b" customClass="DisplayOrderTableViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
  3166. <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="DlU-8Y-yGn">
  3167. <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
  3168. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3169. <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3170. <prototypes>
  3171. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="DisplayOrderCell" textLabel="L3v-Ts-9T0" style="IBUITableViewCellStyleDefault" id="kHr-Bm-QDk">
  3172. <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
  3173. <autoresizingMask key="autoresizingMask"/>
  3174. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="kHr-Bm-QDk" id="JSf-4j-m1k">
  3175. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3176. <autoresizingMask key="autoresizingMask"/>
  3177. <subviews>
  3178. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="First, last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="L3v-Ts-9T0">
  3179. <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
  3180. <autoresizingMask key="autoresizingMask"/>
  3181. <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
  3182. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3183. <nil key="highlightedColor"/>
  3184. </label>
  3185. </subviews>
  3186. </tableViewCellContentView>
  3187. </tableViewCell>
  3188. </prototypes>
  3189. <connections>
  3190. <outlet property="dataSource" destination="gvW-Vv-w9b" id="qM6-xC-F55"/>
  3191. <outlet property="delegate" destination="gvW-Vv-w9b" id="Mi6-s9-JUC"/>
  3192. </connections>
  3193. </tableView>
  3194. <navigationItem key="navigationItem" title="Display Order" largeTitleDisplayMode="never" id="DWN-sS-DbE"/>
  3195. </tableViewController>
  3196. <placeholder placeholderIdentifier="IBFirstResponder" id="0rI-dz-5Tb" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3197. </objects>
  3198. <point key="canvasLocation" x="-1135.2" y="671.51424287856082"/>
  3199. </scene>
  3200. </scenes>
  3201. <designables>
  3202. <designable name="ZwR-ey-2Tv">
  3203. <size key="intrinsicContentSize" width="133.5" height="38"/>
  3204. </designable>
  3205. </designables>
  3206. <inferredMetricsTieBreakers>
  3207. <segue reference="RkS-Fm-UCf"/>
  3208. </inferredMetricsTieBreakers>
  3209. <resources>
  3210. <image name="AddMember" width="22" height="22"/>
  3211. <image name="AdvancedLight" width="26" height="26"/>
  3212. <image name="AppearanceLight" width="26" height="26"/>
  3213. <image name="ChatLight" width="26" height="26"/>
  3214. <image name="Dark-Theme" width="83" height="180"/>
  3215. <image name="DevModeLight" width="26" height="26"/>
  3216. <image name="InviteAFriendLight" width="26" height="26"/>
  3217. <image name="LicenseLight" width="26" height="26"/>
  3218. <image name="Light-Theme" width="83" height="180"/>
  3219. <image name="MediaLight" width="26" height="26"/>
  3220. <image name="NotificationsLight" width="27" height="26"/>
  3221. <image name="PasscodeLockLight" width="26" height="26"/>
  3222. <image name="PrivacyLight" width="26" height="26"/>
  3223. <image name="PrivacyPolicyLight" width="26" height="26"/>
  3224. <image name="QRScan" width="22" height="22"/>
  3225. <image name="StorageManagementLight" width="26" height="26"/>
  3226. <image name="SupportLight" width="26" height="26"/>
  3227. <image name="System-Theme" width="83" height="180"/>
  3228. <image name="ThreemaCallsSettingsLight" width="26" height="26"/>
  3229. <image name="ThreemaChannelLight" width="26" height="26"/>
  3230. <image name="ThreemaWebLight" width="26" height="26"/>
  3231. <image name="ThreemaWorkSettingsLight" width="26" height="26"/>
  3232. <image name="WallpaperDefault.png" width="100" height="150"/>
  3233. <systemColor name="groupTableViewBackgroundColor">
  3234. <color red="0.94901960784313721" green="0.94901960784313721" blue="0.96862745098039216" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3235. </systemColor>
  3236. <systemColor name="systemBackgroundColor">
  3237. <color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
  3238. </systemColor>
  3239. </resources>
  3240. </document>