123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240 |
- <?xml version="1.0" encoding="UTF-8"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="17700" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="2PC-CR-xd5">
- <device id="retina4_7" orientation="portrait" appearance="light"/>
- <dependencies>
- <deployment identifier="iOS"/>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="17703"/>
- <capability name="Safe area layout guides" minToolsVersion="9.0"/>
- <capability name="System colors in document resources" minToolsVersion="11.0"/>
- <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
- </dependencies>
- <scenes>
- <!--Threema Web-->
- <scene sceneID="pzW-sg-zxD">
- <objects>
- <tableViewController id="rgi-Np-f1f" userLabel="Threema Web" customClass="ThreemaWebViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" systemColor="groupTableViewBackgroundColor"/>
- <prototypes>
- <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">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="KdC-g9-aTX" id="CJM-m5-hDl">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="PgU-hr-nkc">
- <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" id="ET0-bQ-sA6">
- <rect key="frame" x="16" y="17" width="40" height="40"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="kAV-mR-wye">
- <rect key="frame" x="163" y="21.5" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <connections>
- <action selector="threemaWebSwitchChanged:" destination="rgi-Np-f1f" eventType="valueChanged" id="XVV-yr-5WX"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="kAV-mR-wye" id="cWn-oB-U8n"/>
- <outlet property="titleLabel" destination="PgU-hr-nkc" id="D0H-uv-CDA"/>
- <outlet property="webClientSwitch" destination="kAV-mR-wye" id="l5f-bh-vE8"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="99" width="375" height="84"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="izl-E6-WZs" id="cKH-XY-Tv6">
- <rect key="frame" x="0.0" y="0.0" width="375" height="84"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="kjV-ez-MfM">
- <rect key="frame" x="16" y="22" width="40" height="40"/>
- <constraints>
- <constraint firstAttribute="width" constant="40" id="0mj-Sg-m2F"/>
- <constraint firstAttribute="height" constant="40" id="75w-4d-7Tz"/>
- </constraints>
- </imageView>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="XCX-xB-bdI">
- <rect key="frame" x="26" y="32" width="20" height="20"/>
- </activityIndicatorView>
- <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">
- <rect key="frame" x="72" y="11" width="287" height="21"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleHeadline"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <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">
- <rect key="frame" x="72" y="35" width="287" height="38"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="kjV-ez-MfM" firstAttribute="leading" secondItem="cKH-XY-Tv6" secondAttribute="leadingMargin" id="0gr-AW-2n1"/>
- <constraint firstItem="XCX-xB-bdI" firstAttribute="centerX" secondItem="kjV-ez-MfM" secondAttribute="centerX" id="1Xd-I3-2XM"/>
- <constraint firstItem="ZwR-ey-2Tv" firstAttribute="leading" secondItem="kjV-ez-MfM" secondAttribute="trailing" constant="16" id="F5r-EM-ccK"/>
- <constraint firstItem="jGx-48-XMs" firstAttribute="top" secondItem="cKH-XY-Tv6" secondAttribute="topMargin" id="IXc-uZ-5im"/>
- <constraint firstAttribute="bottomMargin" secondItem="ZwR-ey-2Tv" secondAttribute="bottom" id="JRb-Cs-ecI"/>
- <constraint firstItem="kjV-ez-MfM" firstAttribute="top" secondItem="cKH-XY-Tv6" secondAttribute="topMargin" constant="11" id="O48-p0-gZ2"/>
- <constraint firstItem="jGx-48-XMs" firstAttribute="leading" secondItem="kjV-ez-MfM" secondAttribute="trailing" constant="16" id="Oa1-AF-cbK"/>
- <constraint firstAttribute="trailingMargin" secondItem="ZwR-ey-2Tv" secondAttribute="trailing" id="Pf7-JB-3bU"/>
- <constraint firstAttribute="bottomMargin" secondItem="kjV-ez-MfM" secondAttribute="bottom" constant="11" id="RRh-u3-ECV"/>
- <constraint firstItem="XCX-xB-bdI" firstAttribute="centerY" secondItem="kjV-ez-MfM" secondAttribute="centerY" id="cGB-wj-OYe"/>
- <constraint firstItem="jGx-48-XMs" firstAttribute="trailing" secondItem="cKH-XY-Tv6" secondAttribute="trailingMargin" id="dKS-rv-3wu"/>
- <constraint firstItem="ZwR-ey-2Tv" firstAttribute="top" secondItem="jGx-48-XMs" secondAttribute="bottom" constant="3" id="jji-SZ-EC5"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <outlet property="browserIcon" destination="kjV-ez-MfM" id="WBT-0o-4dg"/>
- <outlet property="browserLabel" destination="jGx-48-XMs" id="nrF-4l-vHP"/>
- <outlet property="infoLabel" destination="ZwR-ey-2Tv" id="H4w-pW-nb0"/>
- <outlet property="loadingIndicator" destination="XCX-xB-bdI" id="Y0c-wX-kdA"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="rgi-Np-f1f" id="AEN-cD-pfG"/>
- <outlet property="delegate" destination="rgi-Np-f1f" id="fmZ-ip-xoX"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Title" largeTitleDisplayMode="never" id="0aZ-HV-9vo">
- <barButtonItem key="rightBarButtonItem" image="QRScan" id="ixo-ag-1ot">
- <connections>
- <action selector="scanNewSession:" destination="rgi-Np-f1f" id="e03-cC-b9B"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" prompted="NO"/>
- <connections>
- <outlet property="cameraButton" destination="ixo-ag-1ot" id="D9D-aA-9QH"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="H5c-no-tgs" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2999.1999999999998" y="1479.3103448275863"/>
- </scene>
- <!--Settings-->
- <scene sceneID="nKh-tx-oaN">
- <objects>
- <tableViewController storyboardIdentifier="settingsViewController" id="2PC-CR-xd5" customClass="SettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="mmJ-dB-SRw">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="Btr-8m-OHg">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Rqu-Ei-Leq" id="pRQ-KI-aph">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Privacy" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="SaB-S6-XQO">
- <rect key="frame" x="57" y="0.0" width="283" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="PrivacyLight" id="lax-y1-5gu">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="L65-cn-Epp" kind="show" id="yKy-DC-cub"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="61.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="pDZ-78-Yrt" id="x4K-gM-gsl">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Appearance" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="bMQ-iT-eGf">
- <rect key="frame" x="57" y="0.0" width="283" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="AppearanceLight" id="D9L-51-fJ4">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="m14-Er-fpS" kind="show" id="jUy-we-JLV"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="105.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Vfu-hq-hEW" id="jUw-Re-bHu">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="58" y="0.0" width="282" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="NotificationsLight" id="oEd-cY-YBO">
- <rect key="frame" x="16" y="9" width="27" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="TrM-Qf-Qx4" kind="show" id="n6M-yY-keW"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="149.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3uu-C1-keL" id="egc-YG-ClL">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="57" y="0.0" width="283" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="ChatLight" id="Nfz-7n-KDO">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="h3L-LN-tr9" kind="show" id="nth-ef-g1j"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="193.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="2fC-S8-V2G" id="nHK-ts-QPg">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="57" y="0.0" width="283" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="MediaLight" id="1tT-6D-raI">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="HC7-Yt-s1f" kind="show" id="emB-QE-CC5"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="237.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6wE-42-dyW" id="CkQ-RY-JxU">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="57" y="0.0" width="283" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="StorageManagementLight" id="c8N-ed-UYf">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="RmG-ce-hCV" kind="show" id="OMw-73-LOk"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="281.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="qn1-0N-FBd" id="fsz-2U-8Bd">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="57" y="12" width="114.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="wordWrap" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Qpp-gz-gkC">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="PasscodeLockLight" id="mih-1p-qzU">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="325.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="owx-NW-S4B" id="3w2-US-uYh">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="57" y="0.0" width="283" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="DevModeLight" id="wIC-sp-QSN">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="UUK-A4-Kvt" kind="show" id="2hL-2Q-uj2"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="Qqp-Yh-p4Q">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="409" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Xwk-oO-mdT" id="Oxc-s2-NSr">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="57" y="0.0" width="283" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="ThreemaCallsSettingsLight" id="3Wb-yI-5yG">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="vhQ-fG-5Bt" kind="show" id="9JH-xo-iyc"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="453" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6eJ-9i-EE7" id="f6x-W1-So7">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="57" y="12" width="106.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57666590073529411" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57633107930672267" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="ThreemaWebLight" id="37H-21-6Cj">
- <rect key="frame" x="16" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="rgi-Np-f1f" kind="show" id="jOu-4k-XCs"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="5dV-M1-4fo">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="536.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="2M1-eA-akA" id="nLH-tb-Hsz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Network Status" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="bLS-Z9-TSk">
- <rect key="frame" x="16" y="12" width="117.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="275" y="12" width="84" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="FHz-R0-2YX" detailTextLabel="2a3-K6-cFL" style="IBUITableViewCellStyleValue1" id="uwp-gd-REU">
- <rect key="frame" x="0.0" y="580.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uwp-gd-REU" id="kr7-VX-mGK">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Version" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="FHz-R0-2YX">
- <rect key="frame" x="16" y="12" width="57" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="0.0 (000)" textAlignment="right" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2a3-K6-cFL" customClass="CopyLabel" customModule="Threema" customModuleProvider="target">
- <rect key="frame" x="287.5" y="12" width="71.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="8Kf-u4-xCN">
- <rect key="frame" x="0.0" y="624.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="8Kf-u4-xCN" id="Vdp-3B-COb">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="8" y="11" width="41.5" height="22"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="325.5" y="11" width="41.5" height="22"/>
- <constraints>
- <constraint firstAttribute="width" relation="lessThanOrEqual" constant="150" id="cfd-kP-dKc"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="ZMs-fp-gbD" firstAttribute="leading" secondItem="Vdp-3B-COb" secondAttribute="leadingMargin" id="2eK-HB-FoK"/>
- <constraint firstAttribute="trailingMargin" secondItem="OC2-0Y-pj2" secondAttribute="trailing" id="5HC-Pq-lcD"/>
- <constraint firstItem="OC2-0Y-pj2" firstAttribute="top" secondItem="Vdp-3B-COb" secondAttribute="topMargin" id="6lv-Ml-pAA"/>
- <constraint firstItem="OC2-0Y-pj2" firstAttribute="centerY" secondItem="Vdp-3B-COb" secondAttribute="centerY" id="CYO-z0-vfx"/>
- <constraint firstItem="ZMs-fp-gbD" firstAttribute="top" secondItem="Vdp-3B-COb" secondAttribute="topMargin" id="Ge9-2e-fwY"/>
- <constraint firstItem="ZMs-fp-gbD" firstAttribute="centerY" secondItem="Vdp-3B-COb" secondAttribute="centerY" id="SbW-6I-use"/>
- <constraint firstAttribute="bottomMargin" secondItem="ZMs-fp-gbD" secondAttribute="bottom" id="aoq-Tx-DwA"/>
- <constraint firstItem="OC2-0Y-pj2" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="ZMs-fp-gbD" secondAttribute="trailing" constant="10" id="dsV-oA-FC4"/>
- <constraint firstAttribute="bottomMargin" secondItem="OC2-0Y-pj2" secondAttribute="bottom" id="sFc-3u-FwS"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="Oi9-gX-BvD">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="WWx-HN-MHB" imageView="cKL-n6-ffM" style="IBUITableViewCellStyleDefault" id="igB-ck-F3u">
- <rect key="frame" x="0.0" y="708" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="igB-ck-F3u" id="uVb-9Z-9Wm">
- <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="49" y="0.0" width="299" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="InviteAFriendLight" id="cKL-n6-ffM">
- <rect key="frame" x="8" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="KQm-3z-p5f" imageView="ddV-qz-WMt" style="IBUITableViewCellStyleDefault" id="ciV-iW-Qa4">
- <rect key="frame" x="0.0" y="752" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ciV-iW-Qa4" id="QDq-tN-gca">
- <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Channel" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="KQm-3z-p5f">
- <rect key="frame" x="49" y="0.0" width="299" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="ThreemaChannelLight" id="ddV-qz-WMt">
- <rect key="frame" x="8" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="796" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oFI-QH-Jyu" id="o9l-sS-9lO">
- <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Work" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="hqy-Tv-y10">
- <rect key="frame" x="49" y="0.0" width="299" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleAspectFit" insetsLayoutMarginsFromSafeArea="NO" image="ThreemaWorkSettingsLight" id="uv0-9G-ZEo">
- <rect key="frame" x="8" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="jCJ-Xa-v16" kind="show" identifier="ThreemaWorkSegue" id="Kku-Nn-wnt"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="OuY-U2-cAH">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="879.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="q2K-zC-OaO" id="6FR-OG-mfs">
- <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Support" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="x94-1w-4Li">
- <rect key="frame" x="49" y="0.0" width="299" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="SupportLight" id="sgw-Y5-qFA">
- <rect key="frame" x="8" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="YXd-Rd-n37" kind="show" id="1nR-jZ-z84"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="923.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="agj-Re-bFU" id="FzU-DV-vZ5">
- <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Privacy Policy" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="tz7-kW-scx">
- <rect key="frame" x="49" y="0.0" width="299" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="PrivacyPolicyLight" id="GpC-Ew-HLa">
- <rect key="frame" x="8" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="ExO-Da-OuT" kind="show" id="7vH-Tj-jlZ"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="2bS-As-V6Z" imageView="d0h-42-YPE" style="IBUITableViewCellStyleDefault" id="UNP-ds-IUg">
- <rect key="frame" x="0.0" y="967.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UNP-ds-IUg" id="b4u-gS-s6e">
- <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="License" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2bS-As-V6Z">
- <rect key="frame" x="49" y="0.0" width="299" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="LicenseLight" id="d0h-42-YPE">
- <rect key="frame" x="8" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="XhF-Vw-SGc" kind="show" id="xJk-LS-4es"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="bde-fJ-sgC" imageView="FW1-dc-HTR" style="IBUITableViewCellStyleDefault" id="4F9-ah-alP">
- <rect key="frame" x="0.0" y="1011.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4F9-ah-alP" id="Kq4-5a-Z4M">
- <rect key="frame" x="0.0" y="0.0" width="356" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Advanced" lineBreakMode="wordWrap" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="bde-fJ-sgC">
- <rect key="frame" x="49" y="0.0" width="299" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="AdvancedLight" id="FW1-dc-HTR">
- <rect key="frame" x="8" y="9" width="26" height="26"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="jNb-wC-joh" kind="show" id="Ccc-ah-LNd"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="2PC-CR-xd5" id="xjO-QP-VxC"/>
- <outlet property="delegate" destination="2PC-CR-xd5" id="QUP-PI-zv4"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Settings" id="Z1n-S1-DAp"/>
- <connections>
- <outlet property="advancedCell" destination="4F9-ah-alP" id="qvk-2z-1vj"/>
- <outlet property="appearanceCell" destination="pDZ-78-Yrt" id="ZzG-Pp-LEo"/>
- <outlet property="chatCell" destination="3uu-C1-keL" id="xVZ-pe-3aj"/>
- <outlet property="devModeCell" destination="owx-NW-S4B" id="4ID-zj-XoC"/>
- <outlet property="inviteAFriendCell" destination="igB-ck-F3u" id="5Lr-hc-wXg"/>
- <outlet property="licenseCell" destination="UNP-ds-IUg" id="rR6-t0-bHd"/>
- <outlet property="mediaCell" destination="2fC-S8-V2G" id="Fo1-7Y-q5N"/>
- <outlet property="networkStatusCell" destination="2M1-eA-akA" id="yy2-d2-pkl"/>
- <outlet property="notificationCell" destination="Vfu-hq-hEW" id="mRU-Xu-F8b"/>
- <outlet property="passcodeLockCell" destination="qn1-0N-FBd" id="XrC-oP-Dkr"/>
- <outlet property="privacyCell" destination="Rqu-Ei-Leq" id="iP2-u4-JcR"/>
- <outlet property="privacyPolicyCell" destination="agj-Re-bFU" id="qzA-KB-12o"/>
- <outlet property="storageManagementCell" destination="6wE-42-dyW" id="6zr-Eg-eP6"/>
- <outlet property="supportCell" destination="q2K-zC-OaO" id="7TN-De-niT"/>
- <outlet property="threemaCallsCell" destination="Xwk-oO-mdT" id="zrh-qC-5KQ"/>
- <outlet property="threemaChannelCell" destination="ciV-iW-Qa4" id="mvo-8o-AVg"/>
- <outlet property="threemaWebCell" destination="6eJ-9i-EE7" id="WOT-a5-p9X"/>
- <outlet property="threemaWorkCell" destination="oFI-QH-Jyu" id="K1F-pV-9g4"/>
- <outlet property="userNameCellDetailLabel" destination="OC2-0Y-pj2" id="asq-RL-9UG"/>
- <outlet property="usernameCell" destination="8Kf-u4-xCN" id="IvP-co-3mw"/>
- <outlet property="usernameCellLabel" destination="ZMs-fp-gbD" id="hbF-fL-ypp"/>
- <outlet property="versionCell" destination="uwp-gd-REU" id="n9m-8c-jhl"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="szj-xm-Gf2" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-4250" y="1732"/>
- </scene>
- <!--DevMode-->
- <scene sceneID="2IO-BO-0kq">
- <objects>
- <tableViewController storyboardIdentifier="devmodeViewController" id="UUK-A4-Kvt" userLabel="DevMode" customClass="DevModeViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="lhI-ii-g1G">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="fe3-5E-Yu2">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" textLabel="8jH-Z9-Bsu" style="IBUITableViewCellStyleDefault" id="aZ2-q9-auA">
- <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="aZ2-q9-auA" id="WGP-nU-1wN">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="Title" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="8jH-Z9-Bsu">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="bsH-cs-Mlv">
- <rect key="frame" x="162" y="6.5" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <connections>
- <action selector="quoteV2ValueChangedWithSender:" destination="UUK-A4-Kvt" eventType="valueChanged" id="hru-0c-Gx0"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="bsH-cs-Mlv" id="dO8-Re-yxZ"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="UUK-A4-Kvt" id="cJN-0H-WZT"/>
- <outlet property="delegate" destination="UUK-A4-Kvt" id="MRH-XG-hfx"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Settings" id="pn3-uL-xG8"/>
- <connections>
- <outlet property="quoteV2Label" destination="8jH-Z9-Bsu" id="Sgt-WN-Znm"/>
- <outlet property="quoteV2Switch" destination="bsH-cs-Mlv" id="LFe-Ip-tWM"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Dyo-4E-uDj" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-5254" y="1731"/>
- </scene>
- <!--Privacy-->
- <scene sceneID="x9x-aK-vql">
- <objects>
- <tableViewController id="L65-cn-Epp" customClass="PrivacySettingsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection headerTitle="Contacts" footerTitle="Anybody can send you a message. New contacts will be added automatically when their first message arrives." id="vhK-tc-aH5">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="Wdo-iP-Jy2" style="IBUITableViewCellStyleDefault" id="BGB-jz-fVt">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="BGB-jz-fVt" id="o7o-kZ-zFa">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="162" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <connections>
- <action selector="syncContactsChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="Xsp-gZ-GM6"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="F81-lF-lUJ" id="v7W-tW-c4V"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="5hd-D5-keA" style="IBUITableViewCellStyleDefault" id="nEy-Ky-4nP">
- <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nEy-Ky-4nP" id="oAp-iy-mnC">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="324" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="ZhF-RE-lv8" kind="show" id="F8X-70-yyf"/>
- </connections>
- </tableViewCell>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="t3A-s5-ui3" style="IBUITableViewCellStyleDefault" id="bbO-k0-e5Q">
- <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="bbO-k0-e5Q" id="kir-9c-rJs">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="mJi-vQ-oRP">
- <rect key="frame" x="162" y="5.5" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <action selector="blockUnknownChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="v24-og-2ot"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="mJi-vQ-oRP" id="2eI-tn-Yps"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Chat" id="R1G-2w-yDd">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="pd4-eC-QZk" style="IBUITableViewCellStyleDefault" id="gC1-Ts-8nL">
- <rect key="frame" x="0.0" y="271.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="gC1-Ts-8nL" id="PmZ-KI-pzH">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="gFG-ah-E8c">
- <rect key="frame" x="163" y="5.5" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <connections>
- <action selector="readReceiptsChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="D2I-QG-92X"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="gFG-ah-E8c" id="GCN-r9-8Yg"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="O7I-2W-NWv" style="IBUITableViewCellStyleDefault" id="3v2-oW-DKb">
- <rect key="frame" x="0.0" y="315.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="3v2-oW-DKb" id="V0f-Pp-A4R">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="EgO-Ha-XLl">
- <rect key="frame" x="162" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="typingIndicatorChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="P6X-pQ-rAW"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="EgO-Ha-XLl" id="7kf-aZ-nqe"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="mWM-cJ-vcw" style="IBUITableViewCellStyleDefault" id="Ayz-J8-2LP">
- <rect key="frame" x="0.0" y="359.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="Ayz-J8-2LP" id="r1L-5b-fQz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="dCM-P3-jra">
- <rect key="frame" x="162" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="poiChanged:" destination="L65-cn-Epp" eventType="valueChanged" id="ANf-cY-UZb"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="dCM-P3-jra" id="LAK-Js-lv2"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="L65-cn-Epp" id="xrR-uj-KCA"/>
- <outlet property="delegate" destination="L65-cn-Epp" id="T4L-OR-DpP"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Privacy" largeTitleDisplayMode="never" id="BH4-Z9-imt"/>
- <connections>
- <outlet property="blockUnknownCell" destination="bbO-k0-e5Q" id="HmG-jt-XuS"/>
- <outlet property="blockUnknownLabel" destination="t3A-s5-ui3" id="5wk-bQ-Zyx"/>
- <outlet property="blockUnknownSwitch" destination="mJi-vQ-oRP" id="nyj-nd-tUf"/>
- <outlet property="poiSwitch" destination="dCM-P3-jra" id="NvE-Y7-BZh"/>
- <outlet property="readReceiptsSwitch" destination="gFG-ah-E8c" id="8Ln-dH-hCR"/>
- <outlet property="syncContactsCell" destination="BGB-jz-fVt" id="r10-A3-u54"/>
- <outlet property="syncContactsLabel" destination="Wdo-iP-Jy2" id="1mM-nR-YWA"/>
- <outlet property="syncContactsSwitch" destination="F81-lF-lUJ" id="5RZ-9u-Xgg"/>
- <outlet property="typingIndicatorSwitch" destination="EgO-Ha-XLl" id="Td6-uW-Gqa"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="7aW-Nh-1VM" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2857" y="-125"/>
- </scene>
- <!--Threema Calls-->
- <scene sceneID="kAt-sa-xmw">
- <objects>
- <tableViewController id="vhQ-fG-5Bt" userLabel="Threema Calls" customClass="ThreemaCallsSettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="URr-SE-ZCl">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="tbO-52-AvQ" style="IBUITableViewCellStyleDefault" id="T4d-Gy-uRl">
- <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="T4d-Gy-uRl" id="MpJ-bf-X9Y">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="972-58-TnY">
- <rect key="frame" x="162" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="enableThreemaCallSwitchChangedWithSender:" destination="vhQ-fG-5Bt" eventType="valueChanged" id="3V7-DX-PoB"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="972-58-TnY" id="oi4-T3-3By"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="NQi-Tj-6G0">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="5Z4-we-4ct" style="IBUITableViewCellStyleDefault" id="dzF-Sv-sOu">
- <rect key="frame" x="0.0" y="96.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="dzF-Sv-sOu" id="sNc-df-xxz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="qXg-2T-fDk">
- <rect key="frame" x="162" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="alwaysRelayCallsSwitchChangedWithSender:" destination="vhQ-fG-5Bt" eventType="valueChanged" id="8PS-Y0-5f8"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="qXg-2T-fDk" id="ReJ-Pq-ILE"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="YSe-95-QYe">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Q1w-c7-mEv" style="IBUITableViewCellStyleDefault" id="5W8-Xp-vmV">
- <rect key="frame" x="0.0" y="175.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="5W8-Xp-vmV" id="uex-BE-feO">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="fIm-go-XWw">
- <rect key="frame" x="162" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="enableCallKitSwitchChangedWithSender:" destination="vhQ-fG-5Bt" eventType="valueChanged" id="4uS-H0-fBa"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="fIm-go-XWw" id="1EP-yg-zjw"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="dXO-RI-sLt">
- <cells>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="3S0-6H-Ocr" style="IBUITableViewCellStyleDefault" id="N4F-Ht-W32">
- <rect key="frame" x="0.0" y="254.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="N4F-Ht-W32" id="Fj5-cb-Kjq">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="xyI-3T-M38">
- <rect key="frame" x="162" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="enableVideoCallSwitchChangedWithSender:" destination="vhQ-fG-5Bt" eventType="valueChanged" id="awj-hF-ZDW"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="xyI-3T-M38" id="AeM-Eu-Ojo"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="qjU-ul-8OA">
- <rect key="frame" x="0.0" y="298.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" tableViewCell="qjU-ul-8OA" id="ecs-Ur-Lih">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="11" width="184" height="22"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="249" horizontalCompressionResistancePriority="749" verticalCompressionResistancePriority="751" text="Detail" textAlignment="right" lineBreakMode="middleTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="n4P-Of-W5c">
- <rect key="frame" x="296" y="15" width="44" height="14"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="n4P-Of-W5c" secondAttribute="bottom" constant="4" id="2na-5u-2ve"/>
- <constraint firstItem="rME-eF-iPo" firstAttribute="top" secondItem="ecs-Ur-Lih" secondAttribute="topMargin" id="5nX-Tt-xMs"/>
- <constraint firstItem="n4P-Of-W5c" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="rME-eF-iPo" secondAttribute="trailing" constant="10" id="HNq-FL-Kuy"/>
- <constraint firstItem="n4P-Of-W5c" firstAttribute="centerY" secondItem="ecs-Ur-Lih" secondAttribute="centerY" id="Ssd-iG-1ns"/>
- <constraint firstItem="rME-eF-iPo" firstAttribute="leading" secondItem="ecs-Ur-Lih" secondAttribute="leadingMargin" id="dcc-Kb-6eK"/>
- <constraint firstItem="rME-eF-iPo" firstAttribute="centerY" secondItem="ecs-Ur-Lih" secondAttribute="centerY" id="f9b-ih-xG2"/>
- <constraint firstAttribute="bottomMargin" secondItem="rME-eF-iPo" secondAttribute="bottom" id="hVO-72-W5y"/>
- <constraint firstAttribute="trailingMargin" secondItem="n4P-Of-W5c" secondAttribute="trailing" id="oWn-g9-8qg"/>
- <constraint firstItem="n4P-Of-W5c" firstAttribute="top" relation="greaterThanOrEqual" secondItem="ecs-Ur-Lih" secondAttribute="topMargin" constant="4" id="yUy-yh-nHK"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <segue destination="ua2-6d-8w5" kind="show" id="sOp-Op-J1B"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="vhQ-fG-5Bt" id="LlP-f0-aI8"/>
- <outlet property="delegate" destination="vhQ-fG-5Bt" id="hO7-ZG-Aqq"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Privacy" largeTitleDisplayMode="never" id="9hC-3k-nmq"/>
- <connections>
- <outlet property="alwaysRelayThreemaCallsCell" destination="dzF-Sv-sOu" id="Zx9-ae-7Dn"/>
- <outlet property="alwaysRelayThreemaCallsSwitch" destination="qXg-2T-fDk" id="20a-Ma-smf"/>
- <outlet property="enableCallKitCell" destination="5W8-Xp-vmV" id="mCj-WC-3oE"/>
- <outlet property="enableCallKitSwitch" destination="fIm-go-XWw" id="RCh-LE-Ctu"/>
- <outlet property="enableThreemaCallSwitch" destination="972-58-TnY" id="1Fd-vr-1Od"/>
- <outlet property="enableThreemaCallsCell" destination="T4d-Gy-uRl" id="MmL-B7-Eg3"/>
- <outlet property="enableVideoCell" destination="N4F-Ht-W32" id="zdO-Cb-Lgk"/>
- <outlet property="enableVideoSwitch" destination="xyI-3T-M38" id="q9b-4v-cdp"/>
- <outlet property="videoQualityCellDetailLabel" destination="n4P-Of-W5c" id="ReW-DV-MbE"/>
- <outlet property="videoQualityCellTitleLabel" destination="rME-eF-iPo" id="LtK-ev-ylH"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="otN-Yd-Mon" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-4034" y="378"/>
- </scene>
- <!--Media-->
- <scene sceneID="IxK-la-sko">
- <objects>
- <tableViewController id="HC7-Yt-s1f" customClass="MediaSettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="Qfs-sa-LIM">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- <sections>
- <tableViewSection id="vAM-qA-yAf">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4VW-HY-Qc5" id="4bg-Ic-XoR">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Image Size" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="xhX-4h-CHj">
- <rect key="frame" x="16" y="12" width="83" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2Ve-Rz-Jab">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="BgE-Bg-LfV" kind="show" id="Rjc-J8-9d3"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="icP-dl-OGv" detailTextLabel="jrN-Cn-NEr" style="IBUITableViewCellStyleValue1" id="I1C-UF-uNg">
- <rect key="frame" x="0.0" y="61.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="I1C-UF-uNg" id="5zl-vF-6ZU">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Video Quality" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="icP-dl-OGv">
- <rect key="frame" x="16" y="12" width="101.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="jrN-Cn-NEr">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="kFh-T4-aJO" kind="show" id="7ul-gl-wFi"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="XgJ-Fv-QL5" rowHeight="62" style="IBUITableViewCellStyleDefault" id="p1L-IU-dz8">
- <rect key="frame" x="0.0" y="105.5" width="375" height="62"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="p1L-IU-dz8" id="Cnd-7k-ioc">
- <rect key="frame" x="0.0" y="0.0" width="375" height="62"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="62"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cBx-6u-SE4">
- <rect key="frame" x="161" y="15" width="52" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="autoSaveMediaChanged:" destination="HC7-Yt-s1f" eventType="valueChanged" id="SI1-pY-fU0"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="cBx-6u-SE4" id="HXb-mQ-QeH"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="HC7-Yt-s1f" id="S43-KP-saa"/>
- <outlet property="delegate" destination="HC7-Yt-s1f" id="zxx-SV-uH5"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Media" largeTitleDisplayMode="never" id="U7Q-cL-ZiA"/>
- <connections>
- <outlet property="autoSaveMediaCell" destination="p1L-IU-dz8" id="LRP-0g-Xyg"/>
- <outlet property="autoSaveMediaLabel" destination="XgJ-Fv-QL5" id="EHX-1N-zqK"/>
- <outlet property="autoSaveMediaSwitch" destination="cBx-6u-SE4" id="i02-rC-wgf"/>
- <outlet property="imageSizeLabel" destination="2Ve-Rz-Jab" id="jkP-Sb-a6d"/>
- <outlet property="videoQualityLabel" destination="jrN-Cn-NEr" id="Owc-mv-ejZ"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="rFV-nj-jno" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1895" y="3295"/>
- </scene>
- <!--Storage Management-->
- <scene sceneID="db1-zk-fbo">
- <objects>
- <tableViewController id="RmG-ce-hCV" customClass="StorageManagementViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="qoO-5d-bCa">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="SaD-7I-oOD">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="17.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" autoresizesSubviews="NO" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Zu8-sa-HVR" id="8KB-nO-Lha">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Space on internal storage" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="9HG-t5-Xhb">
- <rect key="frame" x="16" y="12" width="194.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="-" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="kHb-uQ-Ce1">
- <rect key="frame" x="351" y="12" width="8" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="e89-ku-bQL" detailTextLabel="Ue7-f7-Pqb" style="IBUITableViewCellStyleValue1" id="acV-pF-P2u">
- <rect key="frame" x="0.0" y="61.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="acV-pF-P2u" id="7QK-gb-SeW">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="In use" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="e89-ku-bQL">
- <rect key="frame" x="16" y="12" width="45.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="-" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Ue7-f7-Pqb">
- <rect key="frame" x="351" y="12" width="8" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="06t-fE-Y6z" detailTextLabel="giX-Df-fBe" style="IBUITableViewCellStyleValue1" id="67R-ne-Opo">
- <rect key="frame" x="0.0" y="105.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="67R-ne-Opo" id="krO-pV-Kdp">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="12" width="121.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" insetsLayoutMarginsFromSafeArea="NO" text="-" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="giX-Df-fBe">
- <rect key="frame" x="351" y="12" width="8" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="none" indentationWidth="0.0" id="Y2R-Xy-r7u">
- <rect key="frame" x="0.0" y="149.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" tableViewCell="Y2R-Xy-r7u" id="I1H-Tq-D1G">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="trt-Co-3xT">
- <rect key="frame" x="339" y="12" width="20" height="20"/>
- </activityIndicatorView>
- <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">
- <rect key="frame" x="16" y="12" width="135" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="351" y="11.5" width="8" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="wE7-pn-Gu5" firstAttribute="centerY" secondItem="I1H-Tq-D1G" secondAttribute="centerY" id="17N-1O-sXu"/>
- <constraint firstItem="trt-Co-3xT" firstAttribute="trailing" secondItem="I1H-Tq-D1G" secondAttribute="trailingMargin" id="1YD-Kr-gAc"/>
- <constraint firstItem="lgV-MU-UON" firstAttribute="centerY" secondItem="I1H-Tq-D1G" secondAttribute="centerY" id="8ZQ-C6-kco"/>
- <constraint firstItem="lgV-MU-UON" firstAttribute="left" secondItem="I1H-Tq-D1G" secondAttribute="leftMargin" id="G5g-qc-2mr"/>
- <constraint firstItem="wE7-pn-Gu5" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="lgV-MU-UON" secondAttribute="trailing" constant="10" id="cud-ju-s9I"/>
- <constraint firstItem="trt-Co-3xT" firstAttribute="centerY" secondItem="I1H-Tq-D1G" secondAttribute="centerY" id="tzC-C7-hkL"/>
- <constraint firstItem="wE7-pn-Gu5" firstAttribute="trailing" secondItem="I1H-Tq-D1G" secondAttribute="trailingMargin" id="uoo-iV-nYe"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="qiD-zj-Qqg">
- <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>
- <cells/>
- </tableViewSection>
- <tableViewSection id="mIj-qg-9G8">
- <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>
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MediaOlderThanCell" id="OZa-Io-Fcw">
- <rect key="frame" x="0.0" y="308" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OZa-Io-Fcw" id="g4c-xW-wVu">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="12" width="41.5" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="260" y="11" width="80" height="22"/>
- <constraints>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="80" id="qc3-TI-ofX"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstItem="RcX-GS-Xg5" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="7UQ-Nr-5Tn" secondAttribute="trailing" constant="10" id="3i5-eD-SJV"/>
- <constraint firstAttribute="bottomMargin" secondItem="RcX-GS-Xg5" secondAttribute="bottom" id="NjD-ci-ijH"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="7UQ-Nr-5Tn" secondAttribute="bottom" id="RXb-uN-gbf"/>
- <constraint firstItem="7UQ-Nr-5Tn" firstAttribute="top" relation="greaterThanOrEqual" secondItem="g4c-xW-wVu" secondAttribute="topMargin" id="Ufo-HT-AhC"/>
- <constraint firstItem="7UQ-Nr-5Tn" firstAttribute="leading" secondItem="g4c-xW-wVu" secondAttribute="leadingMargin" id="c3D-tC-yXU"/>
- <constraint firstAttribute="trailingMargin" secondItem="RcX-GS-Xg5" secondAttribute="trailing" id="qK5-p2-YEx"/>
- <constraint firstItem="RcX-GS-Xg5" firstAttribute="top" secondItem="g4c-xW-wVu" secondAttribute="topMargin" id="tpt-bl-3Sd"/>
- <constraint firstItem="7UQ-Nr-5Tn" firstAttribute="centerY" secondItem="g4c-xW-wVu" secondAttribute="centerY" id="vwr-VJ-X8P"/>
- <constraint firstItem="RcX-GS-Xg5" firstAttribute="centerY" secondItem="g4c-xW-wVu" secondAttribute="centerY" id="xiY-Gk-wVL"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <segue destination="Hzc-Lf-ZjH" kind="show" id="YhG-1S-Qc5"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="u9c-Ns-n40">
- <rect key="frame" x="0.0" y="352" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="u9c-Ns-n40" id="sbb-QW-hc6">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="133" y="11.5" width="109" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" name="systemRedColor" catalog="System" colorSpace="catalog"/>
- <nil key="highlightedColor"/>
- </label>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="lKc-iX-W6R">
- <rect key="frame" x="176" y="11" width="20" height="20"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
- </activityIndicatorView>
- </subviews>
- <constraints>
- <constraint firstItem="2kJ-Y2-iOd" firstAttribute="centerX" secondItem="sbb-QW-hc6" secondAttribute="centerX" id="Dfe-qX-rOA"/>
- <constraint firstAttribute="trailingMargin" relation="greaterThanOrEqual" secondItem="2kJ-Y2-iOd" secondAttribute="trailing" id="M5R-Cg-zis"/>
- <constraint firstItem="2kJ-Y2-iOd" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="sbb-QW-hc6" secondAttribute="leadingMargin" id="PET-9G-cn4"/>
- <constraint firstItem="2kJ-Y2-iOd" firstAttribute="centerY" secondItem="sbb-QW-hc6" secondAttribute="centerY" id="crh-6n-hZN"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="Sie können auch ältere Nachrichten komplett löschen." id="Na7-X0-iSY">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MessageOlderThanCell" id="fe6-DJ-0be">
- <rect key="frame" x="0.0" y="475.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fe6-DJ-0be" id="HfD-h0-tA7">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="12" width="41.5" height="20.5"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="260" y="11" width="80" height="22"/>
- <constraints>
- <constraint firstAttribute="width" relation="greaterThanOrEqual" constant="80" id="4T7-3f-Gnb"/>
- </constraints>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <constraints>
- <constraint firstAttribute="bottomMargin" secondItem="mfL-7m-jcS" secondAttribute="bottom" id="0FK-Ia-lL4"/>
- <constraint firstItem="mfL-7m-jcS" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="wVB-DV-DFQ" secondAttribute="trailing" constant="10" id="A0s-Jd-riJ"/>
- <constraint firstAttribute="trailingMargin" secondItem="mfL-7m-jcS" secondAttribute="trailing" id="Dqw-do-b15"/>
- <constraint firstItem="wVB-DV-DFQ" firstAttribute="top" relation="greaterThanOrEqual" secondItem="HfD-h0-tA7" secondAttribute="topMargin" id="Vod-DC-fnc"/>
- <constraint firstItem="wVB-DV-DFQ" firstAttribute="centerY" secondItem="HfD-h0-tA7" secondAttribute="centerY" id="X0d-hV-Jdw"/>
- <constraint firstItem="wVB-DV-DFQ" firstAttribute="leading" secondItem="HfD-h0-tA7" secondAttribute="leadingMargin" id="hrW-I2-w0e"/>
- <constraint firstAttribute="bottomMargin" relation="greaterThanOrEqual" secondItem="wVB-DV-DFQ" secondAttribute="bottom" id="xHm-58-sRa"/>
- <constraint firstItem="mfL-7m-jcS" firstAttribute="centerY" secondItem="HfD-h0-tA7" secondAttribute="centerY" id="xLO-CS-b4M"/>
- <constraint firstItem="mfL-7m-jcS" firstAttribute="top" secondItem="HfD-h0-tA7" secondAttribute="topMargin" id="xTa-Zo-MK4"/>
- </constraints>
- </tableViewCellContentView>
- <connections>
- <segue destination="Hzc-Lf-ZjH" kind="show" id="RkS-Fm-UCf"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="H5A-O5-yMk">
- <rect key="frame" x="0.0" y="519.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="H5A-O5-yMk" id="gBN-eR-ZN9">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="109.5" y="11.5" width="156.5" height="21"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" name="systemRedColor" catalog="System" colorSpace="catalog"/>
- <nil key="highlightedColor"/>
- </label>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" fixedFrame="YES" style="gray" translatesAutoresizingMaskIntoConstraints="NO" id="bIS-aK-BKb">
- <rect key="frame" x="176" y="11" width="20" height="20"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMinY="YES" flexibleMaxY="YES"/>
- </activityIndicatorView>
- </subviews>
- <constraints>
- <constraint firstItem="QMn-HC-MBS" firstAttribute="centerX" secondItem="gBN-eR-ZN9" secondAttribute="centerX" id="CUN-ye-emW"/>
- <constraint firstAttribute="trailingMargin" relation="greaterThanOrEqual" secondItem="QMn-HC-MBS" secondAttribute="trailing" id="GPc-iK-lzQ"/>
- <constraint firstItem="QMn-HC-MBS" firstAttribute="leading" relation="greaterThanOrEqual" secondItem="gBN-eR-ZN9" secondAttribute="leadingMargin" id="KsN-tb-PiF"/>
- <constraint firstItem="QMn-HC-MBS" firstAttribute="centerY" secondItem="gBN-eR-ZN9" secondAttribute="centerY" id="MC4-W7-O5l"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="RmG-ce-hCV" id="O7N-fC-zqS"/>
- <outlet property="delegate" destination="RmG-ce-hCV" id="SNO-fX-l6Z"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Storage Management" largeTitleDisplayMode="never" id="u0Q-wW-S40"/>
- <connections>
- <outlet property="mediaDeleteActivityIndicator" destination="lKc-iX-W6R" id="MYI-2b-g95"/>
- <outlet property="mediaDeleteButtonLabel" destination="2kJ-Y2-iOd" id="Adx-0C-Xpr"/>
- <outlet property="mediaDeleteCell" destination="u9c-Ns-n40" id="api-pk-yGh"/>
- <outlet property="mediaDeleteDetailLabel" destination="RcX-GS-Xg5" id="xxL-e4-6js"/>
- <outlet property="mediaDeleteLabel" destination="7UQ-Nr-5Tn" id="jGb-jg-Pou"/>
- <outlet property="messageDeleteActivityIndicator" destination="bIS-aK-BKb" id="aKQ-fB-D7K"/>
- <outlet property="messageDeleteButtonLabel" destination="QMn-HC-MBS" id="31n-g8-UmC"/>
- <outlet property="messageDeleteCell" destination="H5A-O5-yMk" id="1l8-8P-jme"/>
- <outlet property="messageDeleteDetailLabel" destination="mfL-7m-jcS" id="t3u-Zl-mAO"/>
- <outlet property="messageDeleteLabel" destination="wVB-DV-DFQ" id="7kg-1u-uV4"/>
- <outlet property="storageThreema" destination="lgV-MU-UON" id="xYl-sX-6jD"/>
- <outlet property="storageThreemaActivityIndicator" destination="trt-Co-3xT" id="gm0-Tu-O6t"/>
- <outlet property="storageThreemaValue" destination="wE7-pn-Gu5" id="Dxb-Vs-evi"/>
- <outlet property="storageTotal" destination="9HG-t5-Xhb" id="29s-gd-T6T"/>
- <outlet property="storageTotalFree" destination="06t-fE-Y6z" id="SPJ-MM-RK3"/>
- <outlet property="storageTotalFreeValue" destination="giX-Df-fBe" id="6sd-X6-7hY"/>
- <outlet property="storageTotalInUse" destination="e89-ku-bQL" id="yIl-id-SlZ"/>
- <outlet property="storageTotalInUseValue" destination="Ue7-f7-Pqb" id="vAs-Tw-NIU"/>
- <outlet property="storageTotalValue" destination="kHb-uQ-Ce1" id="hEt-j2-8Ck"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="QEw-ky-zpV" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2609" y="3660"/>
- </scene>
- <!--License-->
- <scene sceneID="JIg-yI-uJN">
- <objects>
- <viewController id="XhF-Vw-SGc" customClass="LicenseViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="jyX-KT-ELE">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <viewLayoutGuide key="safeArea" id="baG-5t-WCv"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="License" largeTitleDisplayMode="never" id="Cuk-M6-y9N"/>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="hWo-hH-bwF" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-3975" y="3660"/>
- </scene>
- <!--Chat-->
- <scene sceneID="Xxc-cj-Iy1">
- <objects>
- <tableViewController id="h3L-LN-tr9" customClass="ChatSettingsViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="CeI-lv-1A0">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- <sections>
- <tableViewSection headerTitle="Wallpaper" id="ri0-wl-hNq">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="178" id="2Qs-fK-vGR">
- <rect key="frame" x="0.0" y="55.5" width="375" height="178"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="2Qs-fK-vGR" id="pMf-9h-Z0O">
- <rect key="frame" x="0.0" y="0.0" width="348" height="178"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" image="WallpaperDefault.png" translatesAutoresizingMaskIntoConstraints="NO" id="OsR-zP-kti">
- <rect key="frame" x="113" y="14" width="149" height="150"/>
- <constraints>
- <constraint firstAttribute="height" constant="150" id="98K-WP-he5"/>
- <constraint firstAttribute="width" constant="149" id="J9b-7t-oFB"/>
- </constraints>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <constraints>
- <constraint firstItem="OsR-zP-kti" firstAttribute="centerX" secondItem="2Qs-fK-vGR" secondAttribute="centerX" id="aTu-27-SDK"/>
- <constraint firstItem="OsR-zP-kti" firstAttribute="centerY" secondItem="2Qs-fK-vGR" secondAttribute="centerY" id="gTc-8o-K7J"/>
- </constraints>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="Rfg-a6-EB2" style="IBUITableViewCellStyleDefault" id="sOM-UB-bbQ">
- <rect key="frame" x="0.0" y="233.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sOM-UB-bbQ" id="4yl-tr-0Fh">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Reset Wallpaper" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Rfg-a6-EB2">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="mMI-Jx-DlD">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="317" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="hRZ-eA-tCq" id="GPP-Hp-9d9">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="12" width="70.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="DcU-Gz-xaH" kind="show" id="gyv-Ob-KUU"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="etj-Pj-I1Y" style="IBUITableViewCellStyleDefault" id="ixz-q3-6RD">
- <rect key="frame" x="0.0" y="361" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ixz-q3-6RD" id="OyE-SD-qXq">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="fd5-YI-sdV">
- <rect key="frame" x="163" y="5" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="biggerEmojiChanged:" destination="h3L-LN-tr9" eventType="valueChanged" id="vry-8w-2OI"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="fd5-YI-sdV" id="dI6-Dg-Y1C"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="HDn-EN-rtP" style="IBUITableViewCellStyleDefault" id="J93-5H-rdW">
- <rect key="frame" x="0.0" y="405" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="J93-5H-rdW" id="o5o-AR-zf4">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="vXD-qW-yUV">
- <rect key="frame" x="163" y="5" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="showReceivedTimestampChanged:" destination="h3L-LN-tr9" eventType="valueChanged" id="aaV-FC-i09"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="vXD-qW-yUV" id="HAr-4f-VN4"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="7C7-0j-j2r" style="IBUITableViewCellStyleDefault" id="93r-4t-eNU">
- <rect key="frame" x="0.0" y="449" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="93r-4t-eNU" id="g7c-eb-CcI">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="cZN-Wy-eRX">
- <rect key="frame" x="163" y="5" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="returnToSendChanged:" destination="h3L-LN-tr9" eventType="valueChanged" id="c4P-xS-Pzj"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="cZN-Wy-eRX" id="sJ5-KD-ho5"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="h3L-LN-tr9" id="GJn-yO-a1n"/>
- <outlet property="delegate" destination="h3L-LN-tr9" id="LYd-dK-yWI"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Chat" largeTitleDisplayMode="never" id="jI2-1V-LmF"/>
- <connections>
- <outlet property="biggerEmojiLabel" destination="etj-Pj-I1Y" id="Zdy-RS-X57"/>
- <outlet property="biggerEmojiSwitch" destination="fd5-YI-sdV" id="ZEe-6u-vwZ"/>
- <outlet property="fontSizeLabel" destination="yFW-ty-9QR" id="Y2j-DB-5g1"/>
- <outlet property="returnToSendSwitch" destination="cZN-Wy-eRX" id="1Np-q1-m2Q"/>
- <outlet property="showReceivedTimestampSwitch" destination="vXD-qW-yUV" id="yX1-kb-QjX"/>
- <outlet property="wallpaperImageView" destination="OsR-zP-kti" id="Aa8-O1-tXZ"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="DzQ-L3-J8A" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2153" y="2615"/>
- </scene>
- <!--Appearance-->
- <scene sceneID="K0z-Fx-gjn">
- <objects>
- <tableViewController id="m14-Er-fpS" customClass="AppearanceSettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="iUb-sS-b1Q">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection headerTitle="Design theme" id="y1u-xK-T6S">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" rowHeight="230" id="jp9-dS-eWG">
- <rect key="frame" x="0.0" y="55.5" width="375" height="230"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jp9-dS-eWG" id="juV-BJ-fK3">
- <rect key="frame" x="0.0" y="0.0" width="375" height="230"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" distribution="fillEqually" alignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="BRY-hu-mtc">
- <rect key="frame" x="10" y="10" width="355" height="210"/>
- <subviews>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="tmZ-Yt-Bt8">
- <rect key="frame" x="0.0" y="1" width="118.5" height="208"/>
- <subviews>
- <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="9yp-pM-s75">
- <rect key="frame" x="17.5" y="0.0" width="83" height="180"/>
- <state key="normal" image="System-Theme"/>
- <connections>
- <action selector="systemThemeSelectedWithSender:" destination="m14-Er-fpS" eventType="touchUpInside" id="nqb-0C-9d3"/>
- </connections>
- </button>
- <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">
- <rect key="frame" x="33.5" y="190" width="51" height="18"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </stackView>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="IJe-wc-fhA">
- <rect key="frame" x="118.5" y="1" width="118" height="208"/>
- <subviews>
- <button opaque="NO" contentMode="scaleAspectFit" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="44O-uU-ZGh">
- <rect key="frame" x="17.5" y="0.0" width="83" height="180"/>
- <state key="normal" image="Light-Theme"/>
- <connections>
- <action selector="lightThemeSelectedWithSender:" destination="m14-Er-fpS" eventType="touchUpInside" id="jJ8-TK-aRz"/>
- </connections>
- </button>
- <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">
- <rect key="frame" x="42" y="190" width="34.5" height="18"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" white="0.33333333329999998" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </stackView>
- <stackView opaque="NO" contentMode="scaleToFill" axis="vertical" distribution="equalSpacing" alignment="center" spacing="10" translatesAutoresizingMaskIntoConstraints="NO" id="Gpq-cS-N4S">
- <rect key="frame" x="236.5" y="1" width="118.5" height="208"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" translatesAutoresizingMaskIntoConstraints="NO" id="qzu-kK-UV3">
- <rect key="frame" x="18" y="0.0" width="83" height="180"/>
- <state key="normal" image="Dark-Theme"/>
- <connections>
- <action selector="darkThemeSelectedWithSender:" destination="m14-Er-fpS" eventType="touchUpInside" id="p1A-eT-o1u"/>
- </connections>
- </button>
- <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">
- <rect key="frame" x="43" y="190" width="32.5" height="18"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleSubhead"/>
- <color key="textColor" white="0.33333333333333331" alpha="1" colorSpace="calibratedWhite"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </stackView>
- </subviews>
- </stackView>
- </subviews>
- <constraints>
- <constraint firstItem="BRY-hu-mtc" firstAttribute="top" secondItem="juV-BJ-fK3" secondAttribute="top" constant="10" id="MGM-Zt-Sbx"/>
- <constraint firstItem="BRY-hu-mtc" firstAttribute="leading" secondItem="juV-BJ-fK3" secondAttribute="leading" constant="10" id="i1b-Ru-dqj"/>
- <constraint firstAttribute="bottom" secondItem="BRY-hu-mtc" secondAttribute="bottom" constant="10" id="l4o-6e-S3z"/>
- <constraint firstAttribute="trailing" secondItem="BRY-hu-mtc" secondAttribute="trailing" constant="10" id="qLp-jf-98M"/>
- </constraints>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="JVM-dV-raQ">
- <cells>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="C7N-a6-E8Y" style="IBUITableViewCellStyleDefault" id="cqw-A1-TA9">
- <rect key="frame" x="0.0" y="320.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="cqw-A1-TA9" id="MEn-O3-lum">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" contentHorizontalAlignment="center" contentVerticalAlignment="center" translatesAutoresizingMaskIntoConstraints="NO" id="w2e-jm-x0a">
- <rect key="frame" x="162" y="5.5" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="hideStaleContactsChangedWithSender:" destination="m14-Er-fpS" eventType="valueChanged" id="cgy-zn-9Pa"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="w2e-jm-x0a" id="Ol4-Bj-X7C"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="c3z-wL-s4q">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="73k-4u-GSo" style="IBUITableViewCellStyleDefault" id="4jy-xK-aLD">
- <rect key="frame" x="0.0" y="404" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4jy-xK-aLD" id="A9D-1O-sko">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="9nu-XV-2dr">
- <rect key="frame" x="164" y="6" width="47" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="showProfilePicturesChangedWithSender:" destination="m14-Er-fpS" eventType="valueChanged" id="PN2-vV-lmD"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="9nu-XV-2dr" id="RuY-3G-wt6"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="448" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="Qhs-h4-VKz" id="e5z-pf-FCM">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="12" width="104" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="gvW-Vv-w9b" kind="show" id="5cK-di-0X5"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="MSz-po-upr">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="TyO-Dl-3LV" style="IBUITableViewCellStyleDefault" id="zRe-zG-lmh">
- <rect key="frame" x="0.0" y="531.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="zRe-zG-lmh" id="32m-ED-tCf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Sco-6v-Kmm">
- <rect key="frame" x="164" y="6" width="47" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="showGalleryPreviewChangedWithSender:" destination="m14-Er-fpS" eventType="valueChanged" id="Sj8-GL-N3N"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="Sco-6v-Kmm" id="1ye-YC-m2Q"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="8MF-g0-jVQ" style="IBUITableViewCellStyleDefault" id="6vh-oQ-5GE">
- <rect key="frame" x="0.0" y="575.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6vh-oQ-5GE" id="pdL-ZB-HkE">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <slider opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" value="5" minValue="5" maxValue="100" translatesAutoresizingMaskIntoConstraints="NO" id="qtd-p4-KW4">
- <rect key="frame" x="128" y="6.5" width="180" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <connections>
- <action selector="previewLimitChangedWithSender:" destination="m14-Er-fpS" eventType="valueChanged" id="hL3-kP-aJc"/>
- </connections>
- </slider>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="qtd-p4-KW4" id="U8h-nn-0pI"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="m14-Er-fpS" id="G9A-QN-3sA"/>
- <outlet property="delegate" destination="m14-Er-fpS" id="wgC-rp-GLn"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Appearance" largeTitleDisplayMode="never" id="ZYa-QO-V4r"/>
- <connections>
- <outlet property="darkThemeButton" destination="qzu-kK-UV3" id="rGi-gf-qUn"/>
- <outlet property="darkThemeLabel" destination="V5m-Tp-tcN" id="4di-cO-jaq"/>
- <outlet property="displayOrderLabel" destination="SeE-st-lWM" id="zbn-Wk-cvs"/>
- <outlet property="displayOrderValue" destination="qCc-Eb-8rc" id="tja-yE-Mtk"/>
- <outlet property="hideStaleContactsLabel" destination="C7N-a6-E8Y" id="zkY-6d-MaM"/>
- <outlet property="hideStaleContactsSwitch" destination="w2e-jm-x0a" id="V8r-an-IYu"/>
- <outlet property="lightThemeButton" destination="44O-uU-ZGh" id="u5u-4a-zdR"/>
- <outlet property="lightThemeLabel" destination="5qo-b9-Lor" id="KiK-Y7-kFQ"/>
- <outlet property="previewLimitLabel" destination="8MF-g0-jVQ" id="qaK-gW-A5f"/>
- <outlet property="previewLimitSlider" destination="qtd-p4-KW4" id="IzK-5S-v5T"/>
- <outlet property="showGalleryPreviewLabel" destination="TyO-Dl-3LV" id="MCN-JE-EOK"/>
- <outlet property="showGalleryPreviewSwitch" destination="Sco-6v-Kmm" id="qGB-Jd-qCe"/>
- <outlet property="showProfilePicturesLabel" destination="73k-4u-GSo" id="jNX-14-2qy"/>
- <outlet property="showProfilePicturesSwitch" destination="9nu-XV-2dr" id="I53-un-CKF"/>
- <outlet property="systemStackView" destination="tmZ-Yt-Bt8" id="AMc-Gq-eFc"/>
- <outlet property="systemThemeButton" destination="9yp-pM-s75" id="cM3-1F-GHR"/>
- <outlet property="systemThemeLabel" destination="iF9-Vl-b0E" id="8lT-U7-odB"/>
- <outlet property="themeCell" destination="jp9-dS-eWG" id="d5k-Iz-haw"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="CW3-VB-HOX" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1844" y="671.51424287856082"/>
- </scene>
- <!--Font Size-->
- <scene sceneID="61B-zt-SgN">
- <objects>
- <tableViewController id="DcU-Gz-xaH" customClass="FontSizeViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="JG1-3E-mql">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="FontSizeCell" textLabel="eXp-kk-t9y" style="IBUITableViewCellStyleDefault" id="3xn-bM-y5d">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3xn-bM-y5d" id="lSq-v1-Jk2">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="xx pt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="eXp-kk-t9y">
- <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="DcU-Gz-xaH" id="l5Z-fa-evJ"/>
- <outlet property="delegate" destination="DcU-Gz-xaH" id="aF8-aM-Ugf"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Font Size" largeTitleDisplayMode="never" id="3OC-m7-GmD"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="emr-fI-efp" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1322" y="2615"/>
- </scene>
- <!--Support-->
- <scene sceneID="vcf-K7-dpb">
- <objects>
- <viewController id="YXd-Rd-n37" customClass="SupportViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="wUZ-PG-0pK">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <viewLayoutGuide key="safeArea" id="KiJ-iO-XpX"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Support" largeTitleDisplayMode="never" id="Yb8-8D-YgU"/>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Qyb-8B-a97" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-5377" y="3660"/>
- </scene>
- <!--Threema Work-->
- <scene sceneID="i5f-Si-Sni">
- <objects>
- <viewController title="Threema Work" id="jCJ-Xa-v16" customClass="ThreemaWorkViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="oa3-wk-YlW">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <viewLayoutGuide key="safeArea" id="HCP-yY-DFu"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Threema Work" largeTitleDisplayMode="never" id="EsR-Zr-hie"/>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Ta8-TF-XUU" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-6082" y="3660"/>
- </scene>
- <!--Privacy Policy-->
- <scene sceneID="dLm-4Q-eoX">
- <objects>
- <viewController storyboardIdentifier="PrivacyPolicyViewController" id="ExO-Da-OuT" customClass="PrivacyPolicyViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="mxa-H9-8pT">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <viewLayoutGuide key="safeArea" id="oJu-iR-IRQ"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Privacy Policy" largeTitleDisplayMode="never" id="SQX-77-CzT"/>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="d7D-1Q-JJO" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-4614" y="3660"/>
- </scene>
- <!--Image Size-->
- <scene sceneID="eTi-ay-W8l">
- <objects>
- <tableViewController storyboardIdentifier="ImageSizeViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="BgE-Bg-LfV" customClass="ImageSizeViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="h01-Hj-Gji">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" 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">
- <rect key="frame" x="0.0" y="55.5" width="375" height="62"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="258-UB-9Hd" id="Y0F-Tf-Wyf">
- <rect key="frame" x="0.0" y="0.0" width="335" height="62"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="11" width="32" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="16" y="34.5" width="125.5" height="14.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleCaption1"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="BgE-Bg-LfV" id="oNj-dV-rX7"/>
- <outlet property="delegate" destination="BgE-Bg-LfV" id="cKI-sd-rEd"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Image Size" largeTitleDisplayMode="never" id="owJ-3Q-Phk"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Niv-Ln-y9E" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-606" y="3191"/>
- </scene>
- <!--Notifications-->
- <scene sceneID="5mN-NJ-oOY">
- <objects>
- <tableViewController id="TrM-Qf-Qx4" customClass="GlobalNotificationSettingsViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="XqO-wS-cLA">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- <sections>
- <tableViewSection headerTitle="In App" id="f4R-xX-l5O">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="767-fB-vds" style="IBUITableViewCellStyleDefault" id="lHX-iX-iIT">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="lHX-iX-iIT" id="sp2-aT-Qsk">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="Hyu-IV-qZZ">
- <rect key="frame" x="161" y="6" width="52" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="inAppSoundsChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="kIQ-ZP-YOq"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="Hyu-IV-qZZ" id="PGW-Dh-YKe"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="ecU-zr-KHj" style="IBUITableViewCellStyleDefault" id="M4n-c4-r9Q">
- <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="M4n-c4-r9Q" id="Fte-uZ-s3J">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="deL-tR-mD5">
- <rect key="frame" x="161" y="6" width="52" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="inAppVibrateChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="dGu-Mg-rRo"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="deL-tR-mD5" id="jza-Ic-Yue"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="TK5-dl-jlh" style="IBUITableViewCellStyleDefault" id="vTy-Tq-X3e">
- <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vTy-Tq-X3e" id="2np-kl-PbJ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="rgH-Jx-nPi">
- <rect key="frame" x="161" y="6" width="52" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="inAppPreviewChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="HGs-vn-okK"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="rgH-Jx-nPi" id="4xC-l4-a8K"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Push Notifications" id="GAH-k5-f9K">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="243" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Z8x-Ww-GZI" id="a8m-r3-2FS">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Gxz-el-mis">
- <rect key="frame" x="16" y="12" width="49" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="GCE-65-OPQ">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- <connections>
- <segue destination="qv3-v9-aLb" kind="show" id="Gyf-bm-t8M"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="287" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Evb-58-Ek5" id="IBU-hm-l06">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Group Sound" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="K7w-aV-b8T">
- <rect key="frame" x="16" y="12" width="100.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="iDF-6E-SQr">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- <connections>
- <segue destination="qhR-xH-Gr5" kind="show" identifier="EditPushGroupSound" id="25v-R2-DcL"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="tmM-ej-SO5" style="IBUITableViewCellStyleDefault" id="zAU-Tq-9Ko">
- <rect key="frame" x="0.0" y="331" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="zAU-Tq-9Ko" id="6oB-CX-vx7">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="M0O-MD-hOh">
- <rect key="frame" x="163" y="6" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="pushDecryptChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="XDh-dA-dN0"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="M0O-MD-hOh" id="VRS-Hc-ju4"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="sDQ-S3-zni" style="IBUITableViewCellStyleDefault" id="r8y-Il-4Pl">
- <rect key="frame" x="0.0" y="375" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="r8y-Il-4Pl" id="zuI-Cd-rW2">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="gId-s3-jsa">
- <rect key="frame" x="163" y="6" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="pushShowNicknameChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="6yG-sx-TO7"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="gId-s3-jsa" id="riT-b5-w7Y"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Threema Call" id="7hB-ZG-6eB">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="474.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4HG-pk-T7F" id="DIc-AJ-vSR">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="XLO-ze-uPq">
- <rect key="frame" x="16" y="12" width="49" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="IzO-Nl-ekz">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="0KV-wo-YRa" kind="show" id="SS8-H8-0rf"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Work-Life balance" id="szt-Qx-ulO">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="QSK-AZ-ClW" style="IBUITableViewCellStyleDefault" id="Xm6-gH-MXB">
- <rect key="frame" x="0.0" y="574" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Xm6-gH-MXB" id="mbQ-vU-Gah">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="oqG-if-nwO">
- <rect key="frame" x="163" y="6" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="masterDndChangedWithSender:" destination="TrM-Qf-Qx4" eventType="valueChanged" id="lnj-rM-o80"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="oqG-if-nwO" id="Vh9-W9-NhX"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="618" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="174-wB-Vhl" id="eSj-xj-lVW">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Working Days" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="83i-Sz-RiA">
- <rect key="frame" x="16" y="12" width="105" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="yCv-CF-FTa">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="TdA-X0-iHo" kind="show" id="t5R-Is-Z5o"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="662" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="HuF-hQ-8Iz" id="ZeI-OJ-D3J">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Start" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="dQF-El-WN5">
- <rect key="frame" x="16" y="12" width="37.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2IJ-eg-1EA">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell 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">
- <rect key="frame" x="0.0" y="706" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RMr-l7-KOu" id="JHe-5j-GcI">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="End" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="fgB-qj-59D">
- <rect key="frame" x="16" y="12" width="29.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="fz9-XE-Oer">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="TrM-Qf-Qx4" id="5tu-bD-uJZ"/>
- <outlet property="delegate" destination="TrM-Qf-Qx4" id="ngk-di-of7"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Notifications" largeTitleDisplayMode="never" id="QQx-aC-ygX"/>
- <connections>
- <outlet property="inAppPreviewLabel" destination="TK5-dl-jlh" id="A6o-lC-raK"/>
- <outlet property="inAppPreviewSwitch" destination="rgH-Jx-nPi" id="SNw-EV-lmY"/>
- <outlet property="inAppSoundsLabel" destination="767-fB-vds" id="Rfw-M7-DhY"/>
- <outlet property="inAppSoundsSwitch" destination="Hyu-IV-qZZ" id="yQt-SF-XaN"/>
- <outlet property="inAppVibrateLabel" destination="ecU-zr-KHj" id="V8d-ve-cYA"/>
- <outlet property="inAppVibrateSwitch" destination="deL-tR-mD5" id="vAy-zo-m6l"/>
- <outlet property="masterDndDaysCell" destination="174-wB-Vhl" id="XiL-eO-Xf0"/>
- <outlet property="masterDndDaysLabel" destination="83i-Sz-RiA" id="5lh-0V-e4g"/>
- <outlet property="masterDndDaysValueLabel" destination="yCv-CF-FTa" id="BfX-P8-o8u"/>
- <outlet property="masterDndEndTimeCell" destination="RMr-l7-KOu" id="pBC-SH-ODn"/>
- <outlet property="masterDndEndTimeLabel" destination="fgB-qj-59D" id="EK8-rj-EM1"/>
- <outlet property="masterDndEndTimeValueLabel" destination="fz9-XE-Oer" id="enW-W6-yCM"/>
- <outlet property="masterDndLabel" destination="QSK-AZ-ClW" id="hQ8-ry-tbX"/>
- <outlet property="masterDndStartTimeCell" destination="HuF-hQ-8Iz" id="eRO-SA-NVX"/>
- <outlet property="masterDndStartTimeLabel" destination="dQF-El-WN5" id="a2s-Du-0gL"/>
- <outlet property="masterDndStartTimeValueLabel" destination="2IJ-eg-1EA" id="lT5-AL-L3w"/>
- <outlet property="masterDndSwitch" destination="oqG-if-nwO" id="crs-pN-k2B"/>
- <outlet property="pushDecryptLabel" destination="tmM-ej-SO5" id="XAJ-1K-QYd"/>
- <outlet property="pushDecryptSwitch" destination="M0O-MD-hOh" id="UnS-vt-ZLl"/>
- <outlet property="pushGroupSoundCell" destination="Evb-58-Ek5" id="moE-RE-k3L"/>
- <outlet property="pushGroupSoundLabel" destination="K7w-aV-b8T" id="JLP-n2-En9"/>
- <outlet property="pushGroupSoundValueLabel" destination="iDF-6E-SQr" id="bs8-2H-oxd"/>
- <outlet property="pushPreviewCell" destination="zAU-Tq-9Ko" id="cNC-an-r3O"/>
- <outlet property="pushShowNicknameLabel" destination="sDQ-S3-zni" id="PRP-G9-fMX"/>
- <outlet property="pushShowNicknameSwitch" destination="gId-s3-jsa" id="aI6-lG-Xe6"/>
- <outlet property="pushSoundLabel" destination="Gxz-el-mis" id="o34-6s-3Ks"/>
- <outlet property="pushSoundValueLabel" destination="GCE-65-OPQ" id="gEi-1u-yoC"/>
- <outlet property="voIPSoundLabel" destination="XLO-ze-uPq" id="tqw-iy-idt"/>
- <outlet property="voIPSoundValueLabel" destination="IzO-Nl-ekz" id="c7V-GI-NV7"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="hsB-HP-3Hy" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2298" y="1481"/>
- </scene>
- <!--Push Sound-->
- <scene sceneID="MNi-D0-Ueh">
- <objects>
- <tableViewController id="qv3-v9-aLb" customClass="PushSoundViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="KiM-AM-MaN">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="qT1-va-5Fb" style="IBUITableViewCellStyleDefault" id="Syl-BH-Bl7">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Syl-BH-Bl7" id="zN3-6Z-dmP">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="qT1-va-5Fb">
- <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="qv3-v9-aLb" id="8hx-EU-VbC"/>
- <outlet property="delegate" destination="qv3-v9-aLb" id="euw-jZ-Ofx"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Push Sound" largeTitleDisplayMode="never" id="wii-ly-S2S"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="FTe-3Q-bb2" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="231" y="755"/>
- </scene>
- <!--Threema Call Sound-->
- <scene sceneID="tI8-CU-KSs">
- <objects>
- <tableViewController id="0KV-wo-YRa" userLabel="Threema Call Sound" customClass="VoIPSoundViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="14V-py-ZFL">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="B1c-wM-V4d" style="IBUITableViewCellStyleDefault" id="KKV-bu-QN2">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="KKV-bu-QN2" id="OIK-cp-OR8">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="B1c-wM-V4d">
- <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="0KV-wo-YRa" id="HIe-7Z-TU4"/>
- <outlet property="delegate" destination="0KV-wo-YRa" id="AFq-8D-fdO"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Threema Call Sound" largeTitleDisplayMode="never" id="yts-q5-Yzc"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="q8N-Il-hHQ" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="230" y="1624"/>
- </scene>
- <!--MasterDndDaysViewController-->
- <scene sceneID="cto-Oi-7S1">
- <objects>
- <tableViewController id="TdA-X0-iHo" userLabel="MasterDndDaysViewController" customClass="MasterDndDaysViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="4D9-4W-vFT">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="MasterDndDaysCell" textLabel="upe-NW-h86" style="IBUITableViewCellStyleDefault" id="P8e-5U-M1X">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="P8e-5U-M1X" id="fFZ-Wl-g0E">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Monday" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="upe-NW-h86">
- <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="TdA-X0-iHo" id="d1a-sf-grt"/>
- <outlet property="delegate" destination="TdA-X0-iHo" id="OL1-fB-LJo"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Working Days" largeTitleDisplayMode="never" id="Y3i-h0-x0z"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="arC-9P-3Xx" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-660" y="2006"/>
- </scene>
- <!--Sync Exclusion List View Controller-->
- <scene sceneID="B0G-4r-CoG">
- <objects>
- <tableViewController id="ZhF-RE-lv8" customClass="SyncExclusionListViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="LmX-On-jac">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExclusionCell" textLabel="PX2-6n-WIX" style="IBUITableViewCellStyleDefault" id="bcf-cN-lKF">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bcf-cN-lKF" id="Sin-mw-mc4">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="PX2-6n-WIX">
- <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" reuseIdentifier="AddCell" textLabel="Sow-GN-gms" imageView="OlZ-Su-kjW" style="IBUITableViewCellStyleDefault" id="LfY-Bf-ahR">
- <rect key="frame" x="0.0" y="99" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LfY-Bf-ahR" id="iHg-nZ-ZKC">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="53" y="0.0" width="306" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" image="AddMember" id="OlZ-Su-kjW">
- <rect key="frame" x="16" y="10.5" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="ZhF-RE-lv8" id="Yn0-gS-Z7H"/>
- <outlet property="delegate" destination="ZhF-RE-lv8" id="UZk-tv-Sxa"/>
- </connections>
- </tableView>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="PG0-Ho-tWp" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-2026" y="-125"/>
- </scene>
- <!--Older than-->
- <scene sceneID="NsK-Jg-HXD">
- <objects>
- <tableViewController id="Hzc-Lf-ZjH" customClass="StorageManagementOlderThanViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" systemColor="systemBackgroundColor"/>
- <prototypes>
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" preservesSuperviewLayoutMargins="YES" selectionStyle="default" indentationWidth="10" reuseIdentifier="OlderThanCell" id="h6f-uo-76r">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" preservesSuperviewLayoutMargins="YES" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="h6f-uo-76r" id="wor-1e-ge6">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- </tableViewCellContentView>
- <connections>
- <segue destination="Aek-B3-BlA" kind="unwind" unwindAction="refreshOlderThanIndex:" id="Qan-g2-Wzy"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Hzc-Lf-ZjH" id="bBw-Xj-cfB"/>
- <outlet property="delegate" destination="Hzc-Lf-ZjH" id="KzK-Z2-jvC"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Older than" largeTitleDisplayMode="never" id="r6W-Ij-j5O"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="mko-CC-f3Z" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
- <exit id="Aek-B3-BlA" userLabel="Exit" sceneMemberID="exit"/>
- </objects>
- <point key="canvasLocation" x="-1825" y="4093"/>
- </scene>
- <!--Video Quality-->
- <scene sceneID="rmd-n4-qVA">
- <objects>
- <tableViewController id="kFh-T4-aJO" customClass="VideoQualityViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="NVV-GB-y5B">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" 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">
- <rect key="frame" x="0.0" y="55.5" width="375" height="57.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9eM-nU-uB5" id="R6U-Jn-OGK">
- <rect key="frame" x="0.0" y="0.0" width="335" height="57.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="JeY-ke-mv9">
- <rect key="frame" x="16" y="9" width="33" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Subtitle" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="F51-gk-IFX">
- <rect key="frame" x="16" y="32.5" width="44" height="14.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleCaption1"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="kFh-T4-aJO" id="cp8-B7-L3h"/>
- <outlet property="delegate" destination="kFh-T4-aJO" id="Y3h-Ji-f69"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Video Quality" largeTitleDisplayMode="never" id="Oji-5c-VQi"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="aRb-vW-izE" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-833" y="3884"/>
- </scene>
- <!--Video Quality-->
- <scene sceneID="3Gv-3n-OcY">
- <objects>
- <tableViewController id="ua2-6d-8w5" customClass="ThreemaVideoCallQualityViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="PrV-IU-wcd">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" 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">
- <rect key="frame" x="0.0" y="55.5" width="375" height="57.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="95j-qQ-Yv1" id="PL1-ze-kc7">
- <rect key="frame" x="0.0" y="0.0" width="335" height="57.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="2EM-QH-X8q">
- <rect key="frame" x="16" y="9" width="33" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Subtitle" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="vhl-XQ-YFx">
- <rect key="frame" x="16" y="32.5" width="44" height="14.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleCaption1"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="ua2-6d-8w5" id="qIO-pu-lV4"/>
- <outlet property="delegate" destination="ua2-6d-8w5" id="hxz-Q1-qns"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Video Quality" largeTitleDisplayMode="never" id="xdv-oq-YmZ"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="BP6-bF-e3G" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-4934" y="377"/>
- </scene>
- <!--Advanced-->
- <scene sceneID="CbY-lX-26Y">
- <objects>
- <tableViewController id="jNb-wC-joh" customClass="AdvancedSettingsViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="IHO-fW-RZ8">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- <sections>
- <tableViewSection headerTitle="Networking" footerTitle="" id="ukQ-aK-GUe">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="jKP-qh-haK" style="IBUITableViewCellStyleDefault" id="CQK-hJ-soJ">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CQK-hJ-soJ" id="lTk-Vx-Td5">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="COU-0n-jpD">
- <rect key="frame" x="162" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="enableIPv6Changed:" destination="jNb-wC-joh" eventType="valueChanged" id="Iws-On-Zoj"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="COU-0n-jpD" id="bgh-Jr-omO"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Sensor" footerTitle="" id="N0M-ec-m5Y">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="BK0-LJ-WwY" style="IBUITableViewCellStyleDefault" id="TMu-aO-hpW">
- <rect key="frame" x="0.0" y="167" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="TMu-aO-hpW" id="yNi-ks-Uld">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="4io-Vw-v9j">
- <rect key="frame" x="162" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="proximityMonitoringChanged:" destination="jNb-wC-joh" eventType="valueChanged" id="Q3C-WJ-ZVI"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="4io-Vw-v9j" id="XBf-UT-byv"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Validation logging" id="VzU-Hf-fg5">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="WeM-6s-Xpj" style="IBUITableViewCellStyleDefault" id="8Tg-MJ-eWg">
- <rect key="frame" x="0.0" y="271" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="8Tg-MJ-eWg" id="oXE-8Z-R10">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" translatesAutoresizingMaskIntoConstraints="NO" id="w73-Gv-QU8">
- <rect key="frame" x="162" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="validationLoggingChanged:" destination="jNb-wC-joh" eventType="valueChanged" id="ISc-1o-EWW"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="accessoryView" destination="w73-Gv-QU8" id="HLf-da-Nqf"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="k9C-Wp-8hl" detailTextLabel="67x-OC-XxU" style="IBUITableViewCellStyleValue1" id="LNI-F0-5pZ">
- <rect key="frame" x="0.0" y="315" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LNI-F0-5pZ" id="Rva-kc-OPd">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Log Size" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="k9C-Wp-8hl">
- <rect key="frame" x="16" y="12" width="65" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="322.5" y="12" width="36.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="m9f-E9-TK7" style="IBUITableViewCellStyleDefault" id="H4J-YE-Fgg">
- <rect key="frame" x="0.0" y="359" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="H4J-YE-Fgg" id="NDc-wF-6pL">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Email Log" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="m9f-E9-TK7">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="KvG-gM-I5I" style="IBUITableViewCellStyleDefault" id="0ok-yW-hpY">
- <rect key="frame" x="0.0" y="403" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="0ok-yW-hpY" id="nuy-RZ-u3R">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Clear Log" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="KvG-gM-I5I">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="EbJ-z9-VNn" userLabel="Sentry">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="Nyx-m0-yFD" detailTextLabel="RP5-V9-cLk" style="IBUITableViewCellStyleValue1" id="6EQ-oY-luY">
- <rect key="frame" x="0.0" y="486.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="6EQ-oY-luY" id="jR7-zz-3iV">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Sentry" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="Nyx-m0-yFD">
- <rect key="frame" x="16" y="12" width="50" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="315" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="TnV-WA-jSe" userLabel="WebRTC Diagnostics">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="eN8-vV-OIw" style="IBUITableViewCellStyleDefault" id="0uO-n4-M3U">
- <rect key="frame" x="0.0" y="570" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="0uO-n4-M3U" id="GKA-Mk-iTS">
- <rect key="frame" x="0.0" y="0.0" width="348" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="WebRTC Diagnostics" textAlignment="natural" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="eN8-vV-OIw">
- <rect key="frame" x="16" y="0.0" width="324" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <nil key="textColor"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="v7U-eW-BRI" kind="show" id="cH2-dF-NeJ"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="fKv-Ae-5f0" style="IBUITableViewCellStyleDefault" id="mf1-cU-s3g">
- <rect key="frame" x="0.0" y="614" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="mf1-cU-s3g" id="AH9-6n-gT8">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Flush Message Queue" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="fKv-Ae-5f0">
- <rect key="frame" x="16" y="0.0" width="343" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="jNb-wC-joh" id="gH1-aZ-nIW"/>
- <outlet property="delegate" destination="jNb-wC-joh" id="9zo-Yb-ErE"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Advanced" largeTitleDisplayMode="never" id="UsC-dS-qae"/>
- <connections>
- <outlet property="enableIPv6Switch" destination="COU-0n-jpD" id="fVv-6e-hcE"/>
- <outlet property="flushMessageQueueCell" destination="mf1-cU-s3g" id="Zfv-PS-2kh"/>
- <outlet property="logSizeLabel" destination="67x-OC-XxU" id="Der-o5-Onk"/>
- <outlet property="proximityMonitoringSwitch" destination="4io-Vw-v9j" id="AhK-1R-Kab"/>
- <outlet property="sentryAppDeviceLabel" destination="RP5-V9-cLk" id="vXB-u6-CQg"/>
- <outlet property="validationLoggingSwitch" destination="w73-Gv-QU8" id="Ufy-Dn-Jlp"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="kcE-wn-ApW" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-3305" y="3660"/>
- </scene>
- <!--CallDiagnostic-->
- <scene sceneID="Sxt-HM-5pA">
- <objects>
- <viewControllerPlaceholder storyboardName="CallDiagnostic" id="v7U-eW-BRI" sceneMemberID="viewController">
- <navigationItem key="navigationItem" largeTitleDisplayMode="never" id="TIS-ZF-YlO"/>
- </viewControllerPlaceholder>
- <placeholder placeholderIdentifier="IBFirstResponder" id="CF7-ml-t3P" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-3307" y="4112"/>
- </scene>
- <!--Push Group Sound-->
- <scene sceneID="C7y-oi-wiZ">
- <objects>
- <tableViewController id="qhR-xH-Gr5" customClass="PushSoundViewController" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="uIT-S0-TDC">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="9WQ-EZ-toz" style="IBUITableViewCellStyleDefault" id="Epl-jd-B9C">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Epl-jd-B9C" id="1LQ-CC-u11">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="9WQ-EZ-toz">
- <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="qhR-xH-Gr5" id="7sV-Nn-eH6"/>
- <outlet property="delegate" destination="qhR-xH-Gr5" id="9n8-Ap-ewf"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Push Group Sound" largeTitleDisplayMode="never" id="ezY-mc-1PI"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="JLp-rw-eCb" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="921" y="1123"/>
- </scene>
- <!--Display Order-->
- <scene sceneID="47c-9O-gE2">
- <objects>
- <tableViewController id="gvW-Vv-w9b" customClass="DisplayOrderTableViewController" customModule="Threema" customModuleProvider="target" sceneMemberID="viewController">
- <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" id="DlU-8Y-yGn">
- <rect key="frame" x="0.0" y="0.0" width="375" height="647"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490199999995" green="0.93725490199999995" blue="0.95686274510000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="DisplayOrderCell" textLabel="L3v-Ts-9T0" style="IBUITableViewCellStyleDefault" id="kHr-Bm-QDk">
- <rect key="frame" x="0.0" y="55.5" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="kHr-Bm-QDk" id="JSf-4j-m1k">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="First, last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontForContentSizeCategory="YES" adjustsFontSizeToFit="NO" id="L3v-Ts-9T0">
- <rect key="frame" x="16" y="0.0" width="343" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" style="UICTFontTextStyleBody"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="gvW-Vv-w9b" id="qM6-xC-F55"/>
- <outlet property="delegate" destination="gvW-Vv-w9b" id="Mi6-s9-JUC"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Display Order" largeTitleDisplayMode="never" id="DWN-sS-DbE"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="0rI-dz-5Tb" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="-1135.2" y="671.51424287856082"/>
- </scene>
- </scenes>
- <designables>
- <designable name="ZwR-ey-2Tv">
- <size key="intrinsicContentSize" width="133.5" height="38"/>
- </designable>
- </designables>
- <inferredMetricsTieBreakers>
- <segue reference="RkS-Fm-UCf"/>
- </inferredMetricsTieBreakers>
- <resources>
- <image name="AddMember" width="22" height="22"/>
- <image name="AdvancedLight" width="26" height="26"/>
- <image name="AppearanceLight" width="26" height="26"/>
- <image name="ChatLight" width="26" height="26"/>
- <image name="Dark-Theme" width="83" height="180"/>
- <image name="DevModeLight" width="26" height="26"/>
- <image name="InviteAFriendLight" width="26" height="26"/>
- <image name="LicenseLight" width="26" height="26"/>
- <image name="Light-Theme" width="83" height="180"/>
- <image name="MediaLight" width="26" height="26"/>
- <image name="NotificationsLight" width="27" height="26"/>
- <image name="PasscodeLockLight" width="26" height="26"/>
- <image name="PrivacyLight" width="26" height="26"/>
- <image name="PrivacyPolicyLight" width="26" height="26"/>
- <image name="QRScan" width="22" height="22"/>
- <image name="StorageManagementLight" width="26" height="26"/>
- <image name="SupportLight" width="26" height="26"/>
- <image name="System-Theme" width="83" height="180"/>
- <image name="ThreemaCallsSettingsLight" width="26" height="26"/>
- <image name="ThreemaChannelLight" width="26" height="26"/>
- <image name="ThreemaWebLight" width="26" height="26"/>
- <image name="ThreemaWorkSettingsLight" width="26" height="26"/>
- <image name="WallpaperDefault.png" width="100" height="150"/>
- <systemColor name="groupTableViewBackgroundColor">
- <color red="0.94901960784313721" green="0.94901960784313721" blue="0.96862745098039216" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </systemColor>
- <systemColor name="systemBackgroundColor">
- <color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
- </systemColor>
- </resources>
- </document>
|