MainStoryboard.storyboard 465 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11762" systemVersion="16C67" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" colorMatched="YES" initialViewController="4">
  3. <dependencies>
  4. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
  5. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  6. </dependencies>
  7. <scenes>
  8. <!--Main Tab Bar Controller-->
  9. <scene sceneID="15">
  10. <objects>
  11. <tabBarController storyboardIdentifier="tabBarController" id="4" customClass="MainTabBarController" sceneMemberID="viewController">
  12. <nil key="simulatedBottomBarMetrics"/>
  13. <tabBar key="tabBar" contentMode="scaleToFill" id="5">
  14. <rect key="frame" x="0.0" y="431" width="320" height="49"/>
  15. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
  16. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  17. </tabBar>
  18. <connections>
  19. <segue destination="jkA-kt-EVh" kind="relationship" relationship="viewControllers" id="78a-91-TLZ"/>
  20. <segue destination="4Fs-j8-Z1S" kind="relationship" relationship="viewControllers" id="mhn-Fn-s9p"/>
  21. <segue destination="uvv-Ko-dQ8" kind="relationship" relationship="viewControllers" id="3w4-zc-fqJ"/>
  22. <segue destination="OHY-cO-A6g" kind="relationship" relationship="viewControllers" id="odg-P3-ril"/>
  23. </connections>
  24. </tabBarController>
  25. <placeholder placeholderIdentifier="IBFirstResponder" id="14" sceneMemberID="firstResponder"/>
  26. </objects>
  27. <point key="canvasLocation" x="242" y="468"/>
  28. </scene>
  29. <!--Einstellungen-->
  30. <scene sceneID="KqS-on-sEZ">
  31. <objects>
  32. <tableViewController storyboardIdentifier="settingsViewController" id="y1R-kI-4Pp" customClass="SettingsViewController" sceneMemberID="viewController">
  33. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="742-dp-1dh">
  34. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  35. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  36. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  37. <sections>
  38. <tableViewSection id="6H0-fr-XhZ">
  39. <cells>
  40. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="lEn-4H-g7j" style="IBUITableViewCellStyleDefault" id="H4a-Gb-920">
  41. <rect key="frame" x="0.0" y="35" width="375" height="44"/>
  42. <autoresizingMask key="autoresizingMask"/>
  43. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="H4a-Gb-920" id="l8r-uP-mbb">
  44. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  45. <autoresizingMask key="autoresizingMask"/>
  46. <subviews>
  47. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Privatsphäre" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="lEn-4H-g7j">
  48. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  49. <autoresizingMask key="autoresizingMask"/>
  50. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  51. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  52. <nil key="highlightedColor"/>
  53. </label>
  54. </subviews>
  55. </tableViewCellContentView>
  56. <connections>
  57. <segue destination="3DT-Cu-DnP" kind="push" id="zeL-bd-5s0"/>
  58. </connections>
  59. </tableViewCell>
  60. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="CDh-bl-cmC" style="IBUITableViewCellStyleDefault" id="cqP-99-7bZ">
  61. <rect key="frame" x="0.0" y="79" width="375" height="44"/>
  62. <autoresizingMask key="autoresizingMask"/>
  63. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="cqP-99-7bZ" id="eIe-5P-bmz">
  64. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  65. <autoresizingMask key="autoresizingMask"/>
  66. <subviews>
  67. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Benachrichtigungen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="CDh-bl-cmC">
  68. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  69. <autoresizingMask key="autoresizingMask"/>
  70. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  71. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  72. <nil key="highlightedColor"/>
  73. </label>
  74. </subviews>
  75. </tableViewCellContentView>
  76. <connections>
  77. <segue destination="Qt8-lZ-oDY" kind="push" id="bxe-HQ-JSQ"/>
  78. </connections>
  79. </tableViewCell>
  80. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="eqg-06-XE0" style="IBUITableViewCellStyleDefault" id="teM-wg-NEQ">
  81. <rect key="frame" x="0.0" y="123" width="375" height="44"/>
  82. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  83. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="teM-wg-NEQ" id="Hpe-BZ-Mzu">
  84. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  85. <autoresizingMask key="autoresizingMask"/>
  86. <subviews>
  87. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Chat-Anzeige" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="eqg-06-XE0">
  88. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  89. <autoresizingMask key="autoresizingMask"/>
  90. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  91. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  92. <nil key="highlightedColor"/>
  93. </label>
  94. </subviews>
  95. </tableViewCellContentView>
  96. <connections>
  97. <segue destination="2eW-Y2-pa9" kind="push" id="axe-On-Idy"/>
  98. </connections>
  99. </tableViewCell>
  100. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="sZY-9f-Y18" style="IBUITableViewCellStyleDefault" id="mQa-Rh-wqK">
  101. <rect key="frame" x="0.0" y="167" width="375" height="44"/>
  102. <autoresizingMask key="autoresizingMask"/>
  103. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="mQa-Rh-wqK" id="3Ah-6T-9SX">
  104. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  105. <autoresizingMask key="autoresizingMask"/>
  106. <subviews>
  107. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Medien" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="sZY-9f-Y18">
  108. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  109. <autoresizingMask key="autoresizingMask"/>
  110. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  111. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  112. <nil key="highlightedColor"/>
  113. </label>
  114. </subviews>
  115. </tableViewCellContentView>
  116. <connections>
  117. <segue destination="MdZ-GK-jas" kind="push" id="j3T-4v-OLT"/>
  118. </connections>
  119. </tableViewCell>
  120. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="GNP-TO-eLx" detailTextLabel="vaO-K3-a0M" style="IBUITableViewCellStyleValue1" id="h3l-TB-vk0">
  121. <rect key="frame" x="0.0" y="211" width="375" height="44"/>
  122. <autoresizingMask key="autoresizingMask"/>
  123. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="h3l-TB-vk0" id="1E6-90-jCb">
  124. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  125. <autoresizingMask key="autoresizingMask"/>
  126. <subviews>
  127. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Code-Sperre" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GNP-TO-eLx">
  128. <rect key="frame" x="16" y="12" width="115" height="20"/>
  129. <autoresizingMask key="autoresizingMask"/>
  130. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  131. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  132. <nil key="highlightedColor"/>
  133. </label>
  134. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="vaO-K3-a0M">
  135. <rect key="frame" x="296" y="12" width="44" height="20"/>
  136. <autoresizingMask key="autoresizingMask"/>
  137. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  138. <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  139. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  140. </label>
  141. </subviews>
  142. </tableViewCellContentView>
  143. </tableViewCell>
  144. </cells>
  145. </tableViewSection>
  146. <tableViewSection headerTitle="" id="KRJ-pA-Z3a">
  147. <cells>
  148. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Xti-Mb-wdd" detailTextLabel="Qcw-q1-XhM" style="IBUITableViewCellStyleValue1" id="bST-sJ-2dT">
  149. <rect key="frame" x="0.0" y="275" width="375" height="44"/>
  150. <autoresizingMask key="autoresizingMask"/>
  151. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bST-sJ-2dT" id="DEC-oh-GRx">
  152. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  153. <autoresizingMask key="autoresizingMask"/>
  154. <subviews>
  155. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Netzwerkstatus" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Xti-Mb-wdd">
  156. <rect key="frame" x="16" y="12" width="118" height="20"/>
  157. <autoresizingMask key="autoresizingMask"/>
  158. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  159. <nil key="highlightedColor"/>
  160. </label>
  161. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Verbunden" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Qcw-q1-XhM">
  162. <rect key="frame" x="276" y="12" width="84" height="20"/>
  163. <autoresizingMask key="autoresizingMask"/>
  164. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  165. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  166. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  167. </label>
  168. </subviews>
  169. </tableViewCellContentView>
  170. </tableViewCell>
  171. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="GUh-ay-NaP" detailTextLabel="8bH-h3-6LW" style="IBUITableViewCellStyleValue1" id="gRq-MQ-WIL">
  172. <rect key="frame" x="0.0" y="319" width="375" height="44"/>
  173. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  174. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gRq-MQ-WIL" id="gTx-s6-xoP">
  175. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  176. <autoresizingMask key="autoresizingMask"/>
  177. <subviews>
  178. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Version" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GUh-ay-NaP">
  179. <rect key="frame" x="16" y="12" width="57" height="20"/>
  180. <autoresizingMask key="autoresizingMask"/>
  181. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  182. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  183. <nil key="highlightedColor"/>
  184. </label>
  185. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="0.0 (000)" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="8bH-h3-6LW">
  186. <rect key="frame" x="289" y="12" width="71" height="20"/>
  187. <autoresizingMask key="autoresizingMask"/>
  188. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  189. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  190. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  191. </label>
  192. </subviews>
  193. </tableViewCellContentView>
  194. </tableViewCell>
  195. </cells>
  196. </tableViewSection>
  197. <tableViewSection headerTitle="" id="MR4-7N-rxJ">
  198. <cells>
  199. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="rvd-oB-oRT" style="IBUITableViewCellStyleDefault" id="dYC-Cc-Blb">
  200. <rect key="frame" x="0.0" y="383" width="375" height="44"/>
  201. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  202. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dYC-Cc-Blb" id="THy-no-5Mq">
  203. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  204. <autoresizingMask key="autoresizingMask"/>
  205. <subviews>
  206. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Freunde einladen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="rvd-oB-oRT">
  207. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  208. <autoresizingMask key="autoresizingMask"/>
  209. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  210. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  211. <nil key="highlightedColor"/>
  212. </label>
  213. </subviews>
  214. </tableViewCellContentView>
  215. </tableViewCell>
  216. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="v0T-sr-aCe" style="IBUITableViewCellStyleDefault" id="zrC-JX-e84">
  217. <rect key="frame" x="0.0" y="427" width="375" height="44"/>
  218. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  219. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="zrC-JX-e84" id="2LV-GK-dIz">
  220. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  221. <autoresizingMask key="autoresizingMask"/>
  222. <subviews>
  223. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Channel" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="v0T-sr-aCe">
  224. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  225. <autoresizingMask key="autoresizingMask"/>
  226. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  227. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  228. <nil key="highlightedColor"/>
  229. </label>
  230. </subviews>
  231. </tableViewCellContentView>
  232. </tableViewCell>
  233. </cells>
  234. </tableViewSection>
  235. <tableViewSection headerTitle="" id="FAH-aO-8KP">
  236. <cells>
  237. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="4IP-qY-TLk" style="IBUITableViewCellStyleDefault" id="5A3-C4-gi4">
  238. <rect key="frame" x="0.0" y="491" width="375" height="44"/>
  239. <autoresizingMask key="autoresizingMask"/>
  240. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="5A3-C4-gi4" id="QQO-Ve-9WG">
  241. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  242. <autoresizingMask key="autoresizingMask"/>
  243. <subviews>
  244. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Support" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4IP-qY-TLk">
  245. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  246. <autoresizingMask key="autoresizingMask"/>
  247. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  248. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  249. <nil key="highlightedColor"/>
  250. </label>
  251. </subviews>
  252. </tableViewCellContentView>
  253. <connections>
  254. <segue destination="dET-dz-QOT" kind="push" id="qaB-YZ-IJr"/>
  255. </connections>
  256. </tableViewCell>
  257. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="2Ou-Sd-ynK" style="IBUITableViewCellStyleDefault" id="QZa-h8-Mmz">
  258. <rect key="frame" x="0.0" y="535" width="375" height="44"/>
  259. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  260. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QZa-h8-Mmz" id="Stj-y8-fhL">
  261. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  262. <autoresizingMask key="autoresizingMask"/>
  263. <subviews>
  264. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Lizenz" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2Ou-Sd-ynK">
  265. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  266. <autoresizingMask key="autoresizingMask"/>
  267. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  268. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  269. <nil key="highlightedColor"/>
  270. </label>
  271. </subviews>
  272. </tableViewCellContentView>
  273. <connections>
  274. <segue destination="Wea-Ps-HJX" kind="push" id="o8y-Le-WFm"/>
  275. </connections>
  276. </tableViewCell>
  277. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="py0-eN-3Op" style="IBUITableViewCellStyleDefault" id="U3E-Qa-ms3">
  278. <rect key="frame" x="0.0" y="579" width="375" height="44"/>
  279. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  280. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="U3E-Qa-ms3" id="YiK-EX-7f6">
  281. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  282. <autoresizingMask key="autoresizingMask"/>
  283. <subviews>
  284. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Erweitert" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="py0-eN-3Op">
  285. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  286. <autoresizingMask key="autoresizingMask"/>
  287. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  288. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  289. <nil key="highlightedColor"/>
  290. </label>
  291. </subviews>
  292. </tableViewCellContentView>
  293. <connections>
  294. <segue destination="7pH-aa-DuY" kind="push" id="QxW-Mk-cjF"/>
  295. </connections>
  296. </tableViewCell>
  297. </cells>
  298. </tableViewSection>
  299. </sections>
  300. <connections>
  301. <outlet property="dataSource" destination="y1R-kI-4Pp" id="ysc-oU-K2m"/>
  302. <outlet property="delegate" destination="y1R-kI-4Pp" id="kYs-kH-2bW"/>
  303. </connections>
  304. </tableView>
  305. <navigationItem key="navigationItem" title="Einstellungen" id="Wz8-k0-mkY"/>
  306. <connections>
  307. <outlet property="connectionStatusLabel" destination="Qcw-q1-XhM" id="sJY-8D-X6Z"/>
  308. <outlet property="passcodeLockLabel" destination="vaO-K3-a0M" id="nzM-EW-9YO"/>
  309. <outlet property="versionLabel" destination="8bH-h3-6LW" id="vub-bt-62f"/>
  310. </connections>
  311. </tableViewController>
  312. <placeholder placeholderIdentifier="IBFirstResponder" id="zHz-CH-wQl" userLabel="First Responder" sceneMemberID="firstResponder"/>
  313. </objects>
  314. <point key="canvasLocation" x="1491" y="3165"/>
  315. </scene>
  316. <!--Privatsphäre-->
  317. <scene sceneID="cIr-nx-zr5">
  318. <objects>
  319. <tableViewController id="3DT-Cu-DnP" customClass="PrivacySettingsViewController" sceneMemberID="viewController">
  320. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="Qp9-F7-Eia">
  321. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  322. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  323. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  324. <sections>
  325. <tableViewSection headerTitle="Kontakte" footerTitle="Jeder kann Ihnen Nachrichten senden. Neue Kontakte werden bei der ersten Nachricht automatisch hinzugefügt." id="AYq-Zn-aPI">
  326. <cells>
  327. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="18v-MF-Xwf">
  328. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  329. <autoresizingMask key="autoresizingMask"/>
  330. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="18v-MF-Xwf" id="5nW-0a-9bp">
  331. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  332. <autoresizingMask key="autoresizingMask"/>
  333. <subviews>
  334. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Kontakte synchronisieren" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="jT9-XX-nfF">
  335. <rect key="frame" x="15" y="11" width="231" height="21"/>
  336. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  337. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  338. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  339. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  340. <nil key="highlightedColor"/>
  341. </label>
  342. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="vuE-72-swA">
  343. <rect key="frame" x="309" y="6" width="51" height="31"/>
  344. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  345. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  346. <connections>
  347. <action selector="syncContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="Ne8-0u-O17"/>
  348. </connections>
  349. </switch>
  350. </subviews>
  351. </tableViewCellContentView>
  352. </tableViewCell>
  353. <tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="2HH-IN-dw7" style="IBUITableViewCellStyleDefault" id="bZC-FQ-Tho">
  354. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  355. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  356. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bZC-FQ-Tho" id="tcU-5v-uat">
  357. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  358. <autoresizingMask key="autoresizingMask"/>
  359. <subviews>
  360. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Ausschlussliste" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2HH-IN-dw7">
  361. <rect key="frame" x="16" y="0.0" width="324" height="43.5"/>
  362. <autoresizingMask key="autoresizingMask"/>
  363. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  364. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  365. <nil key="highlightedColor"/>
  366. </label>
  367. </subviews>
  368. </tableViewCellContentView>
  369. <connections>
  370. <segue destination="77C-YN-K8y" kind="push" id="FsE-ea-5ad"/>
  371. </connections>
  372. </tableViewCell>
  373. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="jeI-hi-SxN">
  374. <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
  375. <autoresizingMask key="autoresizingMask"/>
  376. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jeI-hi-SxN" id="PUz-e0-b1e">
  377. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  378. <autoresizingMask key="autoresizingMask"/>
  379. <subviews>
  380. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Unbekannte blockieren" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Tps-qx-ecO">
  381. <rect key="frame" x="14" y="11" width="272" height="21"/>
  382. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  383. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  384. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  385. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  386. <nil key="highlightedColor"/>
  387. </label>
  388. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="HQD-xS-L3t">
  389. <rect key="frame" x="309" y="6" width="51" height="31"/>
  390. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  391. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  392. <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  393. <connections>
  394. <action selector="blockUnknownChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="a5T-sp-aeY"/>
  395. </connections>
  396. </switch>
  397. </subviews>
  398. </tableViewCellContentView>
  399. </tableViewCell>
  400. </cells>
  401. </tableViewSection>
  402. <tableViewSection footerTitle="Select to hide Threema IDs that were inactive for more than 6 months." id="jkG-RT-sd8">
  403. <cells>
  404. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="EqO-2o-voj">
  405. <rect key="frame" x="0.0" y="259.5" width="375" height="44"/>
  406. <autoresizingMask key="autoresizingMask"/>
  407. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EqO-2o-voj" id="ckF-6r-271">
  408. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  409. <autoresizingMask key="autoresizingMask"/>
  410. <subviews>
  411. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Inaktive Kontakte ausblenden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="12" adjustsLetterSpacingToFitWidth="YES" id="kDU-7i-Rj2">
  412. <rect key="frame" x="15" y="11" width="231" height="21"/>
  413. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  414. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  415. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  416. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  417. <nil key="highlightedColor"/>
  418. </label>
  419. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" id="kBF-Yp-hJg">
  420. <rect key="frame" x="309" y="6" width="51" height="31"/>
  421. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  422. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  423. <connections>
  424. <action selector="hideStaleContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="hxv-sp-knM"/>
  425. <action selector="syncContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="pHK-Mq-Kgt"/>
  426. </connections>
  427. </switch>
  428. </subviews>
  429. </tableViewCellContentView>
  430. </tableViewCell>
  431. </cells>
  432. </tableViewSection>
  433. <tableViewSection headerTitle="Chat" id="Fzt-jY-2Jm">
  434. <cells>
  435. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Gkt-df-am3">
  436. <rect key="frame" x="0.0" y="387.5" width="375" height="44"/>
  437. <autoresizingMask key="autoresizingMask"/>
  438. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Gkt-df-am3" id="Cv8-fS-UX1">
  439. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  440. <autoresizingMask key="autoresizingMask"/>
  441. <subviews>
  442. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Lesebestätigungen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="r6F-vi-8UO">
  443. <rect key="frame" x="15" y="11" width="231" height="21"/>
  444. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  445. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  446. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  447. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  448. <nil key="highlightedColor"/>
  449. </label>
  450. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="5Fm-bT-q6N">
  451. <rect key="frame" x="309" y="6" width="51" height="31"/>
  452. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  453. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  454. <connections>
  455. <action selector="readReceiptsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="8Hc-XO-kaM"/>
  456. </connections>
  457. </switch>
  458. </subviews>
  459. </tableViewCellContentView>
  460. </tableViewCell>
  461. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="lrI-DS-1eP">
  462. <rect key="frame" x="0.0" y="431.5" width="375" height="44"/>
  463. <autoresizingMask key="autoresizingMask"/>
  464. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="lrI-DS-1eP" id="692-RF-7gW">
  465. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  466. <autoresizingMask key="autoresizingMask"/>
  467. <subviews>
  468. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Melden wenn ich tippe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="soD-G3-dWi">
  469. <rect key="frame" x="15" y="11" width="231" height="21"/>
  470. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  471. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  472. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  473. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  474. <nil key="highlightedColor"/>
  475. </label>
  476. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="SnF-xk-cxb">
  477. <rect key="frame" x="309" y="6" width="51" height="31"/>
  478. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  479. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  480. <connections>
  481. <action selector="typingIndicatorChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="KJ8-UY-COs"/>
  482. </connections>
  483. </switch>
  484. </subviews>
  485. </tableViewCellContentView>
  486. </tableViewCell>
  487. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="gxu-hq-LKg">
  488. <rect key="frame" x="0.0" y="475.5" width="375" height="44"/>
  489. <autoresizingMask key="autoresizingMask"/>
  490. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gxu-hq-LKg" id="vMV-Nt-K9m">
  491. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  492. <autoresizingMask key="autoresizingMask"/>
  493. <subviews>
  494. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="POIs auswählen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="eyb-ZP-SVT">
  495. <rect key="frame" x="15" y="11" width="231" height="21"/>
  496. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  497. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  498. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  499. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  500. <nil key="highlightedColor"/>
  501. </label>
  502. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="7fA-XI-jhq">
  503. <rect key="frame" x="309" y="6" width="51" height="31"/>
  504. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  505. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  506. <connections>
  507. <action selector="poiChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="GWV-el-wUJ"/>
  508. </connections>
  509. </switch>
  510. </subviews>
  511. </tableViewCellContentView>
  512. </tableViewCell>
  513. </cells>
  514. </tableViewSection>
  515. </sections>
  516. <connections>
  517. <outlet property="dataSource" destination="3DT-Cu-DnP" id="81Z-Af-v31"/>
  518. <outlet property="delegate" destination="3DT-Cu-DnP" id="y7N-8E-FON"/>
  519. </connections>
  520. </tableView>
  521. <navigationItem key="navigationItem" title="Privatsphäre" id="fIw-mi-sE8"/>
  522. <connections>
  523. <outlet property="blockUnknownSwitch" destination="HQD-xS-L3t" id="Ira-Qr-d9N"/>
  524. <outlet property="hideStaleContactsSwitch" destination="kBF-Yp-hJg" id="0AS-19-yMP"/>
  525. <outlet property="poiSwitch" destination="7fA-XI-jhq" id="jtK-Tz-fyE"/>
  526. <outlet property="readReceiptsSwitch" destination="5Fm-bT-q6N" id="WBK-fu-D8N"/>
  527. <outlet property="syncContactsSwitch" destination="vuE-72-swA" id="Z9j-Co-HCK"/>
  528. <outlet property="typingIndicatorSwitch" destination="SnF-xk-cxb" id="FLk-07-K7d"/>
  529. </connections>
  530. </tableViewController>
  531. <placeholder placeholderIdentifier="IBFirstResponder" id="FRS-uU-8Vn" userLabel="First Responder" sceneMemberID="firstResponder"/>
  532. </objects>
  533. <point key="canvasLocation" x="2447" y="2113"/>
  534. </scene>
  535. <!--Medien-->
  536. <scene sceneID="9n2-JM-W9X">
  537. <objects>
  538. <tableViewController id="MdZ-GK-jas" customClass="MediaSettingsViewController" sceneMemberID="viewController">
  539. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="vlJ-Ng-k3n">
  540. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  541. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  542. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  543. <sections>
  544. <tableViewSection id="bM9-XT-VOT">
  545. <cells>
  546. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="dtR-IG-zuv" detailTextLabel="al2-Js-fb2" style="IBUITableViewCellStyleValue1" id="kg0-hd-wkF">
  547. <rect key="frame" x="0.0" y="35" width="375" height="44"/>
  548. <autoresizingMask key="autoresizingMask"/>
  549. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="kg0-hd-wkF" id="BWL-gE-2qP">
  550. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  551. <autoresizingMask key="autoresizingMask"/>
  552. <subviews>
  553. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Bildgrösse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="dtR-IG-zuv">
  554. <rect key="frame" x="16" y="12" width="84" height="21"/>
  555. <autoresizingMask key="autoresizingMask"/>
  556. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  557. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  558. <nil key="highlightedColor"/>
  559. </label>
  560. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="al2-Js-fb2">
  561. <rect key="frame" x="296" y="12" width="44" height="21"/>
  562. <autoresizingMask key="autoresizingMask"/>
  563. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  564. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  565. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  566. </label>
  567. </subviews>
  568. </tableViewCellContentView>
  569. <connections>
  570. <segue destination="AQR-Vz-MhD" kind="push" id="ojf-XT-fRD"/>
  571. </connections>
  572. </tableViewCell>
  573. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="g4Y-lJ-Iqq" detailTextLabel="Uj2-yb-tVZ" style="IBUITableViewCellStyleValue1" id="xzu-8Q-qMl">
  574. <rect key="frame" x="0.0" y="79" width="375" height="44"/>
  575. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  576. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xzu-8Q-qMl" id="E7u-5R-8mb">
  577. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  578. <autoresizingMask key="autoresizingMask"/>
  579. <subviews>
  580. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Videoqualität" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="g4Y-lJ-Iqq">
  581. <rect key="frame" x="16" y="12" width="102" height="21"/>
  582. <autoresizingMask key="autoresizingMask"/>
  583. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  584. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  585. <nil key="highlightedColor"/>
  586. </label>
  587. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Uj2-yb-tVZ">
  588. <rect key="frame" x="296" y="12" width="44" height="21"/>
  589. <autoresizingMask key="autoresizingMask"/>
  590. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  591. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  592. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  593. </label>
  594. </subviews>
  595. </tableViewCellContentView>
  596. <connections>
  597. <segue destination="UHC-G1-hob" kind="push" id="q9b-WE-luc"/>
  598. </connections>
  599. </tableViewCell>
  600. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="62" id="RzH-8a-U9m">
  601. <rect key="frame" x="0.0" y="123" width="375" height="62"/>
  602. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  603. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RzH-8a-U9m" id="rQi-gB-u1d">
  604. <rect key="frame" x="0.0" y="0.0" width="375" height="61.5"/>
  605. <autoresizingMask key="autoresizingMask"/>
  606. <subviews>
  607. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Medien automatisch in Aufnahmen speichern" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="2cJ-V4-4C9">
  608. <rect key="frame" x="15" y="8" width="180" height="43"/>
  609. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  610. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  611. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  612. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  613. <nil key="highlightedColor"/>
  614. </label>
  615. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="OLc-42-qCb">
  616. <rect key="frame" x="305" y="14" width="51" height="31"/>
  617. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  618. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  619. <connections>
  620. <action selector="autoSaveMediaChanged:" destination="MdZ-GK-jas" eventType="valueChanged" id="yVv-SR-Qtz"/>
  621. </connections>
  622. </switch>
  623. </subviews>
  624. </tableViewCellContentView>
  625. </tableViewCell>
  626. </cells>
  627. </tableViewSection>
  628. </sections>
  629. <connections>
  630. <outlet property="dataSource" destination="MdZ-GK-jas" id="zJ2-3b-i3C"/>
  631. <outlet property="delegate" destination="MdZ-GK-jas" id="1nk-UQ-7kK"/>
  632. </connections>
  633. </tableView>
  634. <navigationItem key="navigationItem" title="Medien" id="s46-XP-Ffa"/>
  635. <connections>
  636. <outlet property="autoSaveMediaSwitch" destination="OLc-42-qCb" id="XCE-27-KnY"/>
  637. <outlet property="imageSizeLabel" destination="al2-Js-fb2" id="WzQ-Nl-Dw6"/>
  638. <outlet property="videoQualityLabel" destination="Uj2-yb-tVZ" id="awc-Qq-Ulg"/>
  639. </connections>
  640. </tableViewController>
  641. <placeholder placeholderIdentifier="IBFirstResponder" id="vBe-Zq-lWF" userLabel="First Responder" sceneMemberID="firstResponder"/>
  642. </objects>
  643. <point key="canvasLocation" x="2442" y="6273"/>
  644. </scene>
  645. <!--Lizenz-->
  646. <scene sceneID="gtE-Xd-SgN">
  647. <objects>
  648. <viewController id="Wea-Ps-HJX" customClass="LicenseViewController" sceneMemberID="viewController">
  649. <view key="view" contentMode="scaleToFill" id="Mm2-HT-hGR">
  650. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  651. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  652. <subviews>
  653. <webView contentMode="scaleToFill" id="3zu-E2-S1d">
  654. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  655. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  656. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  657. <dataDetectorType key="dataDetectorTypes"/>
  658. </webView>
  659. </subviews>
  660. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  661. </view>
  662. <navigationItem key="navigationItem" title="Lizenz" id="LyU-ka-OX3"/>
  663. <connections>
  664. <outlet property="webView" destination="3zu-E2-S1d" id="gTM-Ai-0Of"/>
  665. </connections>
  666. </viewController>
  667. <placeholder placeholderIdentifier="IBFirstResponder" id="Zjd-EU-vDP" userLabel="First Responder" sceneMemberID="firstResponder"/>
  668. </objects>
  669. <point key="canvasLocation" x="2435" y="5659"/>
  670. </scene>
  671. <!--Chat-Anzeige-->
  672. <scene sceneID="QNk-Ok-eAC">
  673. <objects>
  674. <tableViewController id="2eW-Y2-pa9" customClass="DisplaySettingsViewController" sceneMemberID="viewController">
  675. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="7jq-nh-Vq6">
  676. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  677. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  678. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  679. <sections>
  680. <tableViewSection headerTitle="Hintergrundbild" id="rbG-Ej-MES">
  681. <cells>
  682. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="178" id="iia-dY-V60">
  683. <rect key="frame" x="0.0" y="55.5" width="375" height="178"/>
  684. <autoresizingMask key="autoresizingMask"/>
  685. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="iia-dY-V60" id="m3i-ir-yYh">
  686. <rect key="frame" x="0.0" y="0.0" width="342" height="177.5"/>
  687. <autoresizingMask key="autoresizingMask"/>
  688. <subviews>
  689. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" image="WallpaperDefault.png" id="XIo-bQ-d7K">
  690. <rect key="frame" x="102" y="14" width="150" height="150"/>
  691. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  692. </imageView>
  693. </subviews>
  694. </tableViewCellContentView>
  695. </tableViewCell>
  696. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" id="OI8-lV-bIY">
  697. <rect key="frame" x="0.0" y="233.5" width="375" height="44"/>
  698. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  699. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OI8-lV-bIY" id="SdZ-C6-Cor">
  700. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  701. <autoresizingMask key="autoresizingMask"/>
  702. <subviews>
  703. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Hintergrundbild löschen" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="mcs-JF-Deg">
  704. <rect key="frame" x="20" y="11" width="333" height="21"/>
  705. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  706. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  707. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  708. <nil key="highlightedColor"/>
  709. </label>
  710. </subviews>
  711. </tableViewCellContentView>
  712. <accessibility key="accessibilityConfiguration">
  713. <accessibilityTraits key="traits" button="YES"/>
  714. </accessibility>
  715. </tableViewCell>
  716. </cells>
  717. </tableViewSection>
  718. <tableViewSection headerTitle="" id="ku4-7V-ypJ">
  719. <cells>
  720. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="Sbz-zc-BXq">
  721. <rect key="frame" x="0.0" y="297.5" width="375" height="44"/>
  722. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  723. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Sbz-zc-BXq" id="uzy-ZM-mmx">
  724. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  725. <autoresizingMask key="autoresizingMask"/>
  726. <subviews>
  727. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" id="hSB-PC-m2L">
  728. <rect key="frame" x="307" y="6" width="52" height="31"/>
  729. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  730. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  731. <connections>
  732. <action selector="themeSwitchChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="HgM-uw-bZ7"/>
  733. </connections>
  734. </switch>
  735. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Dunkles Design" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="uBY-E9-MPF">
  736. <rect key="frame" x="15" y="11" width="231" height="21"/>
  737. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  738. <accessibility key="accessibilityConfiguration" label="Show Received Message Time"/>
  739. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  740. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  741. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  742. <nil key="highlightedColor"/>
  743. </label>
  744. </subviews>
  745. </tableViewCellContentView>
  746. </tableViewCell>
  747. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" detailTextLabel="Tg1-9T-28K" style="IBUITableViewCellStyleValue1" id="b1C-aj-udy">
  748. <rect key="frame" x="0.0" y="341.5" width="375" height="44"/>
  749. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  750. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="b1C-aj-udy" id="qhv-8Q-Qoe">
  751. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  752. <autoresizingMask key="autoresizingMask"/>
  753. <subviews>
  754. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Schriftgrösse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qqh-7v-vmA">
  755. <rect key="frame" x="15" y="11" width="193" height="21"/>
  756. <autoresizingMask key="autoresizingMask"/>
  757. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  758. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  759. <nil key="highlightedColor"/>
  760. </label>
  761. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Tg1-9T-28K">
  762. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  763. <autoresizingMask key="autoresizingMask"/>
  764. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  765. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  766. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  767. </label>
  768. </subviews>
  769. </tableViewCellContentView>
  770. <connections>
  771. <segue destination="8nh-on-KIa" kind="push" id="wVM-hg-8Bj"/>
  772. </connections>
  773. </tableViewCell>
  774. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="dxZ-1P-oyi">
  775. <rect key="frame" x="0.0" y="385.5" width="375" height="44"/>
  776. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  777. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dxZ-1P-oyi" id="dfw-aD-PXd">
  778. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  779. <autoresizingMask key="autoresizingMask"/>
  780. <subviews>
  781. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="JhW-TN-V1o">
  782. <rect key="frame" x="307" y="6" width="52" height="31"/>
  783. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  784. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  785. <connections>
  786. <action selector="showReceivedTimestampChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="MkO-5D-J2X"/>
  787. </connections>
  788. </switch>
  789. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Zeit bei Empf. anzeigen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="gvc-dg-KHb">
  790. <rect key="frame" x="15" y="11" width="231" height="21"/>
  791. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  792. <accessibility key="accessibilityConfiguration" label="Zeit bei Empfang anzeigen"/>
  793. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  794. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  795. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  796. <nil key="highlightedColor"/>
  797. </label>
  798. </subviews>
  799. </tableViewCellContentView>
  800. </tableViewCell>
  801. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="9K9-wE-Q1d">
  802. <rect key="frame" x="0.0" y="429.5" width="375" height="44"/>
  803. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  804. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9K9-wE-Q1d" id="I4B-dS-9Yl">
  805. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  806. <autoresizingMask key="autoresizingMask"/>
  807. <subviews>
  808. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="130-Nq-JcK">
  809. <rect key="frame" x="307" y="6" width="52" height="31"/>
  810. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  811. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  812. <connections>
  813. <action selector="returnToSendChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="MXv-d3-B9N"/>
  814. </connections>
  815. </switch>
  816. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Eingabetaste = Senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ffN-Yo-shC">
  817. <rect key="frame" x="15" y="11" width="231" height="21"/>
  818. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  819. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  820. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  821. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  822. <nil key="highlightedColor"/>
  823. </label>
  824. </subviews>
  825. </tableViewCellContentView>
  826. </tableViewCell>
  827. </cells>
  828. </tableViewSection>
  829. </sections>
  830. <connections>
  831. <outlet property="dataSource" destination="2eW-Y2-pa9" id="ijm-bQ-uXm"/>
  832. <outlet property="delegate" destination="2eW-Y2-pa9" id="PAu-a4-PTf"/>
  833. </connections>
  834. </tableView>
  835. <navigationItem key="navigationItem" title="Chat-Anzeige" id="fFN-GT-Pr9"/>
  836. <connections>
  837. <outlet property="fontSizeLabel" destination="Tg1-9T-28K" id="EEz-zu-BKq"/>
  838. <outlet property="returnToSendSwitch" destination="130-Nq-JcK" id="iyz-3Q-H06"/>
  839. <outlet property="showReceivedTimestampSwitch" destination="JhW-TN-V1o" id="fit-6Q-zfo"/>
  840. <outlet property="themeSwitch" destination="hSB-PC-m2L" id="6j3-Mc-DSw"/>
  841. <outlet property="wallpaperImageView" destination="XIo-bQ-d7K" id="vBh-u3-zi4"/>
  842. </connections>
  843. </tableViewController>
  844. <placeholder placeholderIdentifier="IBFirstResponder" id="ffR-5e-3bm" userLabel="First Responder" sceneMemberID="firstResponder"/>
  845. </objects>
  846. <point key="canvasLocation" x="2435" y="3696"/>
  847. </scene>
  848. <!--Schriftgrösse-->
  849. <scene sceneID="Ge7-Sv-uhZ">
  850. <objects>
  851. <tableViewController id="8nh-on-KIa" customClass="FontSizeViewController" sceneMemberID="viewController">
  852. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="FUH-7O-tpC">
  853. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  854. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  855. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  856. <prototypes>
  857. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="FontSizeCell" textLabel="R47-VP-gFD" style="IBUITableViewCellStyleDefault" id="3Vh-W4-Fog">
  858. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  859. <autoresizingMask key="autoresizingMask"/>
  860. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3Vh-W4-Fog" id="ub8-Td-D0t">
  861. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  862. <autoresizingMask key="autoresizingMask"/>
  863. <subviews>
  864. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="klein" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="R47-VP-gFD">
  865. <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
  866. <autoresizingMask key="autoresizingMask"/>
  867. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  868. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  869. <nil key="highlightedColor"/>
  870. </label>
  871. </subviews>
  872. </tableViewCellContentView>
  873. </tableViewCell>
  874. </prototypes>
  875. <sections/>
  876. <connections>
  877. <outlet property="dataSource" destination="8nh-on-KIa" id="ove-fZ-dFv"/>
  878. <outlet property="delegate" destination="8nh-on-KIa" id="J9S-hL-oY9"/>
  879. </connections>
  880. </tableView>
  881. <navigationItem key="navigationItem" title="Schriftgrösse" id="Fi8-nk-NDW"/>
  882. </tableViewController>
  883. <placeholder placeholderIdentifier="IBFirstResponder" id="zSG-Jc-eIs" userLabel="First Responder" sceneMemberID="firstResponder"/>
  884. </objects>
  885. <point key="canvasLocation" x="3068" y="3709"/>
  886. </scene>
  887. <!--Support-->
  888. <scene sceneID="dsZ-tX-BXr">
  889. <objects>
  890. <viewController id="dET-dz-QOT" customClass="SupportViewController" sceneMemberID="viewController">
  891. <view key="view" contentMode="scaleToFill" id="cdU-54-yb4">
  892. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  893. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  894. <subviews>
  895. <webView multipleTouchEnabled="YES" contentMode="scaleToFill" scalesPageToFit="YES" id="gVh-hu-m9y">
  896. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  897. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  898. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  899. <dataDetectorType key="dataDetectorTypes"/>
  900. </webView>
  901. </subviews>
  902. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  903. </view>
  904. <navigationItem key="navigationItem" title="Support" id="RDy-7k-EX5"/>
  905. <connections>
  906. <outlet property="webView" destination="gVh-hu-m9y" id="pZS-L1-0sn"/>
  907. </connections>
  908. </viewController>
  909. <placeholder placeholderIdentifier="IBFirstResponder" id="x5B-GO-wqJ" userLabel="First Responder" sceneMemberID="firstResponder"/>
  910. </objects>
  911. <point key="canvasLocation" x="2430" y="5049"/>
  912. </scene>
  913. <!--Bildgrösse-->
  914. <scene sceneID="7wv-iF-gCx">
  915. <objects>
  916. <tableViewController id="AQR-Vz-MhD" customClass="ImageSizeViewController" sceneMemberID="viewController">
  917. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="63" sectionHeaderHeight="10" sectionFooterHeight="10" id="cHY-Dx-gAs">
  918. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  919. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  920. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  921. <prototypes>
  922. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="checkmark" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ImageSizeCell" rowHeight="62" id="RNN-n3-Qdh" customClass="ImageSizeCell">
  923. <rect key="frame" x="0.0" y="55.5" width="375" height="62"/>
  924. <autoresizingMask key="autoresizingMask"/>
  925. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RNN-n3-Qdh" id="S8I-p0-3SJ">
  926. <rect key="frame" x="0.0" y="0.0" width="336" height="61.5"/>
  927. <autoresizingMask key="autoresizingMask"/>
  928. <subviews>
  929. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Grösse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Kf6-Af-cZd">
  930. <rect key="frame" x="15" y="10" width="240" height="21"/>
  931. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  932. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  933. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  934. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  935. <nil key="highlightedColor"/>
  936. </label>
  937. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="max. 640 x 640 pixels" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="9DJ-kU-IOH">
  938. <rect key="frame" x="15" y="31" width="240" height="21"/>
  939. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  940. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  941. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  942. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  943. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  944. </label>
  945. </subviews>
  946. </tableViewCellContentView>
  947. <connections>
  948. <outlet property="sizeDetailLabel" destination="9DJ-kU-IOH" id="pyF-vO-X7f"/>
  949. <outlet property="sizeLabel" destination="Kf6-Af-cZd" id="hBc-N8-Cl3"/>
  950. </connections>
  951. </tableViewCell>
  952. </prototypes>
  953. <sections/>
  954. <connections>
  955. <outlet property="dataSource" destination="AQR-Vz-MhD" id="KGa-b5-Ycw"/>
  956. <outlet property="delegate" destination="AQR-Vz-MhD" id="RDi-Ca-d5O"/>
  957. </connections>
  958. </tableView>
  959. <navigationItem key="navigationItem" title="Bildgrösse" id="Rqf-zt-Ocq"/>
  960. </tableViewController>
  961. <placeholder placeholderIdentifier="IBFirstResponder" id="mIp-1V-xfl" userLabel="First Responder" sceneMemberID="firstResponder"/>
  962. </objects>
  963. <point key="canvasLocation" x="3153" y="5929"/>
  964. </scene>
  965. <!--Einstellungen-->
  966. <scene sceneID="FZG-wn-tpM">
  967. <objects>
  968. <navigationController id="OHY-cO-A6g" customClass="SettingsNavigationController" sceneMemberID="viewController">
  969. <tabBarItem key="tabBarItem" title="Einstellungen" image="20-gear-2.png" id="b04-Gg-ZdB"/>
  970. <toolbarItems/>
  971. <navigationBar key="navigationBar" contentMode="scaleToFill" id="vZ5-yv-BbA" customClass="StatusNavigationBar">
  972. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  973. <autoresizingMask key="autoresizingMask"/>
  974. </navigationBar>
  975. <nil name="viewControllers"/>
  976. <connections>
  977. <segue destination="y1R-kI-4Pp" kind="relationship" relationship="rootViewController" id="Lhq-bY-s7T"/>
  978. </connections>
  979. </navigationController>
  980. <placeholder placeholderIdentifier="IBFirstResponder" id="EDa-Yt-oNt" userLabel="First Responder" sceneMemberID="firstResponder"/>
  981. </objects>
  982. <point key="canvasLocation" x="915" y="2507"/>
  983. </scene>
  984. <!--Nachrichten-->
  985. <scene sceneID="zrk-Dk-DBQ">
  986. <objects>
  987. <tableViewController storyboardIdentifier="conversationsViewController" id="Kji-Zw-ER6" customClass="ConversationsViewController" sceneMemberID="viewController">
  988. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" rowHeight="74" sectionHeaderHeight="22" sectionFooterHeight="22" id="NLv-zJ-wYm">
  989. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  990. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  991. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  992. <prototypes>
  993. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ConversationCell" id="rT5-pb-7l3" customClass="ConversationCell">
  994. <rect key="frame" x="0.0" y="22" width="375" height="74"/>
  995. <autoresizingMask key="autoresizingMask"/>
  996. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rT5-pb-7l3" id="dgn-JD-ljW">
  997. <rect key="frame" x="0.0" y="0.0" width="375" height="73.5"/>
  998. <autoresizingMask key="autoresizingMask"/>
  999. <subviews>
  1000. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="100" contentMode="left" text="Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="i0d-PW-Wvq">
  1001. <rect key="frame" x="77" y="6" width="204" height="22"/>
  1002. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1003. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  1004. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  1005. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1006. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1007. </label>
  1008. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Message preview" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="cbw-WM-oCU" customClass="SSLabel">
  1009. <rect key="frame" x="77" y="30" width="247" height="34"/>
  1010. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1011. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  1012. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1013. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1014. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1015. </label>
  1016. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-56.png" id="V59-O6-HhR">
  1017. <rect key="frame" x="12" y="9" width="56" height="56"/>
  1018. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1019. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1020. </imageView>
  1021. <view contentMode="scaleToFill" id="bi1-G7-b3r" customClass="MKNumberBadgeView">
  1022. <rect key="frame" x="42" y="40" width="36" height="28"/>
  1023. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1024. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1025. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1026. </view>
  1027. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" image="Typing.png" highlightedImage="Typing.png" id="Xnt-jr-dbd">
  1028. <rect key="frame" x="344" y="30" width="18" height="20"/>
  1029. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1030. </imageView>
  1031. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" image="MessageStatusSmall_sent.png" highlightedImage="MessageStatusSmall_sent.png" id="ZCx-mc-Be1">
  1032. <rect key="frame" x="345" y="30" width="17" height="16"/>
  1033. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1034. </imageView>
  1035. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" text="Datum" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="SQ8-5g-lHd">
  1036. <rect key="frame" x="285" y="9" width="77" height="20"/>
  1037. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1038. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1039. <color key="textColor" red="0.42745098039215684" green="0.42745098039215684" blue="0.42745098039215684" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1040. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1041. </label>
  1042. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" misplaced="YES" text="Entwurf" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="G8c-6W-DiZ">
  1043. <rect key="frame" x="285" y="9" width="77" height="20"/>
  1044. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1045. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1046. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1047. <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1048. </label>
  1049. </subviews>
  1050. </tableViewCellContentView>
  1051. <inset key="separatorInset" minX="77" minY="0.0" maxX="0.0" maxY="0.0"/>
  1052. <connections>
  1053. <outlet property="badgeView" destination="bi1-G7-b3r" id="GMG-o6-pB4"/>
  1054. <outlet property="contactImage" destination="V59-O6-HhR" id="dGS-SP-0tY"/>
  1055. <outlet property="dateLabel" destination="SQ8-5g-lHd" id="vSk-Ou-SnZ"/>
  1056. <outlet property="draftLabel" destination="G8c-6W-DiZ" id="361-t6-t2t"/>
  1057. <outlet property="messagePreviewLabel" destination="cbw-WM-oCU" id="xPc-d8-ooZ"/>
  1058. <outlet property="nameLabel" destination="i0d-PW-Wvq" id="z9t-Cz-812"/>
  1059. <outlet property="statusIcon" destination="ZCx-mc-Be1" id="zOo-NA-TSf"/>
  1060. <outlet property="typingIndicator" destination="Xnt-jr-dbd" id="mP7-ih-9Gp"/>
  1061. </connections>
  1062. </tableViewCell>
  1063. </prototypes>
  1064. <connections>
  1065. <outlet property="dataSource" destination="Kji-Zw-ER6" id="qOQ-Zq-lST"/>
  1066. <outlet property="delegate" destination="Kji-Zw-ER6" id="Ule-cm-hhS"/>
  1067. </connections>
  1068. </tableView>
  1069. <navigationItem key="navigationItem" title="Nachrichten" id="vkp-6o-Lct">
  1070. <barButtonItem key="leftBarButtonItem" systemItem="edit" id="yNs-w7-9pI"/>
  1071. <barButtonItem key="rightBarButtonItem" systemItem="compose" id="Hqe-Yz-nuJ">
  1072. <connections>
  1073. <action selector="newMessage:" destination="Kji-Zw-ER6" id="BD6-PH-8aA"/>
  1074. </connections>
  1075. </barButtonItem>
  1076. </navigationItem>
  1077. <connections>
  1078. <segue destination="v1R-9K-OZW" kind="push" identifier="ShowConversation" id="pFA-Tp-dth"/>
  1079. </connections>
  1080. </tableViewController>
  1081. <placeholder placeholderIdentifier="IBFirstResponder" id="pta-Eu-i3V" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1082. </objects>
  1083. <point key="canvasLocation" x="1359" y="486"/>
  1084. </scene>
  1085. <!--Contacts View Controller-->
  1086. <scene sceneID="nuw-Vv-xyq">
  1087. <objects>
  1088. <viewController storyboardIdentifier="contactsViewController" id="4Fd-lk-A1K" customClass="ContactsViewController" sceneMemberID="viewController">
  1089. <view key="view" contentMode="scaleToFill" id="9I6-Hb-Esz">
  1090. <rect key="frame" x="0.0" y="64" width="375" height="603"/>
  1091. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1092. <subviews>
  1093. <tableView opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" id="oA5-UX-CCe">
  1094. <rect key="frame" x="0.0" y="0.0" width="375" height="603"/>
  1095. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1096. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1097. <inset key="contentInset" minX="0.0" minY="44" maxX="0.0" maxY="0.0"/>
  1098. <view key="tableFooterView" hidden="YES" contentMode="scaleToFill" id="GQT-ca-BYM">
  1099. <rect key="frame" x="0.0" y="132" width="375" height="140"/>
  1100. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1101. <subviews>
  1102. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Keine Kontakte" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="PaX-dX-iDw">
  1103. <rect key="frame" x="20" y="12" width="323" height="21"/>
  1104. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1105. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  1106. <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1107. <nil key="highlightedColor"/>
  1108. </label>
  1109. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="You don't have any contacts. Turn on synchronization, or add contacts manually using the + button." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="t3X-2A-HzY">
  1110. <rect key="frame" x="12" y="40" width="331" height="100"/>
  1111. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1112. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1113. <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1114. <nil key="highlightedColor"/>
  1115. </label>
  1116. </subviews>
  1117. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1118. </view>
  1119. <prototypes>
  1120. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="dFb-Wa-VKz" customClass="ContactCell">
  1121. <rect key="frame" x="0.0" y="28" width="375" height="44"/>
  1122. <autoresizingMask key="autoresizingMask"/>
  1123. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dFb-Wa-VKz" id="eHR-pD-pVa">
  1124. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1125. <autoresizingMask key="autoresizingMask"/>
  1126. <subviews>
  1127. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="xMb-E3-83s" customClass="ContactNameLabel">
  1128. <rect key="frame" x="10" y="11" width="276" height="23"/>
  1129. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1130. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1131. <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
  1132. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1133. <nil key="highlightedColor"/>
  1134. </label>
  1135. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="uPX-lJ-jo5">
  1136. <rect key="frame" x="291" y="18" width="75" height="21"/>
  1137. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1138. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1139. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1140. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1141. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1142. </label>
  1143. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" id="Te1-8r-Kpe">
  1144. <rect key="frame" x="334" y="9" width="32" height="8"/>
  1145. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1146. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1147. </imageView>
  1148. </subviews>
  1149. </tableViewCellContentView>
  1150. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1151. <connections>
  1152. <outlet property="identityLabel" destination="uPX-lJ-jo5" id="ExJ-ud-89x"/>
  1153. <outlet property="nameLabel" destination="xMb-E3-83s" id="vPc-yz-wse"/>
  1154. <outlet property="verificationLevel" destination="Te1-8r-Kpe" id="GE1-07-boa"/>
  1155. </connections>
  1156. </tableViewCell>
  1157. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" rowHeight="60" id="LPm-Ak-I7T" customClass="GroupCell">
  1158. <rect key="frame" x="0.0" y="72" width="375" height="60"/>
  1159. <autoresizingMask key="autoresizingMask"/>
  1160. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LPm-Ak-I7T" id="C47-PO-Vse">
  1161. <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
  1162. <autoresizingMask key="autoresizingMask"/>
  1163. <subviews>
  1164. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# Mitglieder" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Wb5-yH-lj0">
  1165. <rect key="frame" x="219" y="36" width="135" height="14"/>
  1166. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1167. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1168. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1169. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1170. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1171. </label>
  1172. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="SEL-U7-diX">
  1173. <rect key="frame" x="10" y="10" width="352" height="22"/>
  1174. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1175. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1176. <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
  1177. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1178. <nil key="highlightedColor"/>
  1179. </label>
  1180. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Ersteller" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="3Il-OE-3n8">
  1181. <rect key="frame" x="10" y="36" width="256" height="14"/>
  1182. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1183. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1184. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1185. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1186. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1187. </label>
  1188. </subviews>
  1189. </tableViewCellContentView>
  1190. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1191. <connections>
  1192. <outlet property="countMemberLabel" destination="Wb5-yH-lj0" id="aqv-NO-vqb"/>
  1193. <outlet property="creatorLabel" destination="3Il-OE-3n8" id="Fsl-YF-1hl"/>
  1194. <outlet property="groupNameLabel" destination="SEL-U7-diX" id="suv-UC-BN5"/>
  1195. </connections>
  1196. </tableViewCell>
  1197. </prototypes>
  1198. <connections>
  1199. <outlet property="dataSource" destination="4Fd-lk-A1K" id="gsg-CL-vR5"/>
  1200. <outlet property="delegate" destination="4Fd-lk-A1K" id="vTM-B1-KLb"/>
  1201. </connections>
  1202. </tableView>
  1203. <searchBar contentMode="redraw" placeholder="Suchen" id="dUh-vm-0d6">
  1204. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1205. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1206. <textInputTraits key="textInputTraits"/>
  1207. <connections>
  1208. <outlet property="delegate" destination="4Fd-lk-A1K" id="3vX-Eo-PK2"/>
  1209. </connections>
  1210. </searchBar>
  1211. </subviews>
  1212. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1213. </view>
  1214. <extendedEdge key="edgesForExtendedLayout" bottom="YES"/>
  1215. <navigationItem key="navigationItem" id="eEz-yJ-GLV">
  1216. <nil key="title"/>
  1217. <barButtonItem key="leftBarButtonItem" systemItem="edit" id="Hid-rG-ZSO"/>
  1218. <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="xpR-ok-Lej">
  1219. <rect key="frame" x="118" y="8" width="139" height="29"/>
  1220. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1221. <segments>
  1222. <segment title="Kontakte"/>
  1223. <segment title="Gruppen"/>
  1224. </segments>
  1225. <connections>
  1226. <action selector="segmentedControlChanged:" destination="4Fd-lk-A1K" eventType="valueChanged" id="HO2-Ko-EGJ"/>
  1227. </connections>
  1228. </segmentedControl>
  1229. <barButtonItem key="rightBarButtonItem" systemItem="add" id="xaS-12-Ims">
  1230. <connections>
  1231. <action selector="addAction:" destination="4Fd-lk-A1K" id="rFa-0j-G93"/>
  1232. </connections>
  1233. </barButtonItem>
  1234. </navigationItem>
  1235. <connections>
  1236. <outlet property="noContactsMessageLabel" destination="t3X-2A-HzY" id="HW1-mM-Th0"/>
  1237. <outlet property="noContactsTitleLabel" destination="PaX-dX-iDw" id="qqy-fz-4bz"/>
  1238. <outlet property="noContactsView" destination="GQT-ca-BYM" id="GHJ-Kv-WGC"/>
  1239. <outlet property="searchBar" destination="dUh-vm-0d6" id="deS-Yz-gXa"/>
  1240. <outlet property="searchDisplayController" destination="aT7-Sh-PTR" id="uOn-WQ-2Vb"/>
  1241. <outlet property="segmentedControl" destination="xpR-ok-Lej" id="Unz-g9-cmB"/>
  1242. <outlet property="tableView" destination="oA5-UX-CCe" id="zpi-AV-wV2"/>
  1243. <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="Akb-Cn-eQX"/>
  1244. </connections>
  1245. </viewController>
  1246. <searchDisplayController id="aT7-Sh-PTR">
  1247. <connections>
  1248. <outlet property="delegate" destination="4Fd-lk-A1K" id="hGW-3A-GFm"/>
  1249. <outlet property="searchBar" destination="dUh-vm-0d6" id="wzN-uM-BOm"/>
  1250. <outlet property="searchContentsController" destination="4Fd-lk-A1K" id="kUA-RZ-KNB"/>
  1251. <outlet property="searchResultsDataSource" destination="4Fd-lk-A1K" id="ztG-2F-d81"/>
  1252. <outlet property="searchResultsDelegate" destination="4Fd-lk-A1K" id="JAT-Qg-BB3"/>
  1253. </connections>
  1254. </searchDisplayController>
  1255. <placeholder placeholderIdentifier="IBFirstResponder" id="ZJq-lP-hJG" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1256. </objects>
  1257. <point key="canvasLocation" x="1430" y="-843"/>
  1258. </scene>
  1259. <!--ContactDetails-->
  1260. <scene sceneID="pxa-1i-UrO">
  1261. <objects>
  1262. <tableViewController storyboardIdentifier="contactDetailsViewController" id="MbJ-IV-2f9" userLabel="ContactDetails" customClass="ContactDetailsViewController" sceneMemberID="viewController">
  1263. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="pXs-iG-LIG">
  1264. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1265. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1266. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1267. <view key="tableHeaderView" contentMode="scaleToFill" id="4J2-j2-aqd">
  1268. <rect key="frame" x="0.0" y="0.0" width="375" height="116"/>
  1269. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1270. <subviews>
  1271. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Company Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="wLS-iM-q79">
  1272. <rect key="frame" x="110" y="59" width="225" height="25"/>
  1273. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1274. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1275. <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1276. <nil key="highlightedColor"/>
  1277. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1278. <size key="shadowOffset" width="0.0" height="1"/>
  1279. </label>
  1280. <imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="unknown-person-56.png" id="C5h-Sy-nCc">
  1281. <rect key="frame" x="12" y="16" width="84" height="84"/>
  1282. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1283. </imageView>
  1284. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="7Yp-xa-uaa">
  1285. <rect key="frame" x="341" y="47" width="22" height="22"/>
  1286. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1287. <state key="normal">
  1288. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1289. </state>
  1290. </button>
  1291. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="DfM-u6-9Pl">
  1292. <rect key="frame" x="110" y="32" width="225" height="25"/>
  1293. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1294. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  1295. <nil key="highlightedColor"/>
  1296. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1297. <size key="shadowOffset" width="0.0" height="1"/>
  1298. </label>
  1299. </subviews>
  1300. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1301. </view>
  1302. <prototypes>
  1303. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="IdentityCell" id="ebt-GD-Kmo">
  1304. <rect key="frame" x="0.0" y="171.5" width="375" height="44"/>
  1305. <autoresizingMask key="autoresizingMask"/>
  1306. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ebt-GD-Kmo" id="Szm-Fg-4IJ">
  1307. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1308. <autoresizingMask key="autoresizingMask"/>
  1309. <subviews>
  1310. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Threema ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2lp-u3-z6M">
  1311. <rect key="frame" x="15" y="12" width="133" height="21"/>
  1312. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1313. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1314. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1315. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1316. <nil key="highlightedColor"/>
  1317. </label>
  1318. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="100" contentMode="left" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="C5A-xz-98f" customClass="CopyLabel">
  1319. <rect key="frame" x="226" y="12" width="133" height="21"/>
  1320. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1321. <inset key="insetFor6xAndEarlier" minX="0.0" minY="0.0" maxX="4" maxY="0.0"/>
  1322. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1323. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1324. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1325. </label>
  1326. </subviews>
  1327. </tableViewCellContentView>
  1328. </tableViewCell>
  1329. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="PublicNicknameCell" id="DJ2-VR-wR5">
  1330. <rect key="frame" x="0.0" y="215.5" width="375" height="44"/>
  1331. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1332. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="DJ2-VR-wR5" id="gXP-iB-7UN">
  1333. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1334. <autoresizingMask key="autoresizingMask"/>
  1335. <subviews>
  1336. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="JzM-yJ-0jt">
  1337. <rect key="frame" x="15" y="12" width="160" height="21"/>
  1338. <autoresizingMask key="autoresizingMask"/>
  1339. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1340. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1341. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1342. <nil key="highlightedColor"/>
  1343. </label>
  1344. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" tag="101" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="12" id="rKY-9X-f5A">
  1345. <rect key="frame" x="230" y="12" width="129" height="21"/>
  1346. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1347. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1348. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1349. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1350. </label>
  1351. </subviews>
  1352. </tableViewCellContentView>
  1353. </tableViewCell>
  1354. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LinkedContactCell" id="dh6-UK-5RP" customClass="LinkedContactCell">
  1355. <rect key="frame" x="0.0" y="259.5" width="375" height="44"/>
  1356. <autoresizingMask key="autoresizingMask"/>
  1357. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dh6-UK-5RP" id="HWb-CA-uNi">
  1358. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1359. <autoresizingMask key="autoresizingMask"/>
  1360. <subviews>
  1361. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Verknüpfter Kontakt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jxm-71-tQg">
  1362. <rect key="frame" x="15" y="12" width="160" height="21"/>
  1363. <autoresizingMask key="autoresizingMask"/>
  1364. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1365. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1366. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1367. <nil key="highlightedColor"/>
  1368. </label>
  1369. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="12" id="MnD-TA-cUn">
  1370. <rect key="frame" x="230" y="12" width="129" height="21"/>
  1371. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1372. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1373. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1374. <nil key="highlightedColor"/>
  1375. </label>
  1376. </subviews>
  1377. </tableViewCellContentView>
  1378. <connections>
  1379. <outlet property="displayNameLabel" destination="MnD-TA-cUn" id="F5w-kV-BSt"/>
  1380. </connections>
  1381. </tableViewCell>
  1382. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupMembershipCell" id="558-CC-EbB" userLabel="GroupMembershipCell">
  1383. <rect key="frame" x="0.0" y="303.5" width="375" height="44"/>
  1384. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1385. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="558-CC-EbB" id="Ko4-uG-xwm">
  1386. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1387. <autoresizingMask key="autoresizingMask"/>
  1388. <subviews>
  1389. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Mitglied in Gruppen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="zPS-CU-EpF">
  1390. <rect key="frame" x="15" y="13" width="200" height="21"/>
  1391. <autoresizingMask key="autoresizingMask"/>
  1392. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1393. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1394. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1395. <nil key="highlightedColor"/>
  1396. </label>
  1397. <label opaque="NO" multipleTouchEnabled="YES" tag="102" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="JZI-7I-M9p">
  1398. <rect key="frame" x="306" y="12" width="53" height="21"/>
  1399. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1400. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1401. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1402. <nil key="highlightedColor"/>
  1403. </label>
  1404. </subviews>
  1405. </tableViewCellContentView>
  1406. </tableViewCell>
  1407. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="VerificationLevelCell" id="FWP-sL-MrC" customClass="VerificationLevelCell">
  1408. <rect key="frame" x="0.0" y="347.5" width="375" height="44"/>
  1409. <autoresizingMask key="autoresizingMask"/>
  1410. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="FWP-sL-MrC" id="8t9-nj-TOi">
  1411. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1412. <autoresizingMask key="autoresizingMask"/>
  1413. <subviews>
  1414. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sicherheitsstufe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="a5L-dT-f28">
  1415. <rect key="frame" x="15" y="11" width="211" height="21"/>
  1416. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1417. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1418. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1419. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1420. <nil key="highlightedColor"/>
  1421. </label>
  1422. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="dH9-db-1tt">
  1423. <rect key="frame" x="310" y="16" width="49" height="11"/>
  1424. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1425. </imageView>
  1426. </subviews>
  1427. </tableViewCellContentView>
  1428. <connections>
  1429. <outlet property="levelImage" destination="dH9-db-1tt" id="Kjz-Zm-Tkt"/>
  1430. <segue destination="BHJ-uI-yhd" kind="push" id="YgO-Yg-3hN"/>
  1431. </connections>
  1432. </tableViewCell>
  1433. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" rowHeight="65" id="X6a-sN-vzb" customClass="KeyFingerprintCell">
  1434. <rect key="frame" x="0.0" y="391.5" width="375" height="65"/>
  1435. <autoresizingMask key="autoresizingMask"/>
  1436. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="X6a-sN-vzb" id="IHC-sA-asZ">
  1437. <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
  1438. <autoresizingMask key="autoresizingMask"/>
  1439. <subviews>
  1440. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Schlüssel-Fingerabdruck" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4Qg-5s-hU5">
  1441. <rect key="frame" x="15" y="11" width="270" height="21"/>
  1442. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1443. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1444. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1445. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1446. <nil key="highlightedColor"/>
  1447. </label>
  1448. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="okP-aA-zDM" customClass="CopyLabel">
  1449. <rect key="frame" x="14" y="34" width="351" height="21"/>
  1450. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1451. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1452. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1453. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1454. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1455. </label>
  1456. </subviews>
  1457. </tableViewCellContentView>
  1458. <connections>
  1459. <outlet property="fingerprintLabel" destination="okP-aA-zDM" id="mfA-dE-GO7"/>
  1460. </connections>
  1461. </tableViewCell>
  1462. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="SendMessageCell" textLabel="LQb-Ut-2Zt" style="IBUITableViewCellStyleDefault" id="17h-OP-2ko">
  1463. <rect key="frame" x="0.0" y="456.5" width="375" height="44"/>
  1464. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1465. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="17h-OP-2ko" id="K26-H1-AUc">
  1466. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1467. <autoresizingMask key="autoresizingMask"/>
  1468. <subviews>
  1469. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Nachricht senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="LQb-Ut-2Zt">
  1470. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  1471. <autoresizingMask key="autoresizingMask"/>
  1472. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1473. <color key="textColor" red="0.0" green="0.47843137254901957" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1474. <nil key="highlightedColor"/>
  1475. </label>
  1476. </subviews>
  1477. </tableViewCellContentView>
  1478. </tableViewCell>
  1479. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="EmailConversationCell" textLabel="SEG-4d-fVM" style="IBUITableViewCellStyleDefault" id="wla-k2-wfy">
  1480. <rect key="frame" x="0.0" y="500.5" width="375" height="44"/>
  1481. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1482. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="wla-k2-wfy" id="ltm-vP-Oyz">
  1483. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1484. <autoresizingMask key="autoresizingMask"/>
  1485. <subviews>
  1486. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Chat per E-Mail senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="SEG-4d-fVM">
  1487. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  1488. <autoresizingMask key="autoresizingMask"/>
  1489. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1490. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1491. <nil key="highlightedColor"/>
  1492. </label>
  1493. </subviews>
  1494. </tableViewCellContentView>
  1495. </tableViewCell>
  1496. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="BlockCell" id="OyV-Kc-kkl" customClass="BlockContactCell">
  1497. <rect key="frame" x="0.0" y="544.5" width="375" height="44"/>
  1498. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1499. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OyV-Kc-kkl" id="yq1-pz-P7n">
  1500. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1501. <autoresizingMask key="autoresizingMask"/>
  1502. <subviews>
  1503. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Kontakt blockieren" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0Er-iu-Csc">
  1504. <rect key="frame" x="15" y="11" width="231" height="21"/>
  1505. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1506. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1507. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1508. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1509. <nil key="highlightedColor"/>
  1510. </label>
  1511. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="ME3-2q-nDU">
  1512. <rect key="frame" x="309" y="6" width="50" height="31"/>
  1513. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1514. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1515. <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1516. <connections>
  1517. <action selector="blockSwitchChanged:" destination="OyV-Kc-kkl" eventType="valueChanged" id="OOD-p7-iAy"/>
  1518. </connections>
  1519. </switch>
  1520. </subviews>
  1521. </tableViewCellContentView>
  1522. <connections>
  1523. <outlet property="blockSwitch" destination="ME3-2q-nDU" id="ZVl-bn-D6e"/>
  1524. </connections>
  1525. </tableViewCell>
  1526. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="NoPushNotificationCell" id="mcC-YE-Riw" customClass="NoPushNotificationCell">
  1527. <rect key="frame" x="0.0" y="588.5" width="375" height="44"/>
  1528. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1529. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="mcC-YE-Riw" id="FS9-5s-lWa">
  1530. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1531. <autoresizingMask key="autoresizingMask"/>
  1532. <subviews>
  1533. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Keine Benachrichtigungen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.59999999999999998" id="l5u-Ab-UfT">
  1534. <rect key="frame" x="15" y="11" width="231" height="21"/>
  1535. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1536. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1537. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1538. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1539. <nil key="highlightedColor"/>
  1540. </label>
  1541. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="Tf6-41-5vE">
  1542. <rect key="frame" x="309" y="6" width="50" height="31"/>
  1543. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1544. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1545. <connections>
  1546. <action selector="pushSwitchChanged:" destination="mcC-YE-Riw" eventType="valueChanged" id="ql3-Xv-WzQ"/>
  1547. </connections>
  1548. </switch>
  1549. </subviews>
  1550. </tableViewCellContentView>
  1551. <connections>
  1552. <outlet property="pushSwitch" destination="Tf6-41-5vE" id="hrS-Ap-89l"/>
  1553. </connections>
  1554. </tableViewCell>
  1555. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ScanIDCell" textLabel="Sl8-eU-GWX" style="IBUITableViewCellStyleDefault" id="B9p-4r-4nI">
  1556. <rect key="frame" x="0.0" y="632.5" width="375" height="44"/>
  1557. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1558. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="B9p-4r-4nI" id="NRI-gB-MJC">
  1559. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1560. <autoresizingMask key="autoresizingMask"/>
  1561. <subviews>
  1562. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID scannen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Sl8-eU-GWX">
  1563. <rect key="frame" x="15" y="0.0" width="345" height="44"/>
  1564. <autoresizingMask key="autoresizingMask"/>
  1565. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1566. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1567. <nil key="highlightedColor"/>
  1568. </label>
  1569. </subviews>
  1570. </tableViewCellContentView>
  1571. </tableViewCell>
  1572. </prototypes>
  1573. <sections/>
  1574. <connections>
  1575. <outlet property="dataSource" destination="MbJ-IV-2f9" id="VQ6-nd-9e4"/>
  1576. <outlet property="delegate" destination="MbJ-IV-2f9" id="6Rc-lt-Ehf"/>
  1577. </connections>
  1578. </tableView>
  1579. <navigationItem key="navigationItem" title="First Last" id="Wsn-z9-eRi">
  1580. <barButtonItem key="rightBarButtonItem" systemItem="camera" id="ydd-ZP-cHN">
  1581. <connections>
  1582. <action selector="scanIdentityAction:" destination="MbJ-IV-2f9" id="ZBC-Gt-C0y"/>
  1583. </connections>
  1584. </barButtonItem>
  1585. </navigationItem>
  1586. <connections>
  1587. <outlet property="companyNameLabel" destination="wLS-iM-q79" id="rQo-wF-0UW"/>
  1588. <outlet property="disclosureButton" destination="7Yp-xa-uaa" id="ozN-LX-QiE"/>
  1589. <outlet property="headerView" destination="4J2-j2-aqd" id="nu9-xE-Scc"/>
  1590. <outlet property="imageView" destination="C5h-Sy-nCc" id="CoE-js-cSN"/>
  1591. <outlet property="nameLabel" destination="DfM-u6-9Pl" id="XoH-fN-tsE"/>
  1592. </connections>
  1593. </tableViewController>
  1594. <placeholder placeholderIdentifier="IBFirstResponder" id="1eN-yn-5dz" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1595. </objects>
  1596. <point key="canvasLocation" x="2598" y="-505"/>
  1597. </scene>
  1598. <!--Contact Group Membership View Controller-->
  1599. <scene sceneID="FZb-Rm-ih3">
  1600. <objects>
  1601. <tableViewController storyboardIdentifier="contactGroupMembershipViewController" id="NM5-wF-syo" customClass="ContactGroupMembershipViewController" sceneMemberID="viewController">
  1602. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="O26-dn-MxF">
  1603. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1604. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1605. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1606. <prototypes>
  1607. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactGroupCell" rowHeight="54" id="hBA-HR-lwj" userLabel="PickerGroupCell" customClass="ContactGroupCell">
  1608. <rect key="frame" x="0.0" y="22" width="375" height="54"/>
  1609. <autoresizingMask key="autoresizingMask"/>
  1610. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="hBA-HR-lwj" id="jZM-Dc-Ifk">
  1611. <rect key="frame" x="0.0" y="0.0" width="375" height="53.5"/>
  1612. <autoresizingMask key="autoresizingMask"/>
  1613. <subviews>
  1614. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="84M-Lu-fSm">
  1615. <rect key="frame" x="65" y="6" width="298" height="23"/>
  1616. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1617. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1618. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  1619. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1620. <nil key="highlightedColor"/>
  1621. </label>
  1622. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-56.png" id="qlm-UZ-1WI">
  1623. <rect key="frame" x="12" y="6" width="42" height="42"/>
  1624. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1625. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1626. </imageView>
  1627. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Creator name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Dpn-zH-CmL" userLabel="Creator name">
  1628. <rect key="frame" x="65" y="28" width="206" height="20"/>
  1629. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1630. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1631. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  1632. <color key="textColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1633. <color key="highlightedColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1634. </label>
  1635. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# members" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="tWn-7d-peV">
  1636. <rect key="frame" x="263" y="28" width="100" height="20"/>
  1637. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1638. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1639. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  1640. <color key="textColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1641. <color key="highlightedColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1642. </label>
  1643. </subviews>
  1644. </tableViewCellContentView>
  1645. <connections>
  1646. <outlet property="avatarImage" destination="qlm-UZ-1WI" id="c0X-2W-sQZ"/>
  1647. <outlet property="countMembersLabel" destination="tWn-7d-peV" id="zpd-NC-Sgi"/>
  1648. <outlet property="creatorNameLabel" destination="Dpn-zH-CmL" id="pfR-iv-ICU"/>
  1649. <outlet property="nameLabel" destination="84M-Lu-fSm" id="HrP-Qi-COE"/>
  1650. </connections>
  1651. </tableViewCell>
  1652. </prototypes>
  1653. <connections>
  1654. <outlet property="dataSource" destination="NM5-wF-syo" id="AZ8-ou-ky9"/>
  1655. <outlet property="delegate" destination="NM5-wF-syo" id="5L3-fm-JRE"/>
  1656. </connections>
  1657. </tableView>
  1658. </tableViewController>
  1659. <placeholder placeholderIdentifier="IBFirstResponder" id="cSz-CB-Ik8" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1660. </objects>
  1661. <point key="canvasLocation" x="3044" y="-1252"/>
  1662. </scene>
  1663. <!--Name ändern-->
  1664. <scene sceneID="VNo-4r-iGn">
  1665. <objects>
  1666. <tableViewController storyboardIdentifier="EditContactViewController" id="B4x-zQ-paX" customClass="EditContactViewController" sceneMemberID="viewController">
  1667. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="9B2-uJ-PYl">
  1668. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1669. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1670. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1671. <sections>
  1672. <tableViewSection id="bCA-fU-mLq">
  1673. <cells>
  1674. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="100" id="rfi-kc-yYx">
  1675. <rect key="frame" x="0.0" y="35" width="375" height="100"/>
  1676. <autoresizingMask key="autoresizingMask"/>
  1677. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rfi-kc-yYx" id="1Aq-Ag-ucy">
  1678. <rect key="frame" x="0.0" y="0.0" width="375" height="99.5"/>
  1679. <autoresizingMask key="autoresizingMask"/>
  1680. <subviews>
  1681. <view contentMode="scaleToFill" id="zbC-wn-7Hd" customClass="EditableAvatarView">
  1682. <rect key="frame" x="12" y="8" width="84" height="84"/>
  1683. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1684. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1685. </view>
  1686. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Vorname" minimumFontSize="17" clearButtonMode="whileEditing" id="uv8-Zw-8w0">
  1687. <rect key="frame" x="109" y="18" width="254" height="30"/>
  1688. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1689. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1690. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1691. <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
  1692. </textField>
  1693. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Nachname" minimumFontSize="17" clearButtonMode="whileEditing" id="wpY-cw-D2O">
  1694. <rect key="frame" x="109" y="52" width="254" height="30"/>
  1695. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1696. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1697. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1698. <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
  1699. </textField>
  1700. </subviews>
  1701. </tableViewCellContentView>
  1702. </tableViewCell>
  1703. </cells>
  1704. </tableViewSection>
  1705. </sections>
  1706. <connections>
  1707. <outlet property="dataSource" destination="B4x-zQ-paX" id="emW-0o-qYZ"/>
  1708. <outlet property="delegate" destination="B4x-zQ-paX" id="w1S-2u-X36"/>
  1709. </connections>
  1710. </tableView>
  1711. <navigationItem key="navigationItem" title="Name ändern" id="Leg-Pw-PQ8"/>
  1712. <connections>
  1713. <outlet property="avatarView" destination="zbC-wn-7Hd" id="RyT-AV-aEz"/>
  1714. <outlet property="firstNameTextField" destination="uv8-Zw-8w0" id="J2A-0V-Zix"/>
  1715. <outlet property="lastNameTextField" destination="wpY-cw-D2O" id="9kW-JM-aQd"/>
  1716. </connections>
  1717. </tableViewController>
  1718. <placeholder placeholderIdentifier="IBFirstResponder" id="b8z-Hz-rif" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1719. </objects>
  1720. <point key="canvasLocation" x="3044" y="-707"/>
  1721. </scene>
  1722. <!--Kontakt auswählen-->
  1723. <scene sceneID="Ixe-lK-McQ">
  1724. <objects>
  1725. <viewController id="OvB-ud-WFO" customClass="ContactPickerViewController" sceneMemberID="viewController">
  1726. <view key="view" contentMode="scaleToFill" id="976-Ac-Msp">
  1727. <rect key="frame" x="0.0" y="64" width="375" height="603"/>
  1728. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1729. <subviews>
  1730. <tableView opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="5iW-dy-4an">
  1731. <rect key="frame" x="0.0" y="0.0" width="375" height="603"/>
  1732. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1733. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1734. <inset key="contentInset" minX="0.0" minY="44" maxX="0.0" maxY="0.0"/>
  1735. <prototypes>
  1736. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="WR3-R8-O61" customClass="ContactCell">
  1737. <rect key="frame" x="0.0" y="22" width="375" height="44"/>
  1738. <autoresizingMask key="autoresizingMask"/>
  1739. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="WR3-R8-O61" id="Epf-Rg-KDe">
  1740. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1741. <autoresizingMask key="autoresizingMask"/>
  1742. <subviews>
  1743. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="yS3-b1-W8Z" customClass="ContactNameLabel">
  1744. <rect key="frame" x="15" y="11" width="272" height="23"/>
  1745. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1746. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1747. <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
  1748. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1749. <nil key="highlightedColor"/>
  1750. </label>
  1751. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="q73-1s-ijc">
  1752. <rect key="frame" x="296" y="18" width="72" height="21"/>
  1753. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1754. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1755. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1756. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1757. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1758. </label>
  1759. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" id="lzw-Mh-nCn">
  1760. <rect key="frame" x="334" y="9" width="32" height="8"/>
  1761. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1762. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1763. </imageView>
  1764. </subviews>
  1765. </tableViewCellContentView>
  1766. <connections>
  1767. <outlet property="identityLabel" destination="q73-1s-ijc" id="NRg-B0-V9h"/>
  1768. <outlet property="nameLabel" destination="yS3-b1-W8Z" id="Af2-qC-ikU"/>
  1769. <outlet property="verificationLevel" destination="lzw-Mh-nCn" id="Pes-wx-zzk"/>
  1770. </connections>
  1771. </tableViewCell>
  1772. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CreateGroupCell" rowHeight="60" id="Zkc-Cg-Lb6" customClass="CreateGroupCell">
  1773. <rect key="frame" x="0.0" y="66" width="375" height="60"/>
  1774. <autoresizingMask key="autoresizingMask"/>
  1775. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Zkc-Cg-Lb6" id="Qx2-Sf-jia">
  1776. <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
  1777. <autoresizingMask key="autoresizingMask"/>
  1778. <subviews>
  1779. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Neue Gruppe erstellen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="WlP-nR-QGc">
  1780. <rect key="frame" x="15" y="18" width="272" height="23"/>
  1781. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1782. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1783. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1784. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1785. <nil key="highlightedColor"/>
  1786. </label>
  1787. </subviews>
  1788. </tableViewCellContentView>
  1789. <connections>
  1790. <outlet property="titleLabel" destination="WlP-nR-QGc" id="LmP-ko-Bdc"/>
  1791. </connections>
  1792. </tableViewCell>
  1793. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" rowHeight="60" id="Ijh-vJ-b1G" customClass="GroupCell">
  1794. <rect key="frame" x="0.0" y="126" width="375" height="60"/>
  1795. <autoresizingMask key="autoresizingMask"/>
  1796. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Ijh-vJ-b1G" id="bqo-MU-g3B">
  1797. <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
  1798. <autoresizingMask key="autoresizingMask"/>
  1799. <subviews>
  1800. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# members" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="xRB-Jy-pi3">
  1801. <rect key="frame" x="220" y="36" width="133" height="14"/>
  1802. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1803. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1804. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1805. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1806. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1807. </label>
  1808. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="SOs-ZG-GL4">
  1809. <rect key="frame" x="9" y="10" width="350" height="22"/>
  1810. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1811. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1812. <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
  1813. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1814. <nil key="highlightedColor"/>
  1815. </label>
  1816. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group creator" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="3Ud-EH-DX4">
  1817. <rect key="frame" x="8" y="36" width="255" height="14"/>
  1818. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1819. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1820. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1821. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1822. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1823. </label>
  1824. </subviews>
  1825. </tableViewCellContentView>
  1826. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1827. <connections>
  1828. <outlet property="countMemberLabel" destination="xRB-Jy-pi3" id="dzc-ta-MJi"/>
  1829. <outlet property="creatorLabel" destination="3Ud-EH-DX4" id="4lv-Au-OAn"/>
  1830. <outlet property="groupNameLabel" destination="SOs-ZG-GL4" id="4YD-KS-TBg"/>
  1831. </connections>
  1832. </tableViewCell>
  1833. </prototypes>
  1834. <connections>
  1835. <outlet property="dataSource" destination="OvB-ud-WFO" id="3bF-1n-nf4"/>
  1836. <outlet property="delegate" destination="OvB-ud-WFO" id="IGI-aC-z3S"/>
  1837. </connections>
  1838. </tableView>
  1839. <searchBar contentMode="redraw" placeholder="Suchen" id="CLe-XW-8g8">
  1840. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1841. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1842. <textInputTraits key="textInputTraits"/>
  1843. <connections>
  1844. <outlet property="delegate" destination="OvB-ud-WFO" id="1fl-tf-JEF"/>
  1845. </connections>
  1846. </searchBar>
  1847. </subviews>
  1848. </view>
  1849. <extendedEdge key="edgesForExtendedLayout"/>
  1850. <navigationItem key="navigationItem" title="Kontakt auswählen" id="cNq-Pt-Uma">
  1851. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="j0Z-qX-yv0">
  1852. <connections>
  1853. <action selector="cancelAction:" destination="OvB-ud-WFO" id="ekI-B1-O1R"/>
  1854. </connections>
  1855. </barButtonItem>
  1856. <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="9mW-FX-ba3">
  1857. <rect key="frame" x="124" y="7" width="128" height="30"/>
  1858. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1859. <segments>
  1860. <segment title="Einzeln"/>
  1861. <segment title="Gruppe"/>
  1862. </segments>
  1863. <connections>
  1864. <action selector="segmentedControlChanged:" destination="OvB-ud-WFO" eventType="valueChanged" id="4yc-4d-osa"/>
  1865. </connections>
  1866. </segmentedControl>
  1867. <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="ddH-MT-HLn"/>
  1868. </navigationItem>
  1869. <connections>
  1870. <outlet property="searchBar" destination="CLe-XW-8g8" id="JfI-pf-dgg"/>
  1871. <outlet property="searchDisplayController" destination="AJK-sI-CyX" id="FLS-wz-l0t"/>
  1872. <outlet property="segmentedControl" destination="9mW-FX-ba3" id="lyQ-bl-hSC"/>
  1873. <outlet property="tableView" destination="5iW-dy-4an" id="u72-fo-6AJ"/>
  1874. </connections>
  1875. </viewController>
  1876. <placeholder placeholderIdentifier="IBFirstResponder" id="mXW-PO-p2r" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1877. <searchDisplayController id="AJK-sI-CyX">
  1878. <connections>
  1879. <outlet property="delegate" destination="OvB-ud-WFO" id="Usv-uV-3zv"/>
  1880. <outlet property="searchBar" destination="CLe-XW-8g8" id="zEf-HF-0Fi"/>
  1881. <outlet property="searchContentsController" destination="OvB-ud-WFO" id="Icu-Mv-cXS"/>
  1882. <outlet property="searchResultsDataSource" destination="OvB-ud-WFO" id="chN-ce-Yhv"/>
  1883. <outlet property="searchResultsDelegate" destination="OvB-ud-WFO" id="ARm-0E-NkC"/>
  1884. </connections>
  1885. </searchDisplayController>
  1886. </objects>
  1887. <point key="canvasLocation" x="5672" y="161"/>
  1888. </scene>
  1889. <!--Nachrichten-->
  1890. <scene sceneID="JMs-VF-NWu">
  1891. <objects>
  1892. <navigationController storyboardIdentifier="chatNavigationController" id="4Fs-j8-Z1S" customClass="ChatNavigationController" sceneMemberID="viewController">
  1893. <tabBarItem key="tabBarItem" title="Nachrichten" image="08-chat.png" id="nZg-gf-uED"/>
  1894. <toolbarItems/>
  1895. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3xP-bT-Tja" customClass="StatusNavigationBar">
  1896. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  1897. <autoresizingMask key="autoresizingMask"/>
  1898. </navigationBar>
  1899. <nil name="viewControllers"/>
  1900. <connections>
  1901. <segue destination="Kji-Zw-ER6" kind="relationship" relationship="rootViewController" id="6Jn-Ta-Ldg"/>
  1902. </connections>
  1903. </navigationController>
  1904. <placeholder placeholderIdentifier="IBFirstResponder" id="n2J-3l-9bm" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1905. </objects>
  1906. <point key="canvasLocation" x="863" y="486"/>
  1907. </scene>
  1908. <!--Meine ID-->
  1909. <scene sceneID="Ng9-o6-LBD">
  1910. <objects>
  1911. <tableViewController storyboardIdentifier="myIdentityViewController" id="I0k-J8-Vtl" customClass="MyIdentityViewController" sceneMemberID="viewController">
  1912. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="QV7-Cf-0FU">
  1913. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1914. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1915. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1916. <sections>
  1917. <tableViewSection id="QUc-at-DuC">
  1918. <cells>
  1919. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="P2B-cF-oTk">
  1920. <rect key="frame" x="0.0" y="35" width="375" height="44"/>
  1921. <autoresizingMask key="autoresizingMask"/>
  1922. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="P2B-cF-oTk" id="ED9-Xa-OTK">
  1923. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1924. <autoresizingMask key="autoresizingMask"/>
  1925. <subviews>
  1926. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Threema ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="9yr-AD-cUK">
  1927. <rect key="frame" x="15" y="11" width="133" height="21"/>
  1928. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1929. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1930. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1931. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1932. <nil key="highlightedColor"/>
  1933. </label>
  1934. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="lkL-5x-V15" customClass="CopyLabel">
  1935. <rect key="frame" x="225" y="11" width="135" height="21"/>
  1936. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1937. <inset key="insetFor6xAndEarlier" minX="0.0" minY="0.0" maxX="4" maxY="0.0"/>
  1938. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1939. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1940. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1941. </label>
  1942. </subviews>
  1943. </tableViewCellContentView>
  1944. </tableViewCell>
  1945. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="64" id="gvv-id-Pmc">
  1946. <rect key="frame" x="0.0" y="79" width="375" height="64"/>
  1947. <autoresizingMask key="autoresizingMask"/>
  1948. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gvv-id-Pmc" id="omR-0q-8vv">
  1949. <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
  1950. <autoresizingMask key="autoresizingMask"/>
  1951. <subviews>
  1952. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Schlüssel-Fingerabdruck" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="s24-iI-yAz">
  1953. <rect key="frame" x="15" y="11" width="261" height="21"/>
  1954. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1955. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1956. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1957. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1958. <nil key="highlightedColor"/>
  1959. </label>
  1960. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="amq-yB-BQV" customClass="CopyLabel">
  1961. <rect key="frame" x="14" y="34" width="352" height="21"/>
  1962. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1963. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1964. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1965. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1966. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1967. </label>
  1968. </subviews>
  1969. </tableViewCellContentView>
  1970. </tableViewCell>
  1971. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="236" id="u9k-C5-OBI">
  1972. <rect key="frame" x="0.0" y="143" width="375" height="236"/>
  1973. <autoresizingMask key="autoresizingMask"/>
  1974. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="u9k-C5-OBI" id="fVH-Te-y8E">
  1975. <rect key="frame" x="0.0" y="0.0" width="375" height="235.5"/>
  1976. <autoresizingMask key="autoresizingMask"/>
  1977. <subviews>
  1978. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="Az6-Ak-eaE">
  1979. <rect key="frame" x="85" y="18" width="200" height="200"/>
  1980. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1981. </imageView>
  1982. </subviews>
  1983. </tableViewCellContentView>
  1984. </tableViewCell>
  1985. </cells>
  1986. </tableViewSection>
  1987. <tableViewSection id="PTc-Jj-PHF">
  1988. <string key="footerTitle">Wenn Sie Ihre E-Mail-Adresse oder Telefonnummer mit Ihrer ID verknüpfen, können andere Leute Sie auf Threema automatisch finden, sofern sie Sie im Adressbuch haben.</string>
  1989. <cells>
  1990. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="y1P-yl-vpA" detailTextLabel="QJA-8c-HMa" style="IBUITableViewCellStyleValue1" id="sJC-sz-v4G">
  1991. <rect key="frame" x="0.0" y="399" width="375" height="44"/>
  1992. <autoresizingMask key="autoresizingMask"/>
  1993. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sJC-sz-v4G" id="988-gI-LiJ">
  1994. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  1995. <autoresizingMask key="autoresizingMask"/>
  1996. <subviews>
  1997. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="E-Mail-Adresse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="y1P-yl-vpA">
  1998. <rect key="frame" x="16" y="12" width="96" height="20"/>
  1999. <autoresizingMask key="autoresizingMask"/>
  2000. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2001. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2002. <nil key="highlightedColor"/>
  2003. </label>
  2004. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="QJA-8c-HMa">
  2005. <rect key="frame" x="296" y="12" width="44" height="20"/>
  2006. <autoresizingMask key="autoresizingMask"/>
  2007. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2008. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2009. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2010. </label>
  2011. </subviews>
  2012. </tableViewCellContentView>
  2013. <connections>
  2014. <segue destination="7Bw-bZ-Nl3" kind="modal" id="1uw-nq-mr5"/>
  2015. </connections>
  2016. </tableViewCell>
  2017. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="1Hj-1l-hxJ" detailTextLabel="kHj-SA-fKt" style="IBUITableViewCellStyleValue1" id="Swj-yx-caI">
  2018. <rect key="frame" x="0.0" y="443" width="375" height="44"/>
  2019. <autoresizingMask key="autoresizingMask"/>
  2020. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Swj-yx-caI" id="Ozc-L4-VZ3">
  2021. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2022. <autoresizingMask key="autoresizingMask"/>
  2023. <subviews>
  2024. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Telefonnummer" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="1Hj-1l-hxJ">
  2025. <rect key="frame" x="16" y="12" width="117" height="20"/>
  2026. <autoresizingMask key="autoresizingMask"/>
  2027. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2028. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2029. <nil key="highlightedColor"/>
  2030. </label>
  2031. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="kHj-SA-fKt">
  2032. <rect key="frame" x="296" y="12" width="44" height="20"/>
  2033. <autoresizingMask key="autoresizingMask"/>
  2034. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2035. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2036. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2037. </label>
  2038. </subviews>
  2039. </tableViewCellContentView>
  2040. </tableViewCell>
  2041. </cells>
  2042. </tableViewSection>
  2043. <tableViewSection footerTitle="Der Nickname wird dem Empfänger angezeigt, wenn er eine Push-Benachrichtigung von Ihnen erhält." id="L3t-4B-qec">
  2044. <cells>
  2045. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Y7W-17-bwW" detailTextLabel="5Ev-4B-WDK" style="IBUITableViewCellStyleValue1" id="UMK-uT-KJe">
  2046. <rect key="frame" x="0.0" y="575" width="375" height="44"/>
  2047. <autoresizingMask key="autoresizingMask"/>
  2048. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UMK-uT-KJe" id="uhc-jM-HYT">
  2049. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2050. <autoresizingMask key="autoresizingMask"/>
  2051. <subviews>
  2052. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Y7W-17-bwW">
  2053. <rect key="frame" x="16" y="12" width="77" height="20"/>
  2054. <autoresizingMask key="autoresizingMask"/>
  2055. <accessibility key="accessibilityConfiguration" label="Nickname"/>
  2056. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2057. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2058. <nil key="highlightedColor"/>
  2059. </label>
  2060. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="5Ev-4B-WDK">
  2061. <rect key="frame" x="296" y="12" width="44" height="20"/>
  2062. <autoresizingMask key="autoresizingMask"/>
  2063. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2064. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2065. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2066. </label>
  2067. </subviews>
  2068. </tableViewCellContentView>
  2069. <connections>
  2070. <segue destination="1K5-up-8kR" kind="modal" identifier="SetPublicNickname" id="RdV-8v-dgs"/>
  2071. </connections>
  2072. </tableViewCell>
  2073. </cells>
  2074. </tableViewSection>
  2075. <tableViewSection footerTitle="" id="XC2-xB-TVD">
  2076. <cells>
  2077. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="BackupCell" textLabel="0v5-EP-EDx" style="IBUITableViewCellStyleDefault" id="pam-C2-jA3">
  2078. <rect key="frame" x="0.0" y="675" width="375" height="44"/>
  2079. <autoresizingMask key="autoresizingMask"/>
  2080. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="pam-C2-jA3" id="oKl-js-aWU">
  2081. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2082. <autoresizingMask key="autoresizingMask"/>
  2083. <subviews>
  2084. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Backup" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0v5-EP-EDx">
  2085. <rect key="frame" x="15" y="0.0" width="325" height="43"/>
  2086. <autoresizingMask key="autoresizingMask"/>
  2087. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2088. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2089. <nil key="highlightedColor"/>
  2090. </label>
  2091. </subviews>
  2092. </tableViewCellContentView>
  2093. </tableViewCell>
  2094. </cells>
  2095. </tableViewSection>
  2096. <tableViewSection id="cvq-3z-Jgu">
  2097. <cells>
  2098. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="IDRecoveryCell" textLabel="b4Z-TN-4jn" detailTextLabel="UYI-5G-D23" style="IBUITableViewCellStyleValue1" id="BIQ-jY-ebd">
  2099. <rect key="frame" x="0.0" y="739" width="375" height="44"/>
  2100. <autoresizingMask key="autoresizingMask"/>
  2101. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="BIQ-jY-ebd" id="HYD-Lr-Tyh">
  2102. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2103. <autoresizingMask key="autoresizingMask"/>
  2104. <subviews>
  2105. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID-Widerrufspasswort" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" id="b4Z-TN-4jn">
  2106. <rect key="frame" x="15" y="12" width="174" height="19"/>
  2107. <autoresizingMask key="autoresizingMask"/>
  2108. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2109. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2110. <nil key="highlightedColor"/>
  2111. </label>
  2112. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="..." textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" id="UYI-5G-D23">
  2113. <rect key="frame" x="327" y="12" width="13" height="19"/>
  2114. <autoresizingMask key="autoresizingMask"/>
  2115. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2116. <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2117. <nil key="highlightedColor"/>
  2118. </label>
  2119. </subviews>
  2120. </tableViewCellContentView>
  2121. </tableViewCell>
  2122. </cells>
  2123. </tableViewSection>
  2124. <tableViewSection footerTitle="" id="rpD-Oi-fOo">
  2125. <cells>
  2126. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="tZ9-Lw-a05" style="IBUITableViewCellStyleDefault" id="jiq-15-y5Y">
  2127. <rect key="frame" x="0.0" y="803" width="375" height="44"/>
  2128. <autoresizingMask key="autoresizingMask"/>
  2129. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jiq-15-y5Y" id="bXz-r6-sy2">
  2130. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2131. <autoresizingMask key="autoresizingMask"/>
  2132. <subviews>
  2133. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID löschen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="tZ9-Lw-a05">
  2134. <rect key="frame" x="15" y="0.0" width="345" height="43"/>
  2135. <autoresizingMask key="autoresizingMask"/>
  2136. <accessibility key="accessibilityConfiguration">
  2137. <accessibilityTraits key="traits" button="YES" staticText="YES"/>
  2138. </accessibility>
  2139. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2140. <color key="textColor" red="1" green="0.23137254901960785" blue="0.18823529411764706" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2141. <nil key="highlightedColor"/>
  2142. </label>
  2143. </subviews>
  2144. </tableViewCellContentView>
  2145. </tableViewCell>
  2146. </cells>
  2147. </tableViewSection>
  2148. </sections>
  2149. <connections>
  2150. <outlet property="dataSource" destination="I0k-J8-Vtl" id="icO-Yi-qfd"/>
  2151. <outlet property="delegate" destination="I0k-J8-Vtl" id="j9k-nq-dg9"/>
  2152. </connections>
  2153. </tableView>
  2154. <navigationItem key="navigationItem" title="Meine ID" id="5ap-VU-9eg">
  2155. <barButtonItem key="rightBarButtonItem" systemItem="camera" id="EED-Sp-HrR">
  2156. <connections>
  2157. <action selector="scanIdentity:" destination="I0k-J8-Vtl" id="Zvx-tY-LFX"/>
  2158. </connections>
  2159. </barButtonItem>
  2160. </navigationItem>
  2161. <connections>
  2162. <outlet property="identityLabel" destination="lkL-5x-V15" id="ESl-Ko-Vg9"/>
  2163. <outlet property="keyFingerprintLabel" destination="amq-yB-BQV" id="9yJ-3H-gIK"/>
  2164. <outlet property="linkedEmailLabel" destination="QJA-8c-HMa" id="yb6-FE-HRE"/>
  2165. <outlet property="linkedMobileNoLabel" destination="kHj-SA-fKt" id="Sor-aS-3qA"/>
  2166. <outlet property="pushFromNameLabel" destination="5Ev-4B-WDK" id="7dU-gs-hHE"/>
  2167. <outlet property="qrImageView" destination="Az6-Ak-eaE" id="eQj-Vp-ATT"/>
  2168. <outlet property="revocationLabelDetail" destination="UYI-5G-D23" id="PTt-KT-WjN"/>
  2169. <segue destination="L44-Xr-JJu" kind="modal" identifier="LinkMobileNo" id="yV1-R7-Pko"/>
  2170. <segue destination="wPu-1J-vpq" kind="modal" identifier="EnterCode" id="w23-ym-3jW"/>
  2171. </connections>
  2172. </tableViewController>
  2173. <placeholder placeholderIdentifier="IBFirstResponder" id="gmo-qI-mCg" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2174. </objects>
  2175. <point key="canvasLocation" x="1471" y="1265"/>
  2176. </scene>
  2177. <!--Benachrichtigungen-->
  2178. <scene sceneID="UYi-jV-Yvw">
  2179. <objects>
  2180. <tableViewController id="Qt8-lZ-oDY" customClass="NotificationSettingsViewController" sceneMemberID="viewController">
  2181. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="6Pr-Xa-c1H">
  2182. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2183. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2184. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2185. <sections>
  2186. <tableViewSection headerTitle="In App" id="E3e-w1-EBY">
  2187. <cells>
  2188. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="uOZ-Lo-9JS">
  2189. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2190. <autoresizingMask key="autoresizingMask"/>
  2191. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uOZ-Lo-9JS" id="Eqs-ip-ZjK">
  2192. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2193. <autoresizingMask key="autoresizingMask"/>
  2194. <subviews>
  2195. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Töne" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="h8v-3h-U2A">
  2196. <rect key="frame" x="14" y="11" width="289" height="21"/>
  2197. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2198. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2199. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2200. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2201. <nil key="highlightedColor"/>
  2202. </label>
  2203. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="TJZ-Sf-O6a">
  2204. <rect key="frame" x="305" y="6" width="50" height="31"/>
  2205. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2206. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2207. <connections>
  2208. <action selector="inAppSoundsChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="eSz-4q-AWd"/>
  2209. </connections>
  2210. </switch>
  2211. </subviews>
  2212. </tableViewCellContentView>
  2213. </tableViewCell>
  2214. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="9Yv-aB-4BH">
  2215. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  2216. <autoresizingMask key="autoresizingMask"/>
  2217. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9Yv-aB-4BH" id="l33-4o-s1k">
  2218. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2219. <autoresizingMask key="autoresizingMask"/>
  2220. <subviews>
  2221. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Vibrationen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Gcx-w6-qiQ">
  2222. <rect key="frame" x="14" y="11" width="289" height="21"/>
  2223. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2224. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2225. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2226. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2227. <nil key="highlightedColor"/>
  2228. </label>
  2229. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="pef-mK-8be">
  2230. <rect key="frame" x="305" y="6" width="50" height="31"/>
  2231. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2232. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2233. <connections>
  2234. <action selector="inAppVibrateChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="pqP-S7-wGn"/>
  2235. </connections>
  2236. </switch>
  2237. </subviews>
  2238. </tableViewCellContentView>
  2239. </tableViewCell>
  2240. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="3e4-Io-d81">
  2241. <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
  2242. <autoresizingMask key="autoresizingMask"/>
  2243. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3e4-Io-d81" id="g3w-oW-7pt">
  2244. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2245. <autoresizingMask key="autoresizingMask"/>
  2246. <subviews>
  2247. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Vorschau" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="KE5-2h-Odt">
  2248. <rect key="frame" x="14" y="11" width="289" height="21"/>
  2249. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2250. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2251. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2252. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2253. <nil key="highlightedColor"/>
  2254. </label>
  2255. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="RHm-Rd-mqd">
  2256. <rect key="frame" x="305" y="6" width="50" height="31"/>
  2257. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2258. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2259. <connections>
  2260. <action selector="inAppPreviewChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="lDT-qp-geP"/>
  2261. </connections>
  2262. </switch>
  2263. </subviews>
  2264. </tableViewCellContentView>
  2265. </tableViewCell>
  2266. </cells>
  2267. </tableViewSection>
  2268. <tableViewSection headerTitle="Push-Benachrichtigungen" id="m6X-1g-Z2I">
  2269. <cells>
  2270. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="HEL-r7-3ad" detailTextLabel="GKA-0Y-RnP" style="IBUITableViewCellStyleValue1" id="vTM-n3-jaO">
  2271. <rect key="frame" x="0.0" y="235.5" width="375" height="44"/>
  2272. <autoresizingMask key="autoresizingMask"/>
  2273. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vTM-n3-jaO" id="Dcl-Qs-OSv">
  2274. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2275. <autoresizingMask key="autoresizingMask"/>
  2276. <subviews>
  2277. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Ton" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HEL-r7-3ad">
  2278. <rect key="frame" x="15" y="12" width="49.5" height="20.5"/>
  2279. <autoresizingMask key="autoresizingMask"/>
  2280. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2281. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2282. <nil key="highlightedColor"/>
  2283. </label>
  2284. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GKA-0Y-RnP">
  2285. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  2286. <autoresizingMask key="autoresizingMask"/>
  2287. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2288. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2289. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2290. </label>
  2291. </subviews>
  2292. </tableViewCellContentView>
  2293. <connections>
  2294. <segue destination="Phx-x2-Ggd" kind="push" id="AfW-k9-0yS"/>
  2295. </connections>
  2296. </tableViewCell>
  2297. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Rb2-cP-tmR">
  2298. <rect key="frame" x="0.0" y="279.5" width="375" height="44"/>
  2299. <autoresizingMask key="autoresizingMask"/>
  2300. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Rb2-cP-tmR" id="MFv-Sl-T50">
  2301. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2302. <autoresizingMask key="autoresizingMask"/>
  2303. <subviews>
  2304. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="8lc-Zk-gyS">
  2305. <rect key="frame" x="305" y="6" width="50" height="31"/>
  2306. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2307. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2308. <connections>
  2309. <action selector="pushGroupChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="S70-UY-uPu"/>
  2310. </connections>
  2311. </switch>
  2312. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" misplaced="YES" text="Gruppen-Benachrichtigungen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="syQ-cU-B7P">
  2313. <rect key="frame" x="15" y="11" width="285" height="21"/>
  2314. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2315. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2316. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2317. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2318. <nil key="highlightedColor"/>
  2319. </label>
  2320. </subviews>
  2321. </tableViewCellContentView>
  2322. </tableViewCell>
  2323. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="GTL-R7-ZdU" detailTextLabel="AFn-cS-yu4" style="IBUITableViewCellStyleValue1" id="XbG-As-U8R">
  2324. <rect key="frame" x="0.0" y="323.5" width="375" height="44"/>
  2325. <autoresizingMask key="autoresizingMask"/>
  2326. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="XbG-As-U8R" id="c2v-OJ-2rz">
  2327. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2328. <autoresizingMask key="autoresizingMask"/>
  2329. <subviews>
  2330. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Gruppen-Ton" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GTL-R7-ZdU">
  2331. <rect key="frame" x="15" y="12" width="101" height="20.5"/>
  2332. <autoresizingMask key="autoresizingMask"/>
  2333. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2334. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2335. <nil key="highlightedColor"/>
  2336. </label>
  2337. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AFn-cS-yu4">
  2338. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  2339. <autoresizingMask key="autoresizingMask"/>
  2340. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2341. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2342. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2343. </label>
  2344. </subviews>
  2345. </tableViewCellContentView>
  2346. <connections>
  2347. <segue destination="dtN-aU-IlJ" kind="push" identifier="EditPushGroupSound" id="yqf-dq-zZS"/>
  2348. </connections>
  2349. </tableViewCell>
  2350. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="jyB-3R-QIP">
  2351. <rect key="frame" x="0.0" y="367.5" width="375" height="44"/>
  2352. <autoresizingMask key="autoresizingMask"/>
  2353. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jyB-3R-QIP" id="zOQ-Xf-qKb">
  2354. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2355. <autoresizingMask key="autoresizingMask"/>
  2356. <subviews>
  2357. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="6Ft-y2-OZY">
  2358. <rect key="frame" x="305" y="6" width="49" height="31"/>
  2359. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2360. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2361. <connections>
  2362. <action selector="pushGroupChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="LFc-Ya-GMO"/>
  2363. </connections>
  2364. </switch>
  2365. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" misplaced="YES" text="Decrypt Notification" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="1RW-ke-SeD" userLabel="Decrypt Notification">
  2366. <rect key="frame" x="15" y="11" width="285" height="21"/>
  2367. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2368. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2369. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2370. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2371. <nil key="highlightedColor"/>
  2372. </label>
  2373. </subviews>
  2374. </tableViewCellContentView>
  2375. </tableViewCell>
  2376. </cells>
  2377. </tableViewSection>
  2378. </sections>
  2379. <connections>
  2380. <outlet property="dataSource" destination="Qt8-lZ-oDY" id="s78-vN-FWj"/>
  2381. <outlet property="delegate" destination="Qt8-lZ-oDY" id="5MC-dA-sLU"/>
  2382. </connections>
  2383. </tableView>
  2384. <navigationItem key="navigationItem" title="Benachrichtigungen" id="3bR-To-00h"/>
  2385. <connections>
  2386. <outlet property="inAppPreviewSwitch" destination="RHm-Rd-mqd" id="bJE-hN-FxY"/>
  2387. <outlet property="inAppSoundsSwitch" destination="TJZ-Sf-O6a" id="7vw-lB-ZZw"/>
  2388. <outlet property="inAppVibrateSwitch" destination="pef-mK-8be" id="JuQ-NH-no4"/>
  2389. <outlet property="pushGroupSoundCell" destination="XbG-As-U8R" id="Pfu-zB-z0V"/>
  2390. <outlet property="pushGroupSoundLabel" destination="AFn-cS-yu4" id="Xru-nf-oal"/>
  2391. <outlet property="pushGroupSwitch" destination="8lc-Zk-gyS" id="1dY-Wu-7D0"/>
  2392. <outlet property="pushSoundLabel" destination="GKA-0Y-RnP" id="Gwa-WU-1Xw"/>
  2393. </connections>
  2394. </tableViewController>
  2395. <placeholder placeholderIdentifier="IBFirstResponder" id="fia-tG-v4N" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2396. </objects>
  2397. <point key="canvasLocation" x="2442" y="2912"/>
  2398. </scene>
  2399. <!--Push-Ton-->
  2400. <scene sceneID="DRo-tk-lDy">
  2401. <objects>
  2402. <tableViewController id="Phx-x2-Ggd" customClass="PushSoundViewController" sceneMemberID="viewController">
  2403. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="Y9Z-L5-pHX">
  2404. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2405. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2406. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2407. <prototypes>
  2408. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="D32-Ax-dYd" style="IBUITableViewCellStyleDefault" id="9hh-7D-nOp">
  2409. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2410. <autoresizingMask key="autoresizingMask"/>
  2411. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9hh-7D-nOp" id="Fha-gP-uxq">
  2412. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2413. <autoresizingMask key="autoresizingMask"/>
  2414. <subviews>
  2415. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="D32-Ax-dYd">
  2416. <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
  2417. <autoresizingMask key="autoresizingMask"/>
  2418. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2419. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2420. <nil key="highlightedColor"/>
  2421. </label>
  2422. </subviews>
  2423. </tableViewCellContentView>
  2424. </tableViewCell>
  2425. </prototypes>
  2426. <connections>
  2427. <outlet property="dataSource" destination="Phx-x2-Ggd" id="mP9-YP-eOF"/>
  2428. <outlet property="delegate" destination="Phx-x2-Ggd" id="ndv-Ir-hfx"/>
  2429. </connections>
  2430. </tableView>
  2431. <navigationItem key="navigationItem" title="Push-Ton" id="022-qx-zgG"/>
  2432. </tableViewController>
  2433. <placeholder placeholderIdentifier="IBFirstResponder" id="QeY-qR-4dv" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2434. </objects>
  2435. <point key="canvasLocation" x="3068" y="3104"/>
  2436. </scene>
  2437. <!--Ausschlussliste-->
  2438. <scene sceneID="wqf-3S-n3F">
  2439. <objects>
  2440. <tableViewController id="77C-YN-K8y" customClass="SyncExclusionListViewController" sceneMemberID="viewController">
  2441. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="9Nh-Eg-WTd">
  2442. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2443. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2444. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2445. <prototypes>
  2446. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExclusionCell" textLabel="Mxf-oi-QRp" style="IBUITableViewCellStyleDefault" id="4Qx-6f-8cY">
  2447. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2448. <autoresizingMask key="autoresizingMask"/>
  2449. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4Qx-6f-8cY" id="nwq-je-jHl">
  2450. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2451. <autoresizingMask key="autoresizingMask"/>
  2452. <subviews>
  2453. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Mxf-oi-QRp">
  2454. <rect key="frame" x="16" y="0.0" width="344" height="43.5"/>
  2455. <autoresizingMask key="autoresizingMask"/>
  2456. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  2457. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2458. <nil key="highlightedColor"/>
  2459. </label>
  2460. </subviews>
  2461. </tableViewCellContentView>
  2462. </tableViewCell>
  2463. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" reuseIdentifier="AddCell" id="prh-UQ-YjS">
  2464. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  2465. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2466. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="prh-UQ-YjS" id="QAR-w9-aFF">
  2467. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2468. <autoresizingMask key="autoresizingMask"/>
  2469. <subviews>
  2470. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="PlusButton.png" id="aa8-wa-dpo">
  2471. <rect key="frame" x="15" y="11" width="22" height="22"/>
  2472. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2473. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2474. </imageView>
  2475. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ausschluss hinzufügen..." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="RAy-BD-jyZ">
  2476. <rect key="frame" x="47" y="11" width="255" height="21"/>
  2477. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2478. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2479. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2480. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2481. <nil key="highlightedColor"/>
  2482. </label>
  2483. </subviews>
  2484. </tableViewCellContentView>
  2485. </tableViewCell>
  2486. </prototypes>
  2487. <connections>
  2488. <outlet property="dataSource" destination="77C-YN-K8y" id="ycu-sf-HhS"/>
  2489. <outlet property="delegate" destination="77C-YN-K8y" id="SDc-gW-FIi"/>
  2490. </connections>
  2491. </tableView>
  2492. <navigationItem key="navigationItem" title="Ausschlussliste" id="h4A-vg-OB6"/>
  2493. </tableViewController>
  2494. <placeholder placeholderIdentifier="IBFirstResponder" id="vWW-iP-9DM" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2495. </objects>
  2496. <point key="canvasLocation" x="3068" y="1946"/>
  2497. </scene>
  2498. <!--E-Mail verknüpfen-->
  2499. <scene sceneID="l5d-Rw-IEc">
  2500. <objects>
  2501. <tableViewController id="QYa-wj-UfF" customClass="LinkEmailViewController" sceneMemberID="viewController">
  2502. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="bzU-SP-j9U">
  2503. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2504. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2505. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2506. <sections>
  2507. <tableViewSection id="C6x-Ig-Wrf">
  2508. <string key="footerTitle">Wenn Sie Ihre E-Mail-Adresse mit Ihrer ID verknüpfen, können andere Leute Sie auf Threema automatisch finden, sofern sie Sie im Adressbuch haben.</string>
  2509. <cells>
  2510. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="1Xk-xD-yqQ">
  2511. <rect key="frame" x="0.0" y="35" width="375" height="85"/>
  2512. <autoresizingMask key="autoresizingMask"/>
  2513. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Xk-xD-yqQ" id="E9F-9Q-tzr">
  2514. <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
  2515. <autoresizingMask key="autoresizingMask"/>
  2516. <subviews>
  2517. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Ihre E-Mail-Adresse" minimumFontSize="17" clearButtonMode="always" id="wBP-jq-sAz">
  2518. <rect key="frame" x="14" y="39" width="349" height="34"/>
  2519. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2520. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2521. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2522. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  2523. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="emailAddress" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  2524. <connections>
  2525. <action selector="saveAction:" destination="QYa-wj-UfF" eventType="editingDidEndOnExit" id="eIv-LE-rgN"/>
  2526. </connections>
  2527. </textField>
  2528. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="E-Mail-Adresse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="myc-qo-tN6">
  2529. <rect key="frame" x="15" y="11" width="294" height="21"/>
  2530. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2531. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2532. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2533. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2534. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2535. </label>
  2536. </subviews>
  2537. </tableViewCellContentView>
  2538. </tableViewCell>
  2539. </cells>
  2540. </tableViewSection>
  2541. </sections>
  2542. <connections>
  2543. <outlet property="dataSource" destination="QYa-wj-UfF" id="O02-Ou-aJp"/>
  2544. <outlet property="delegate" destination="QYa-wj-UfF" id="MCg-d2-DxN"/>
  2545. </connections>
  2546. </tableView>
  2547. <navigationItem key="navigationItem" title="E-Mail verknüpfen" id="2NV-Wg-po2">
  2548. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="pWS-hq-fg0">
  2549. <connections>
  2550. <action selector="cancelAction:" destination="QYa-wj-UfF" id="cJS-1p-sJ3"/>
  2551. </connections>
  2552. </barButtonItem>
  2553. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="Mti-zj-akb">
  2554. <connections>
  2555. <action selector="saveAction:" destination="QYa-wj-UfF" id="IBg-jA-q0G"/>
  2556. </connections>
  2557. </barButtonItem>
  2558. </navigationItem>
  2559. <connections>
  2560. <outlet property="emailTextField" destination="wBP-jq-sAz" id="15h-89-WQ1"/>
  2561. </connections>
  2562. </tableViewController>
  2563. <placeholder placeholderIdentifier="IBFirstResponder" id="J44-bd-DuA" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2564. </objects>
  2565. <point key="canvasLocation" x="4791" y="2912"/>
  2566. </scene>
  2567. <!--Nickname-->
  2568. <scene sceneID="rkn-AV-9ja">
  2569. <objects>
  2570. <tableViewController id="3Ka-Iq-ckG" customClass="PushNameViewController" sceneMemberID="viewController">
  2571. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="J0W-Mz-exD">
  2572. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2573. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2574. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2575. <sections>
  2576. <tableViewSection id="sdp-VL-j5M">
  2577. <string key="footerTitle">Der Nickname wird in Push-Benachrichtungen von Ihnen eingesetzt. Wir empfehlen, nur Ihren Vornamen oder ein Pseudonym zu verwenden.</string>
  2578. <cells>
  2579. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="uVA-G0-69Y">
  2580. <rect key="frame" x="0.0" y="35" width="375" height="85"/>
  2581. <autoresizingMask key="autoresizingMask"/>
  2582. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uVA-G0-69Y" id="BhV-s3-58Y">
  2583. <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
  2584. <autoresizingMask key="autoresizingMask"/>
  2585. <subviews>
  2586. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Ihr Nickname" minimumFontSize="17" clearButtonMode="always" id="pfX-nx-dys">
  2587. <rect key="frame" x="13" y="39" width="350" height="34"/>
  2588. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2589. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2590. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2591. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  2592. <textInputTraits key="textInputTraits" autocapitalizationType="words" autocorrectionType="no" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  2593. <connections>
  2594. <action selector="saveAction:" destination="3Ka-Iq-ckG" eventType="editingDidEndOnExit" id="JIk-ib-Ro2"/>
  2595. <outlet property="delegate" destination="3Ka-Iq-ckG" id="Osu-sO-iQZ"/>
  2596. </connections>
  2597. </textField>
  2598. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="gGZ-U4-LbT">
  2599. <rect key="frame" x="15" y="11" width="268" height="21"/>
  2600. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2601. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2602. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2603. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2604. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2605. </label>
  2606. </subviews>
  2607. </tableViewCellContentView>
  2608. </tableViewCell>
  2609. </cells>
  2610. </tableViewSection>
  2611. </sections>
  2612. <connections>
  2613. <outlet property="dataSource" destination="3Ka-Iq-ckG" id="n3o-wI-HMe"/>
  2614. <outlet property="delegate" destination="3Ka-Iq-ckG" id="CWB-KT-fiC"/>
  2615. </connections>
  2616. </tableView>
  2617. <navigationItem key="navigationItem" title="Nickname" id="dNk-Ua-Fm2">
  2618. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="Vu6-wK-6ZO">
  2619. <connections>
  2620. <action selector="cancelAction:" destination="3Ka-Iq-ckG" id="GlV-xo-Gw2"/>
  2621. </connections>
  2622. </barButtonItem>
  2623. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="Cit-3C-pId">
  2624. <connections>
  2625. <action selector="saveAction:" destination="3Ka-Iq-ckG" id="gzP-4H-3hR"/>
  2626. </connections>
  2627. </barButtonItem>
  2628. </navigationItem>
  2629. <connections>
  2630. <outlet property="pushNameTextField" destination="pfX-nx-dys" id="ENh-Q6-3KA"/>
  2631. </connections>
  2632. </tableViewController>
  2633. <placeholder placeholderIdentifier="IBFirstResponder" id="cbj-Hx-SFu" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2634. </objects>
  2635. <point key="canvasLocation" x="5278" y="1005"/>
  2636. </scene>
  2637. <!--Neuer Kontakt-->
  2638. <scene sceneID="VLu-R9-fjo">
  2639. <objects>
  2640. <tableViewController id="bcN-Ct-OaD" customClass="NewScannedContactViewController" sceneMemberID="viewController">
  2641. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="Bmo-Py-2FX">
  2642. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2643. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2644. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2645. <view key="tableHeaderView" contentMode="scaleToFill" id="DOF-uj-3Fc">
  2646. <rect key="frame" x="0.0" y="0.0" width="375" height="90"/>
  2647. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2648. <subviews>
  2649. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="vVr-Sj-fJm">
  2650. <rect key="frame" x="90" y="32" width="247" height="25"/>
  2651. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2652. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  2653. <nil key="highlightedColor"/>
  2654. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2655. <size key="shadowOffset" width="0.0" height="1"/>
  2656. </label>
  2657. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" adjustsImageWhenDisabled="NO" lineBreakMode="middleTruncation" id="z0R-2s-fbs">
  2658. <rect key="frame" x="11" y="15" width="66" height="66"/>
  2659. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2660. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  2661. <state key="normal" image="unknown-person-56.png">
  2662. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2663. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2664. </state>
  2665. <state key="highlighted">
  2666. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2667. </state>
  2668. </button>
  2669. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="ljc-gO-9Hd">
  2670. <rect key="frame" x="345" y="34" width="22" height="22"/>
  2671. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2672. <inset key="insetFor6xAndEarlier" minX="0.0" minY="5" maxX="0.0" maxY="-5"/>
  2673. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  2674. <state key="normal">
  2675. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2676. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2677. </state>
  2678. <state key="highlighted">
  2679. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2680. </state>
  2681. <connections>
  2682. <segue destination="B4x-zQ-paX" kind="push" identifier="EditName" id="DIb-qz-hrs"/>
  2683. </connections>
  2684. </button>
  2685. </subviews>
  2686. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  2687. </view>
  2688. <sections>
  2689. <tableViewSection id="hid-mP-yqG">
  2690. <cells>
  2691. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Cdn-Kp-IS7">
  2692. <rect key="frame" x="0.0" y="90" width="375" height="44"/>
  2693. <autoresizingMask key="autoresizingMask"/>
  2694. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Cdn-Kp-IS7" id="hLi-10-QMB">
  2695. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2696. <autoresizingMask key="autoresizingMask"/>
  2697. <subviews>
  2698. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Threema ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HyL-3h-V50">
  2699. <rect key="frame" x="15" y="11" width="169" height="21"/>
  2700. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2701. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2702. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2703. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2704. <nil key="highlightedColor"/>
  2705. </label>
  2706. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="UZL-DO-9Jw" customClass="CopyLabel">
  2707. <rect key="frame" x="221" y="11" width="137" height="21"/>
  2708. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2709. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2710. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2711. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2712. </label>
  2713. </subviews>
  2714. </tableViewCellContentView>
  2715. </tableViewCell>
  2716. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="Cyg-Ay-24d" customClass="KeyFingerprintCell">
  2717. <rect key="frame" x="0.0" y="134" width="375" height="65"/>
  2718. <autoresizingMask key="autoresizingMask"/>
  2719. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Cyg-Ay-24d" id="bSY-YH-2UE">
  2720. <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
  2721. <autoresizingMask key="autoresizingMask"/>
  2722. <subviews>
  2723. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Schlüssel-Fingerabdruck" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="yV8-s4-QCa">
  2724. <rect key="frame" x="15" y="11" width="277" height="21"/>
  2725. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2726. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2727. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2728. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2729. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2730. </label>
  2731. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="w7I-fn-WgV" customClass="CopyLabel">
  2732. <rect key="frame" x="14" y="34" width="350" height="21"/>
  2733. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2734. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2735. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  2736. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2737. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2738. </label>
  2739. </subviews>
  2740. </tableViewCellContentView>
  2741. <connections>
  2742. <outlet property="fingerprintLabel" destination="w7I-fn-WgV" id="cvZ-QD-pQa"/>
  2743. </connections>
  2744. </tableViewCell>
  2745. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Aed-tu-6pe" customClass="VerificationLevelCell">
  2746. <rect key="frame" x="0.0" y="199" width="375" height="44"/>
  2747. <autoresizingMask key="autoresizingMask"/>
  2748. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Aed-tu-6pe" id="di1-EX-iXJ">
  2749. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2750. <autoresizingMask key="autoresizingMask"/>
  2751. <subviews>
  2752. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sicherheitsstufe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="BZD-JQ-d5y">
  2753. <rect key="frame" x="15" y="11" width="211" height="21"/>
  2754. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2755. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2756. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2757. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2758. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2759. </label>
  2760. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="dh6-P2-gpG">
  2761. <rect key="frame" x="304" y="16" width="48" height="11"/>
  2762. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2763. </imageView>
  2764. </subviews>
  2765. </tableViewCellContentView>
  2766. <connections>
  2767. <outlet property="levelImage" destination="dh6-P2-gpG" id="hP1-XL-Lls"/>
  2768. </connections>
  2769. </tableViewCell>
  2770. </cells>
  2771. </tableViewSection>
  2772. <tableViewSection id="kqn-ag-dj2">
  2773. <cells>
  2774. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="eOy-rx-zHg">
  2775. <rect key="frame" x="0.0" y="263" width="375" height="65"/>
  2776. <autoresizingMask key="autoresizingMask"/>
  2777. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="eOy-rx-zHg" id="DXX-JY-KD5">
  2778. <rect key="frame" x="0.0" y="0.0" width="342" height="64.5"/>
  2779. <autoresizingMask key="autoresizingMask"/>
  2780. <subviews>
  2781. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Mit Kontakt verknüpfen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="otC-iO-wzt">
  2782. <rect key="frame" x="15" y="11" width="270" height="21"/>
  2783. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2784. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2785. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2786. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2787. <nil key="highlightedColor"/>
  2788. </label>
  2789. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="John Doe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="iJa-K2-2uc">
  2790. <rect key="frame" x="14" y="34" width="315" height="21"/>
  2791. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2792. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2793. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  2794. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2795. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2796. </label>
  2797. </subviews>
  2798. </tableViewCellContentView>
  2799. </tableViewCell>
  2800. </cells>
  2801. </tableViewSection>
  2802. </sections>
  2803. <connections>
  2804. <outlet property="dataSource" destination="bcN-Ct-OaD" id="ipn-iV-5Ib"/>
  2805. <outlet property="delegate" destination="bcN-Ct-OaD" id="EUy-ek-oeQ"/>
  2806. </connections>
  2807. </tableView>
  2808. <navigationItem key="navigationItem" title="Neuer Kontakt" id="BAB-op-TwI">
  2809. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="azp-gT-Imw">
  2810. <connections>
  2811. <action selector="cancel:" destination="bcN-Ct-OaD" id="LV1-iu-ccE"/>
  2812. </connections>
  2813. </barButtonItem>
  2814. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="yh8-Dg-I1o">
  2815. <connections>
  2816. <action selector="save:" destination="bcN-Ct-OaD" id="YqD-KL-VXp"/>
  2817. </connections>
  2818. </barButtonItem>
  2819. </navigationItem>
  2820. <connections>
  2821. <outlet property="contactImage" destination="z0R-2s-fbs" id="m7d-8n-iZi"/>
  2822. <outlet property="editNameButton" destination="ljc-gO-9Hd" id="GGi-YL-zeX"/>
  2823. <outlet property="headerView" destination="DOF-uj-3Fc" id="jV3-vz-jKR"/>
  2824. <outlet property="identityLabel" destination="UZL-DO-9Jw" id="jmo-Q5-z3S"/>
  2825. <outlet property="keyFingerprintCell" destination="Cyg-Ay-24d" id="bOb-Fb-EKZ"/>
  2826. <outlet property="linkToContactCell" destination="eOy-rx-zHg" id="Yrp-YK-4fH"/>
  2827. <outlet property="linkedContactNameLabel" destination="iJa-K2-2uc" id="ggG-bA-XqH"/>
  2828. <outlet property="nameLabel" destination="vVr-Sj-fJm" id="3ry-aw-0pA"/>
  2829. <outlet property="verificationLevelCell" destination="Aed-tu-6pe" id="7pL-hs-EeF"/>
  2830. </connections>
  2831. </tableViewController>
  2832. <placeholder placeholderIdentifier="IBFirstResponder" id="jtL-yP-Df5" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2833. </objects>
  2834. <point key="canvasLocation" x="6191" y="952"/>
  2835. </scene>
  2836. <!--Gruppendetails-->
  2837. <scene sceneID="0Bo-NM-iRc">
  2838. <objects>
  2839. <tableViewController storyboardIdentifier="groupDetailsViewController" id="Ms8-he-mHa" customClass="GroupDetailsViewController" sceneMemberID="viewController">
  2840. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="64" sectionHeaderHeight="10" sectionFooterHeight="10" id="jYd-6J-1Qe">
  2841. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2842. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2843. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2844. <view key="tableHeaderView" contentMode="scaleToFill" id="6x8-hM-L5f">
  2845. <rect key="frame" x="0.0" y="0.0" width="375" height="102"/>
  2846. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2847. <subviews>
  2848. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Creator: Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="cNf-3j-eOO" userLabel="Creator">
  2849. <rect key="frame" x="110" y="59" width="225" height="25"/>
  2850. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2851. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  2852. <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2853. <nil key="highlightedColor"/>
  2854. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2855. <size key="shadowOffset" width="0.0" height="1"/>
  2856. </label>
  2857. <imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="unknown-group-56.png" id="esF-fQ-ZaG">
  2858. <rect key="frame" x="12" y="16" width="84" height="84"/>
  2859. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2860. </imageView>
  2861. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="NJS-s6-F65">
  2862. <rect key="frame" x="341" y="47" width="22" height="22"/>
  2863. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2864. <state key="normal">
  2865. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2866. </state>
  2867. </button>
  2868. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Jri-Jp-Hpu" userLabel="Group Name">
  2869. <rect key="frame" x="110" y="32" width="225" height="25"/>
  2870. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2871. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  2872. <nil key="highlightedColor"/>
  2873. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2874. <size key="shadowOffset" width="0.0" height="1"/>
  2875. </label>
  2876. </subviews>
  2877. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  2878. </view>
  2879. <prototypes>
  2880. <tableViewCell tag="3" contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupMemberCell" rowHeight="60" id="Uo2-o4-j8V" customClass="GroupMemberCell">
  2881. <rect key="frame" x="0.0" y="157.5" width="375" height="60"/>
  2882. <autoresizingMask key="autoresizingMask"/>
  2883. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Uo2-o4-j8V" id="pmm-iT-OFC">
  2884. <rect key="frame" x="0.0" y="0.0" width="342" height="59.5"/>
  2885. <autoresizingMask key="autoresizingMask"/>
  2886. <subviews>
  2887. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-48.png" id="wOG-v3-9L7">
  2888. <rect key="frame" x="11" y="6" width="48" height="48"/>
  2889. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2890. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2891. </imageView>
  2892. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="John Doe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="g8r-Dc-Sp0" customClass="ContactNameLabel">
  2893. <rect key="frame" x="68" y="19" width="248" height="21"/>
  2894. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2895. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  2896. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  2897. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2898. <nil key="highlightedColor"/>
  2899. </label>
  2900. </subviews>
  2901. </tableViewCellContentView>
  2902. <connections>
  2903. <outlet property="contactImage" destination="wOG-v3-9L7" id="iQL-ko-Yyb"/>
  2904. <outlet property="nameLabel" destination="g8r-Dc-Sp0" id="2F6-SG-pDK"/>
  2905. </connections>
  2906. </tableViewCell>
  2907. <tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="AddMemberCell" rowHeight="44" id="fC4-24-uG5" customClass="AddMemberCell">
  2908. <rect key="frame" x="0.0" y="217.5" width="375" height="44"/>
  2909. <autoresizingMask key="autoresizingMask"/>
  2910. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fC4-24-uG5" id="AKi-Qr-4oL">
  2911. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2912. <autoresizingMask key="autoresizingMask"/>
  2913. <subviews>
  2914. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="PlusButton.png" id="4yk-L5-gn8">
  2915. <rect key="frame" x="15" y="11" width="22" height="22"/>
  2916. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2917. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2918. </imageView>
  2919. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Mitglieder bearbeiten..." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AHX-FD-Cmx">
  2920. <rect key="frame" x="47" y="11" width="232" height="21"/>
  2921. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2922. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2923. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2924. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2925. <nil key="highlightedColor"/>
  2926. </label>
  2927. </subviews>
  2928. </tableViewCellContentView>
  2929. <connections>
  2930. <outlet property="addLabel" destination="AHX-FD-Cmx" id="gY6-Om-C45"/>
  2931. <outlet property="plusImage" destination="4yk-L5-gn8" id="Ge5-9A-2FU"/>
  2932. </connections>
  2933. </tableViewCell>
  2934. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SyncCell" rowHeight="44" id="xXC-Dv-KXG" customClass="GroupSyncCell">
  2935. <rect key="frame" x="0.0" y="261.5" width="375" height="44"/>
  2936. <autoresizingMask key="autoresizingMask"/>
  2937. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xXC-Dv-KXG" id="2cg-ld-dil">
  2938. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2939. <autoresizingMask key="autoresizingMask"/>
  2940. <subviews>
  2941. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="759-refresh-2.png" id="fb0-Jl-ahI">
  2942. <rect key="frame" x="15" y="11" width="22" height="22"/>
  2943. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2944. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2945. </imageView>
  2946. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Gruppe synchronisieren" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="MEa-Te-wbA">
  2947. <rect key="frame" x="47" y="11" width="232" height="21"/>
  2948. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2949. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2950. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2951. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2952. <nil key="highlightedColor"/>
  2953. </label>
  2954. </subviews>
  2955. </tableViewCellContentView>
  2956. <connections>
  2957. <outlet property="syncGroupImageView" destination="fb0-Jl-ahI" id="ftZ-c1-57P"/>
  2958. </connections>
  2959. </tableViewCell>
  2960. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="SendMessageCell" textLabel="fJh-mN-bfb" style="IBUITableViewCellStyleDefault" id="CS9-Sh-lQN">
  2961. <rect key="frame" x="0.0" y="305.5" width="375" height="64"/>
  2962. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2963. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CS9-Sh-lQN" id="6kA-0a-tpf">
  2964. <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
  2965. <autoresizingMask key="autoresizingMask"/>
  2966. <subviews>
  2967. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Nachricht senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="fJh-mN-bfb">
  2968. <rect key="frame" x="16" y="0.0" width="344" height="64"/>
  2969. <autoresizingMask key="autoresizingMask"/>
  2970. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2971. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2972. <nil key="highlightedColor"/>
  2973. </label>
  2974. </subviews>
  2975. </tableViewCellContentView>
  2976. </tableViewCell>
  2977. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="EmailConversationCell" textLabel="dyI-k8-1HL" rowHeight="44" style="IBUITableViewCellStyleDefault" id="rE8-9I-AaV">
  2978. <rect key="frame" x="0.0" y="369.5" width="375" height="44"/>
  2979. <autoresizingMask key="autoresizingMask"/>
  2980. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rE8-9I-AaV" id="Mtk-qb-hL2">
  2981. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2982. <autoresizingMask key="autoresizingMask"/>
  2983. <subviews>
  2984. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Chat per E-Mail senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="dyI-k8-1HL">
  2985. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  2986. <autoresizingMask key="autoresizingMask"/>
  2987. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2988. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2989. <nil key="highlightedColor"/>
  2990. </label>
  2991. </subviews>
  2992. </tableViewCellContentView>
  2993. </tableViewCell>
  2994. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="LeaveGroupCell" textLabel="74M-ip-a37" style="IBUITableViewCellStyleDefault" id="gpp-XW-9pS">
  2995. <rect key="frame" x="0.0" y="413.5" width="375" height="64"/>
  2996. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2997. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gpp-XW-9pS" id="KAV-n6-XbO">
  2998. <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
  2999. <autoresizingMask key="autoresizingMask"/>
  3000. <subviews>
  3001. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Gruppe verlassen" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="74M-ip-a37">
  3002. <rect key="frame" x="16" y="0.0" width="344" height="64"/>
  3003. <autoresizingMask key="autoresizingMask"/>
  3004. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3005. <color key="textColor" red="1" green="0.14489134100141676" blue="0.028320687089866792" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3006. <nil key="highlightedColor"/>
  3007. </label>
  3008. </subviews>
  3009. </tableViewCellContentView>
  3010. </tableViewCell>
  3011. </prototypes>
  3012. <connections>
  3013. <outlet property="dataSource" destination="Ms8-he-mHa" id="Wjd-4D-frU"/>
  3014. <outlet property="delegate" destination="Ms8-he-mHa" id="3W6-xU-yBi"/>
  3015. </connections>
  3016. </tableView>
  3017. <navigationItem key="navigationItem" title="Gruppendetails" id="oEX-1h-I2a"/>
  3018. <connections>
  3019. <outlet property="creatorLabel" destination="cNf-3j-eOO" id="Xhd-5v-iXo"/>
  3020. <outlet property="disclosureButton" destination="NJS-s6-F65" id="PFJ-aA-xpz"/>
  3021. <outlet property="headerView" destination="6x8-hM-L5f" id="H9T-VK-mXg"/>
  3022. <outlet property="imageView" destination="esF-fQ-ZaG" id="DBT-D1-xKT"/>
  3023. <outlet property="nameLabel" destination="Jri-Jp-Hpu" id="cYZ-Ef-jzA"/>
  3024. <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="oPU-me-pkQ"/>
  3025. </connections>
  3026. </tableViewController>
  3027. <placeholder placeholderIdentifier="IBFirstResponder" id="PFS-PI-sZe" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3028. </objects>
  3029. <point key="canvasLocation" x="2569" y="187"/>
  3030. </scene>
  3031. <!--Sicherheitsstufe-->
  3032. <scene sceneID="X1e-I4-oAv">
  3033. <objects>
  3034. <viewController id="BHJ-uI-yhd" customClass="VerificationViewController" sceneMemberID="viewController">
  3035. <view key="view" contentMode="scaleToFill" id="IK2-gw-H44">
  3036. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3037. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3038. <subviews>
  3039. <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" id="nk0-Pv-adz">
  3040. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3041. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3042. <subviews>
  3043. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" text="Die Punkte geben die Vertrauensstufe für einen Kontakt an." id="ZUs-Jj-igv">
  3044. <rect key="frame" x="12" y="18" width="341" height="60"/>
  3045. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3046. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3047. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  3048. </textView>
  3049. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Die höchste Sicherheitsstufe wird nur durch persönliches Scannen des QR Code erreicht." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Zxb-Je-9CC" customClass="SSLabel">
  3050. <rect key="frame" x="84" y="88" width="269" height="90"/>
  3051. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3052. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3053. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3054. <nil key="highlightedColor"/>
  3055. </label>
  3056. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-1.png" id="iDJ-jh-Gt9">
  3057. <rect key="frame" x="18" y="196" width="50" height="12"/>
  3058. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3059. </imageView>
  3060. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Der Kontakt wurde mit verifizierter Telefonnummer oder E-Mail-Adresse im Adressbuch gefunden." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Y9L-O2-c5C" customClass="SSLabel">
  3061. <rect key="frame" x="84" y="192" width="269" height="90"/>
  3062. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3063. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3064. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3065. <nil key="highlightedColor"/>
  3066. </label>
  3067. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-0.png" id="GFO-oV-PP3">
  3068. <rect key="frame" x="18" y="300" width="50" height="12"/>
  3069. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3070. </imageView>
  3071. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Anonymer Kontakt. Die Threema-ID des Kontakts wurde nicht mit einer Ihnen bekannten Telefonnummer oder E-Mail-Adresse verlinkt." lineBreakMode="tailTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" minimumFontSize="12" id="1xB-q0-ZXX" customClass="SSLabel">
  3072. <rect key="frame" x="84" y="296" width="269" height="90"/>
  3073. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3074. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3075. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3076. <nil key="highlightedColor"/>
  3077. </label>
  3078. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="JV7-wB-ei5">
  3079. <rect key="frame" x="18" y="92" width="50" height="12"/>
  3080. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3081. </imageView>
  3082. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-3.png" id="qY0-DT-vWa">
  3083. <rect key="frame" x="18" y="403" width="50" height="12"/>
  3084. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3085. </imageView>
  3086. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Threema Work Kontakt. Der Administrator hat diesen Kontakt vorkonfiguriert." lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="12" id="Dkl-lv-Gfl" customClass="SSLabel">
  3087. <rect key="frame" x="84" y="399" width="269" height="63"/>
  3088. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3089. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3090. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3091. <nil key="highlightedColor"/>
  3092. </label>
  3093. </subviews>
  3094. </scrollView>
  3095. </subviews>
  3096. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3097. </view>
  3098. <navigationItem key="navigationItem" title="Sicherheitsstufe" id="RYr-oG-d5j"/>
  3099. <nil key="simulatedBottomBarMetrics"/>
  3100. <connections>
  3101. <outlet property="descriptionTextView" destination="ZUs-Jj-igv" id="GjV-od-Ldm"/>
  3102. <outlet property="imageLevel0" destination="GFO-oV-PP3" id="CmD-kj-AXc"/>
  3103. <outlet property="imageLevel1" destination="iDJ-jh-Gt9" id="VAS-hw-WXf"/>
  3104. <outlet property="imageLevel2" destination="JV7-wB-ei5" id="owp-g3-SWf"/>
  3105. <outlet property="imageLevel3" destination="qY0-DT-vWa" id="cDe-Z5-mqF"/>
  3106. <outlet property="labelLevel0" destination="1xB-q0-ZXX" id="u8h-UT-7bx"/>
  3107. <outlet property="labelLevel1" destination="Y9L-O2-c5C" id="Nwp-3c-C5r"/>
  3108. <outlet property="labelLevel2" destination="Zxb-Je-9CC" id="T4F-md-SLa"/>
  3109. <outlet property="labelLevel3" destination="Dkl-lv-Gfl" id="XNW-9F-dfu"/>
  3110. <outlet property="scrollView" destination="nk0-Pv-adz" id="tHE-oa-v06"/>
  3111. </connections>
  3112. </viewController>
  3113. <placeholder placeholderIdentifier="IBFirstResponder" id="O9J-dO-Gby" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3114. </objects>
  3115. <point key="canvasLocation" x="3056" y="-94"/>
  3116. </scene>
  3117. <!--Kontakt hinzufügen-->
  3118. <scene sceneID="oOX-bu-bWV">
  3119. <objects>
  3120. <tableViewController id="G1V-ju-hH8" customClass="AddContactViewController" sceneMemberID="viewController">
  3121. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="K6b-41-Rkh">
  3122. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3123. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3124. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3125. <sections>
  3126. <tableViewSection id="72X-QI-1f3">
  3127. <cells>
  3128. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="89" id="al9-Xu-cio">
  3129. <rect key="frame" x="0.0" y="35" width="375" height="89"/>
  3130. <autoresizingMask key="autoresizingMask"/>
  3131. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="al9-Xu-cio" id="3J9-nj-Hgy">
  3132. <rect key="frame" x="0.0" y="0.0" width="375" height="88.5"/>
  3133. <autoresizingMask key="autoresizingMask"/>
  3134. <subviews>
  3135. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="ID" minimumFontSize="17" id="YoS-Np-Z37">
  3136. <rect key="frame" x="14" y="42" width="344" height="34"/>
  3137. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3138. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3139. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3140. <fontDescription key="fontDescription" type="system" pointSize="28"/>
  3141. <textInputTraits key="textInputTraits" autocapitalizationType="allCharacters" autocorrectionType="no" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  3142. <connections>
  3143. <outlet property="delegate" destination="G1V-ju-hH8" id="3rH-1t-iUw"/>
  3144. </connections>
  3145. </textField>
  3146. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID manuell eingeben" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="zYA-qz-iwe">
  3147. <rect key="frame" x="15" y="11" width="268" height="21"/>
  3148. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3149. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3150. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3151. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3152. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3153. </label>
  3154. </subviews>
  3155. </tableViewCellContentView>
  3156. </tableViewCell>
  3157. </cells>
  3158. </tableViewSection>
  3159. <tableViewSection id="e9k-VH-lsl">
  3160. <cells>
  3161. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="YPC-ic-pTa" imageView="BKc-YV-enp" style="IBUITableViewCellStyleDefault" id="cdb-1L-fZu">
  3162. <rect key="frame" x="0.0" y="144" width="375" height="44"/>
  3163. <autoresizingMask key="autoresizingMask"/>
  3164. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="cdb-1L-fZu" id="xik-ar-cyW">
  3165. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  3166. <autoresizingMask key="autoresizingMask"/>
  3167. <subviews>
  3168. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID scannen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="YPC-ic-pTa">
  3169. <rect key="frame" x="54" y="0.0" width="286" height="43"/>
  3170. <autoresizingMask key="autoresizingMask"/>
  3171. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3172. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3173. <nil key="highlightedColor"/>
  3174. </label>
  3175. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="86-camera.png" highlightedImage="86-camera.png" id="BKc-YV-enp">
  3176. <rect key="frame" x="16" y="12" width="23" height="18"/>
  3177. <autoresizingMask key="autoresizingMask"/>
  3178. </imageView>
  3179. </subviews>
  3180. </tableViewCellContentView>
  3181. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  3182. </tableViewCell>
  3183. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="xRZ-tM-3dS" style="IBUITableViewCellStyleDefault" id="Tr4-JV-PPU">
  3184. <rect key="frame" x="0.0" y="188" width="375" height="44"/>
  3185. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3186. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Tr4-JV-PPU" id="6SY-iN-gCj">
  3187. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  3188. <autoresizingMask key="autoresizingMask"/>
  3189. <subviews>
  3190. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Freunde einladen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="xRZ-tM-3dS">
  3191. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  3192. <autoresizingMask key="autoresizingMask"/>
  3193. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3194. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3195. <nil key="highlightedColor"/>
  3196. </label>
  3197. </subviews>
  3198. </tableViewCellContentView>
  3199. </tableViewCell>
  3200. </cells>
  3201. </tableViewSection>
  3202. </sections>
  3203. <connections>
  3204. <outlet property="dataSource" destination="G1V-ju-hH8" id="lOd-gQ-aA4"/>
  3205. <outlet property="delegate" destination="G1V-ju-hH8" id="prm-rV-y9u"/>
  3206. </connections>
  3207. </tableView>
  3208. <navigationItem key="navigationItem" title="Kontakt hinzufügen" id="Eq0-ED-f11">
  3209. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="1WQ-02-3J0">
  3210. <connections>
  3211. <action selector="cancelAction:" destination="G1V-ju-hH8" id="4tc-43-LcQ"/>
  3212. </connections>
  3213. </barButtonItem>
  3214. <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="VEq-T8-yyu">
  3215. <connections>
  3216. <action selector="doneAction:" destination="G1V-ju-hH8" id="TMy-Sd-G9r"/>
  3217. </connections>
  3218. </barButtonItem>
  3219. </navigationItem>
  3220. <connections>
  3221. <outlet property="identityTextField" destination="YoS-Np-Z37" id="h0l-zX-7fe"/>
  3222. <outlet property="scanIdentityCell" destination="cdb-1L-fZu" id="TWi-lx-If4"/>
  3223. </connections>
  3224. </tableViewController>
  3225. <placeholder placeholderIdentifier="IBFirstResponder" id="WWb-st-0qa" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3226. </objects>
  3227. <point key="canvasLocation" x="2534" y="-1158"/>
  3228. </scene>
  3229. <!--Animated Navigation Controller-->
  3230. <scene sceneID="VaV-F2-hej">
  3231. <objects>
  3232. <navigationController id="jkA-kt-EVh" customClass="AnimatedNavigationController" sceneMemberID="viewController">
  3233. <tabBarItem key="tabBarItem" systemItem="contacts" id="JXW-2V-ftV"/>
  3234. <toolbarItems/>
  3235. <navigationBar key="navigationBar" contentMode="scaleToFill" id="5Ob-0j-Mcg" customClass="StatusNavigationBar">
  3236. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3237. <autoresizingMask key="autoresizingMask"/>
  3238. </navigationBar>
  3239. <nil name="viewControllers"/>
  3240. <connections>
  3241. <segue destination="4Fd-lk-A1K" kind="relationship" relationship="rootViewController" id="yke-Pd-pZG"/>
  3242. </connections>
  3243. </navigationController>
  3244. <placeholder placeholderIdentifier="IBFirstResponder" id="DXi-bE-KsG" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3245. </objects>
  3246. <point key="canvasLocation" x="857" y="-337"/>
  3247. </scene>
  3248. <!--Meine ID-->
  3249. <scene sceneID="Juw-dJ-4IQ">
  3250. <objects>
  3251. <navigationController id="uvv-Ko-dQ8" customClass="MyIdentityNavigationController" sceneMemberID="viewController">
  3252. <tabBarItem key="tabBarItem" title="Meine ID" image="123-id-card.png" id="5lj-oy-IYs"/>
  3253. <toolbarItems/>
  3254. <navigationBar key="navigationBar" contentMode="scaleToFill" id="ySu-3e-OwE" customClass="StatusNavigationBar">
  3255. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3256. <autoresizingMask key="autoresizingMask"/>
  3257. </navigationBar>
  3258. <nil name="viewControllers"/>
  3259. <connections>
  3260. <segue destination="I0k-J8-Vtl" kind="relationship" relationship="rootViewController" id="Ez4-Zw-CQh"/>
  3261. </connections>
  3262. </navigationController>
  3263. <placeholder placeholderIdentifier="IBFirstResponder" id="RxJ-yK-Fe6" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3264. </objects>
  3265. <point key="canvasLocation" x="887" y="1277"/>
  3266. </scene>
  3267. <!--Modal Navigation Controller-->
  3268. <scene sceneID="oa6-Aq-F4t">
  3269. <objects>
  3270. <navigationController storyboardIdentifier="NewScannedContact" id="udX-d0-cyB" customClass="ModalNavigationController" sceneMemberID="viewController">
  3271. <toolbarItems/>
  3272. <navigationBar key="navigationBar" contentMode="scaleToFill" id="Q0G-EA-t5Z" customClass="StatusNavigationBar">
  3273. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3274. <autoresizingMask key="autoresizingMask"/>
  3275. </navigationBar>
  3276. <nil name="viewControllers"/>
  3277. <connections>
  3278. <segue destination="bcN-Ct-OaD" kind="relationship" relationship="rootViewController" id="MvH-hT-pfP"/>
  3279. </connections>
  3280. </navigationController>
  3281. <placeholder placeholderIdentifier="IBFirstResponder" id="Tst-lN-YQp" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3282. </objects>
  3283. <point key="canvasLocation" x="5753" y="973"/>
  3284. </scene>
  3285. <!--Chat View Controller-->
  3286. <scene sceneID="0PO-DN-NhL">
  3287. <objects>
  3288. <viewController storyboardIdentifier="chatViewController" autoresizesArchivedViewToFullSize="NO" hidesBottomBarWhenPushed="YES" id="v1R-9K-OZW" customClass="ChatViewController" sceneMemberID="viewController">
  3289. <view key="view" contentMode="scaleToFill" id="qMd-WF-uDa">
  3290. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3291. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3292. <subviews>
  3293. <view contentMode="scaleToFill" id="ZhQ-2Z-mYP">
  3294. <rect key="frame" x="0.0" y="0.0" width="375" height="40"/>
  3295. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3296. <subviews>
  3297. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" id="WuX-yK-0RJ">
  3298. <rect key="frame" x="8" y="4" width="358" height="32"/>
  3299. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3300. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  3301. <size key="titleShadowOffset" width="1" height="1"/>
  3302. <state key="normal" title="Vorherige Nachrichten laden">
  3303. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3304. <color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3305. </state>
  3306. <state key="highlighted">
  3307. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3308. </state>
  3309. <connections>
  3310. <action selector="loadEarlierMessagesAction:" destination="v1R-9K-OZW" eventType="touchUpInside" id="IcO-Sz-Dj3"/>
  3311. </connections>
  3312. </button>
  3313. </subviews>
  3314. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3315. </view>
  3316. </subviews>
  3317. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3318. </view>
  3319. <navigationItem key="navigationItem" id="uYf-zy-tOB"/>
  3320. <connections>
  3321. <outlet property="chatContentHeader" destination="ZhQ-2Z-mYP" id="7vq-AJ-cwL"/>
  3322. <outlet property="headerView" destination="ZhQ-2Z-mYP" id="zqP-cB-jca"/>
  3323. <outlet property="loadEarlierMessages" destination="WuX-yK-0RJ" id="vcS-wC-de0"/>
  3324. <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="rOK-24-MIK"/>
  3325. <segue destination="FVk-BM-jrL" kind="push" identifier="ShowLocation" id="WV3-3M-WJY"/>
  3326. <segue destination="E7y-fb-wyM" kind="push" identifier="ShowDetails" id="c6z-1E-Rur"/>
  3327. <segue destination="Ms8-he-mHa" kind="push" identifier="ShowGroupInfo" id="iDo-S6-WeN"/>
  3328. </connections>
  3329. </viewController>
  3330. <placeholder placeholderIdentifier="IBFirstResponder" id="bM3-IQ-bac" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3331. </objects>
  3332. <point key="canvasLocation" x="1874" y="486"/>
  3333. </scene>
  3334. <!--Vorschau-->
  3335. <scene sceneID="ZQM-N7-ABW">
  3336. <objects>
  3337. <viewController storyboardIdentifier="PreviewImage" id="xFf-fm-QrO" customClass="PreviewImageViewController" sceneMemberID="viewController">
  3338. <view key="view" contentMode="scaleToFill" id="eVy-LW-gwf">
  3339. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3340. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3341. <subviews>
  3342. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" id="94h-MW-FVh">
  3343. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3344. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3345. </imageView>
  3346. </subviews>
  3347. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3348. </view>
  3349. <navigationItem key="navigationItem" title="Vorschau" id="wPu-F7-kf1">
  3350. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="YCy-tZ-DQg">
  3351. <connections>
  3352. <action selector="cancelAction:" destination="xFf-fm-QrO" id="33e-eE-gCh"/>
  3353. </connections>
  3354. </barButtonItem>
  3355. <barButtonItem key="rightBarButtonItem" title="Senden" style="done" id="25C-Te-sfW">
  3356. <connections>
  3357. <action selector="sendAction:" destination="xFf-fm-QrO" id="GMR-ZL-Qz8"/>
  3358. </connections>
  3359. </barButtonItem>
  3360. </navigationItem>
  3361. <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" barStyle="black" prompted="NO"/>
  3362. <connections>
  3363. <outlet property="imageView" destination="94h-MW-FVh" id="15h-Ag-y2z"/>
  3364. </connections>
  3365. </viewController>
  3366. <placeholder placeholderIdentifier="IBFirstResponder" id="LwV-KW-DFP" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3367. </objects>
  3368. <point key="canvasLocation" x="5803" y="-1524"/>
  3369. </scene>
  3370. <!--Modal Navigation Controller-->
  3371. <scene sceneID="I9d-0A-aFE">
  3372. <objects>
  3373. <navigationController storyboardIdentifier="ContactPickerNav" id="X2J-pF-E4b" customClass="ModalNavigationController" sceneMemberID="viewController">
  3374. <toolbarItems/>
  3375. <navigationBar key="navigationBar" contentMode="scaleToFill" id="ZlH-8V-PkV" customClass="StatusNavigationBar">
  3376. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3377. <autoresizingMask key="autoresizingMask"/>
  3378. </navigationBar>
  3379. <nil name="viewControllers"/>
  3380. <connections>
  3381. <segue destination="OvB-ud-WFO" kind="relationship" relationship="rootViewController" id="ls1-VK-yb6"/>
  3382. </connections>
  3383. </navigationController>
  3384. <placeholder placeholderIdentifier="IBFirstResponder" id="nxw-Dj-CRk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3385. </objects>
  3386. <point key="canvasLocation" x="5197" y="-125"/>
  3387. </scene>
  3388. <!--Modal Navigation Controller-->
  3389. <scene sceneID="D9S-JR-67e">
  3390. <objects>
  3391. <navigationController storyboardIdentifier="VerifyScannedContact" id="c2x-1I-hYh" customClass="ModalNavigationController" sceneMemberID="viewController">
  3392. <toolbarItems/>
  3393. <navigationBar key="navigationBar" contentMode="scaleToFill" id="ife-ea-aDH" customClass="StatusNavigationBar">
  3394. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3395. <autoresizingMask key="autoresizingMask"/>
  3396. </navigationBar>
  3397. <nil name="viewControllers"/>
  3398. <connections>
  3399. <segue destination="CJa-dK-jp4" kind="relationship" relationship="rootViewController" id="718-Kk-eTH"/>
  3400. </connections>
  3401. </navigationController>
  3402. <placeholder placeholderIdentifier="IBFirstResponder" id="pO8-XU-dTk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3403. </objects>
  3404. <point key="canvasLocation" x="5967" y="1666"/>
  3405. </scene>
  3406. <!--ID überprüft-->
  3407. <scene sceneID="QYY-E3-5fH">
  3408. <objects>
  3409. <tableViewController id="CJa-dK-jp4" customClass="IdentityVerifiedViewController" sceneMemberID="viewController">
  3410. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="yAX-VY-6pV">
  3411. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3412. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3413. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3414. <view key="tableHeaderView" contentMode="scaleToFill" id="QYE-YD-T2a">
  3415. <rect key="frame" x="0.0" y="0.0" width="375" height="90"/>
  3416. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3417. <subviews>
  3418. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="fRK-k7-Yj2">
  3419. <rect key="frame" x="11" y="15" width="66" height="66"/>
  3420. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3421. </imageView>
  3422. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="wV3-0n-mKm">
  3423. <rect key="frame" x="90" y="32" width="265" height="25"/>
  3424. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3425. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  3426. <nil key="highlightedColor"/>
  3427. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3428. <size key="shadowOffset" width="0.0" height="1"/>
  3429. </label>
  3430. </subviews>
  3431. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3432. </view>
  3433. <view key="tableFooterView" contentMode="scaleToFill" id="XW3-1v-D2N">
  3434. <rect key="frame" x="0.0" y="253" width="375" height="148"/>
  3435. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3436. <subviews>
  3437. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID und öffentlicher Schlüssel dieses Kontakts wurden überprüft." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4Js-Fh-l8T">
  3438. <rect key="frame" x="112" y="88" width="280" height="47"/>
  3439. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3440. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3441. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3442. <nil key="highlightedColor"/>
  3443. </label>
  3444. <imageView userInteractionEnabled="NO" alpha="0.69999999999999996" contentMode="scaleToFill" image="verificationbig-2.png" id="sqy-M6-DC0">
  3445. <rect key="frame" x="107" y="31" width="163" height="37"/>
  3446. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3447. </imageView>
  3448. </subviews>
  3449. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3450. </view>
  3451. <sections>
  3452. <tableViewSection id="U03-zs-DLa">
  3453. <cells>
  3454. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Isx-Cp-ked">
  3455. <rect key="frame" x="0.0" y="90" width="375" height="44"/>
  3456. <autoresizingMask key="autoresizingMask"/>
  3457. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Isx-Cp-ked" id="KKa-wH-Eaq">
  3458. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3459. <autoresizingMask key="autoresizingMask"/>
  3460. <subviews>
  3461. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Threema ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ItP-on-vcR">
  3462. <rect key="frame" x="15" y="11" width="177" height="21"/>
  3463. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3464. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3465. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3466. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3467. <nil key="highlightedColor"/>
  3468. </label>
  3469. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Xw9-xE-J2A" customClass="CopyLabel">
  3470. <rect key="frame" x="219" y="11" width="140" height="21"/>
  3471. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  3472. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3473. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3474. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3475. </label>
  3476. </subviews>
  3477. </tableViewCellContentView>
  3478. </tableViewCell>
  3479. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="7ES-9X-FzW" customClass="KeyFingerprintCell">
  3480. <rect key="frame" x="0.0" y="134" width="375" height="65"/>
  3481. <autoresizingMask key="autoresizingMask"/>
  3482. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="7ES-9X-FzW" id="GiK-bE-pDN">
  3483. <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
  3484. <autoresizingMask key="autoresizingMask"/>
  3485. <subviews>
  3486. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Schlüssel-Fingerabdruck" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="hBg-1A-bxa">
  3487. <rect key="frame" x="15" y="11" width="277" height="21"/>
  3488. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3489. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3490. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3491. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3492. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3493. </label>
  3494. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Civ-ss-xfc" customClass="CopyLabel">
  3495. <rect key="frame" x="13" y="34" width="355" height="21"/>
  3496. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3497. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3498. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  3499. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3500. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3501. </label>
  3502. </subviews>
  3503. </tableViewCellContentView>
  3504. <connections>
  3505. <outlet property="fingerprintLabel" destination="Civ-ss-xfc" id="vTh-pj-KzJ"/>
  3506. </connections>
  3507. </tableViewCell>
  3508. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Uc3-sE-KSh" customClass="VerificationLevelCell">
  3509. <rect key="frame" x="0.0" y="199" width="375" height="44"/>
  3510. <autoresizingMask key="autoresizingMask"/>
  3511. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Uc3-sE-KSh" id="uTT-dl-O1R">
  3512. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3513. <autoresizingMask key="autoresizingMask"/>
  3514. <subviews>
  3515. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sicherheitsstufe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="YcG-2m-hqt">
  3516. <rect key="frame" x="15" y="11" width="218" height="21"/>
  3517. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3518. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3519. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3520. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3521. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3522. </label>
  3523. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="qSZ-3s-TnW">
  3524. <rect key="frame" x="308" y="16" width="48" height="11"/>
  3525. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  3526. </imageView>
  3527. </subviews>
  3528. </tableViewCellContentView>
  3529. <connections>
  3530. <outlet property="levelImage" destination="qSZ-3s-TnW" id="qXu-0g-xTO"/>
  3531. </connections>
  3532. </tableViewCell>
  3533. </cells>
  3534. </tableViewSection>
  3535. </sections>
  3536. <connections>
  3537. <outlet property="dataSource" destination="CJa-dK-jp4" id="n4A-Pp-fHy"/>
  3538. <outlet property="delegate" destination="CJa-dK-jp4" id="nqO-dn-tRc"/>
  3539. </connections>
  3540. </tableView>
  3541. <navigationItem key="navigationItem" title="ID überprüft" id="sik-yL-35n">
  3542. <barButtonItem key="rightBarButtonItem" systemItem="done" id="StH-Kj-2q2">
  3543. <connections>
  3544. <action selector="done:" destination="CJa-dK-jp4" id="RWR-bW-cRX"/>
  3545. </connections>
  3546. </barButtonItem>
  3547. </navigationItem>
  3548. <connections>
  3549. <outlet property="contactImage" destination="fRK-k7-Yj2" id="fgO-az-Wlx"/>
  3550. <outlet property="identityLabel" destination="Xw9-xE-J2A" id="gVN-xm-7Ja"/>
  3551. <outlet property="keyFingerprintCell" destination="7ES-9X-FzW" id="45a-bu-kgG"/>
  3552. <outlet property="nameLabel" destination="wV3-0n-mKm" id="Xga-Ij-0Xv"/>
  3553. <outlet property="verificationLevelCell" destination="Uc3-sE-KSh" id="a6y-uO-fc4"/>
  3554. <outlet property="verificationLevelImage" destination="sqy-M6-DC0" id="Eze-Qb-R2Q"/>
  3555. </connections>
  3556. </tableViewController>
  3557. <placeholder placeholderIdentifier="IBFirstResponder" id="uwR-It-Ztf" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3558. </objects>
  3559. <point key="canvasLocation" x="6415" y="1666"/>
  3560. </scene>
  3561. <!--Modal Navigation Controller-->
  3562. <scene sceneID="YhH-yK-u78">
  3563. <objects>
  3564. <navigationController storyboardIdentifier="AddContactNavigationController" id="f9d-eO-Il0" customClass="ModalNavigationController" sceneMemberID="viewController">
  3565. <toolbarItems/>
  3566. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3xB-fy-EQG" customClass="StatusNavigationBar">
  3567. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3568. <autoresizingMask key="autoresizingMask"/>
  3569. </navigationBar>
  3570. <nil name="viewControllers"/>
  3571. <connections>
  3572. <segue destination="G1V-ju-hH8" kind="relationship" relationship="rootViewController" id="M0V-He-65Y"/>
  3573. </connections>
  3574. </navigationController>
  3575. <placeholder placeholderIdentifier="IBFirstResponder" id="TMY-VX-QLz" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3576. </objects>
  3577. <point key="canvasLocation" x="2118" y="-1158"/>
  3578. </scene>
  3579. <!--Modal Navigation Controller-->
  3580. <scene sceneID="pcJ-SG-F1U">
  3581. <objects>
  3582. <navigationController id="7Bw-bZ-Nl3" customClass="ModalNavigationController" sceneMemberID="viewController">
  3583. <toolbarItems/>
  3584. <navigationBar key="navigationBar" contentMode="scaleToFill" id="tTO-Xu-vfc" customClass="StatusNavigationBar">
  3585. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3586. <autoresizingMask key="autoresizingMask"/>
  3587. </navigationBar>
  3588. <nil name="viewControllers"/>
  3589. <connections>
  3590. <segue destination="QYa-wj-UfF" kind="relationship" relationship="rootViewController" id="aab-VZ-8dj"/>
  3591. </connections>
  3592. </navigationController>
  3593. <placeholder placeholderIdentifier="IBFirstResponder" id="y6Z-f3-iQg" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3594. </objects>
  3595. <point key="canvasLocation" x="4372" y="2912"/>
  3596. </scene>
  3597. <!--Nummer verknüpfen-->
  3598. <scene sceneID="cwE-WB-aV0">
  3599. <objects>
  3600. <tableViewController id="FTG-53-tLO" customClass="LinkMobileNoViewController" sceneMemberID="viewController">
  3601. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="hwG-eE-LUX">
  3602. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3603. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3604. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3605. <sections>
  3606. <tableViewSection id="GVL-lo-B4c">
  3607. <string key="footerTitle">Wenn Sie Ihre Telefonnummer mit Ihrer ID verknüpfen, können andere Leute Sie auf Threema automatisch finden, sofern sie Sie im Adressbuch haben.</string>
  3608. <cells>
  3609. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="nVN-0d-l2S">
  3610. <rect key="frame" x="0.0" y="35" width="375" height="85"/>
  3611. <autoresizingMask key="autoresizingMask"/>
  3612. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nVN-0d-l2S" id="tsO-er-eBC">
  3613. <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
  3614. <autoresizingMask key="autoresizingMask"/>
  3615. <subviews>
  3616. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Ihre Telefonnummer" minimumFontSize="17" clearButtonMode="always" id="GiH-ve-alq">
  3617. <rect key="frame" x="15" y="39" width="350" height="34"/>
  3618. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3619. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3620. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3621. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  3622. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="phonePad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  3623. <connections>
  3624. <action selector="saveAction:" destination="FTG-53-tLO" eventType="editingDidEndOnExit" id="p29-wF-bP0"/>
  3625. </connections>
  3626. </textField>
  3627. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Telefonnummer" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="mI7-lX-IwE">
  3628. <rect key="frame" x="15" y="11" width="294" height="21"/>
  3629. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3630. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3631. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3632. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3633. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3634. </label>
  3635. </subviews>
  3636. </tableViewCellContentView>
  3637. </tableViewCell>
  3638. </cells>
  3639. </tableViewSection>
  3640. </sections>
  3641. <connections>
  3642. <outlet property="dataSource" destination="FTG-53-tLO" id="2bs-Cv-IsT"/>
  3643. <outlet property="delegate" destination="FTG-53-tLO" id="36m-vy-E3m"/>
  3644. </connections>
  3645. </tableView>
  3646. <navigationItem key="navigationItem" title="Nummer verknüpfen" id="yBJ-QE-4Oj">
  3647. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="Wet-Qt-8aZ">
  3648. <connections>
  3649. <action selector="cancelAction:" destination="FTG-53-tLO" id="MlA-ax-1CJ"/>
  3650. </connections>
  3651. </barButtonItem>
  3652. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="mKW-aV-Aet">
  3653. <connections>
  3654. <action selector="saveAction:" destination="FTG-53-tLO" id="YTw-P0-vCM"/>
  3655. </connections>
  3656. </barButtonItem>
  3657. </navigationItem>
  3658. <connections>
  3659. <outlet property="mobileNoTextField" destination="GiH-ve-alq" id="Xl9-lQ-LEq"/>
  3660. </connections>
  3661. </tableViewController>
  3662. <placeholder placeholderIdentifier="IBFirstResponder" id="T0x-hf-MnI" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3663. </objects>
  3664. <point key="canvasLocation" x="5317" y="2310"/>
  3665. </scene>
  3666. <!--Modal Navigation Controller-->
  3667. <scene sceneID="Z63-nW-wvG">
  3668. <objects>
  3669. <navigationController id="L44-Xr-JJu" customClass="ModalNavigationController" sceneMemberID="viewController">
  3670. <toolbarItems/>
  3671. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3ET-SO-jDn" customClass="StatusNavigationBar">
  3672. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3673. <autoresizingMask key="autoresizingMask"/>
  3674. </navigationBar>
  3675. <nil name="viewControllers"/>
  3676. <connections>
  3677. <segue destination="FTG-53-tLO" kind="relationship" relationship="rootViewController" id="3hw-gz-eJK"/>
  3678. </connections>
  3679. </navigationController>
  3680. <placeholder placeholderIdentifier="IBFirstResponder" id="GK4-Ge-d0d" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3681. </objects>
  3682. <point key="canvasLocation" x="4898" y="2310"/>
  3683. </scene>
  3684. <!--Code eingeben-->
  3685. <scene sceneID="5v0-HU-0As">
  3686. <objects>
  3687. <tableViewController id="mgQ-xL-6Dq" customClass="EnterCodeViewController" sceneMemberID="viewController">
  3688. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="IC1-Ev-N7U">
  3689. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3690. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3691. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3692. <sections>
  3693. <tableViewSection footerTitle="Number: +41 79 123 45 67" id="kBl-1G-n3b">
  3694. <cells>
  3695. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="3i6-d7-iVq">
  3696. <rect key="frame" x="0.0" y="35" width="375" height="85"/>
  3697. <autoresizingMask key="autoresizingMask"/>
  3698. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3i6-d7-iVq" id="3T4-db-lIp">
  3699. <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
  3700. <autoresizingMask key="autoresizingMask"/>
  3701. <subviews>
  3702. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Code" minimumFontSize="17" clearButtonMode="always" id="vU1-gh-2Ky">
  3703. <rect key="frame" x="11" y="39" width="352" height="38"/>
  3704. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3705. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3706. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3707. <fontDescription key="fontDescription" type="system" pointSize="32"/>
  3708. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="numberPad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  3709. <connections>
  3710. <action selector="doneAction:" destination="mgQ-xL-6Dq" eventType="editingDidEndOnExit" id="6bI-jC-2a4"/>
  3711. </connections>
  3712. </textField>
  3713. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Code eingeben" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jen-Sr-AdH">
  3714. <rect key="frame" x="15" y="11" width="182" height="21"/>
  3715. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3716. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3717. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3718. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3719. <nil key="highlightedColor"/>
  3720. </label>
  3721. </subviews>
  3722. </tableViewCellContentView>
  3723. </tableViewCell>
  3724. </cells>
  3725. </tableViewSection>
  3726. <tableViewSection footerTitle="" id="viU-8v-3Zn">
  3727. <cells>
  3728. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="0qj-v8-SYq" detailTextLabel="LeM-DS-j2t" imageView="3is-c6-Zld" style="IBUITableViewCellStyleValue1" id="872-Br-rm3">
  3729. <rect key="frame" x="0.0" y="160" width="375" height="44"/>
  3730. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3731. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="872-Br-rm3" id="cQf-a2-f8b">
  3732. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3733. <autoresizingMask key="autoresizingMask"/>
  3734. <subviews>
  3735. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Anruf anfordern" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontSizeToFit="NO" id="0qj-v8-SYq">
  3736. <rect key="frame" x="55" y="12" width="96" height="20"/>
  3737. <autoresizingMask key="autoresizingMask"/>
  3738. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3739. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3740. <nil key="highlightedColor"/>
  3741. </label>
  3742. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="05:00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontSizeToFit="NO" id="LeM-DS-j2t">
  3743. <rect key="frame" x="314" y="12" width="46" height="20"/>
  3744. <autoresizingMask key="autoresizingMask"/>
  3745. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3746. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3747. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3748. </label>
  3749. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="75-phone.png" highlightedImage="75-phone.png" id="3is-c6-Zld">
  3750. <rect key="frame" x="16" y="9" width="24" height="24"/>
  3751. <autoresizingMask key="autoresizingMask"/>
  3752. </imageView>
  3753. </subviews>
  3754. </tableViewCellContentView>
  3755. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  3756. </tableViewCell>
  3757. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Y4O-oA-cpv" style="IBUITableViewCellStyleDefault" id="UYz-hD-Dez">
  3758. <rect key="frame" x="0.0" y="204" width="375" height="44"/>
  3759. <autoresizingMask key="autoresizingMask"/>
  3760. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UYz-hD-Dez" id="NXW-eF-zAr">
  3761. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3762. <autoresizingMask key="autoresizingMask"/>
  3763. <subviews>
  3764. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Überprüfung abbrechen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Y4O-oA-cpv">
  3765. <rect key="frame" x="16" y="0.0" width="344" height="43"/>
  3766. <autoresizingMask key="autoresizingMask"/>
  3767. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3768. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3769. <nil key="highlightedColor"/>
  3770. </label>
  3771. </subviews>
  3772. </tableViewCellContentView>
  3773. </tableViewCell>
  3774. </cells>
  3775. </tableViewSection>
  3776. </sections>
  3777. <connections>
  3778. <outlet property="dataSource" destination="mgQ-xL-6Dq" id="T3V-UM-tv3"/>
  3779. <outlet property="delegate" destination="mgQ-xL-6Dq" id="aE8-mx-3DG"/>
  3780. </connections>
  3781. </tableView>
  3782. <navigationItem key="navigationItem" title="Code eingeben" id="avO-96-WCf">
  3783. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="dyx-sl-uAk">
  3784. <connections>
  3785. <action selector="cancelAction:" destination="mgQ-xL-6Dq" id="oiZ-n0-JJ3"/>
  3786. </connections>
  3787. </barButtonItem>
  3788. <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="sIq-fl-853">
  3789. <connections>
  3790. <action selector="doneAction:" destination="mgQ-xL-6Dq" id="cRw-Uz-qIO"/>
  3791. </connections>
  3792. </barButtonItem>
  3793. </navigationItem>
  3794. <connections>
  3795. <outlet property="callMeCell" destination="872-Br-rm3" id="7FL-ra-oxu"/>
  3796. <outlet property="codeTextField" destination="vU1-gh-2Ky" id="mKm-la-uKf"/>
  3797. </connections>
  3798. </tableViewController>
  3799. <placeholder placeholderIdentifier="IBFirstResponder" id="5nz-cQ-Jem" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3800. </objects>
  3801. <point key="canvasLocation" x="4153" y="1394"/>
  3802. </scene>
  3803. <!--Standort-->
  3804. <scene sceneID="WKh-CG-rTy">
  3805. <objects>
  3806. <viewController id="Wkx-66-6GX" customClass="PreviewLocationViewController" sceneMemberID="viewController">
  3807. <view key="view" contentMode="scaleToFill" id="iQb-3C-dOf">
  3808. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3809. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3810. <subviews>
  3811. <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" mapType="standard" showsUserLocation="YES" id="Je0-Vz-Lkn">
  3812. <rect key="frame" x="0.0" y="0.0" width="375" height="359"/>
  3813. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" flexibleMaxY="YES"/>
  3814. <connections>
  3815. <outlet property="delegate" destination="Wkx-66-6GX" id="Ilv-OF-du2"/>
  3816. </connections>
  3817. </mapView>
  3818. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="FDN-uT-vuM">
  3819. <rect key="frame" x="0.0" y="361" width="375" height="306"/>
  3820. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES" heightSizable="YES"/>
  3821. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3822. <view key="tableFooterView" contentMode="scaleToFill" id="scM-AV-qVR">
  3823. <rect key="frame" x="0.0" y="154" width="375" height="89"/>
  3824. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3825. <subviews>
  3826. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="powered-by-google-on-white.png" id="QSD-rS-Xn4">
  3827. <rect key="frame" x="264" y="5" width="104" height="16"/>
  3828. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  3829. </imageView>
  3830. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" editable="NO" id="hXf-no-kDy">
  3831. <rect key="frame" x="8" y="20" width="360" height="62"/>
  3832. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3833. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  3834. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  3835. </textView>
  3836. </subviews>
  3837. </view>
  3838. <prototypes>
  3839. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PoiCell" id="gOl-pQ-2il" customClass="PoiTableViewCell">
  3840. <rect key="frame" x="0.0" y="22" width="375" height="44"/>
  3841. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3842. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gOl-pQ-2il" id="0cp-mH-50I">
  3843. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3844. <autoresizingMask key="autoresizingMask"/>
  3845. <subviews>
  3846. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" id="yu5-1d-d0A">
  3847. <rect key="frame" x="15" y="6" width="32" height="32"/>
  3848. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3849. </imageView>
  3850. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="hoT-eO-rmt">
  3851. <rect key="frame" x="55" y="3" width="311" height="21"/>
  3852. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3853. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  3854. <nil key="highlightedColor"/>
  3855. </label>
  3856. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="XKh-pU-f5v">
  3857. <rect key="frame" x="55" y="21" width="311" height="21"/>
  3858. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3859. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  3860. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3861. <nil key="highlightedColor"/>
  3862. </label>
  3863. </subviews>
  3864. </tableViewCellContentView>
  3865. <connections>
  3866. <outlet property="addressLabel" destination="XKh-pU-f5v" id="dy9-rn-nnO"/>
  3867. <outlet property="iconView" destination="yu5-1d-d0A" id="eRg-z9-R23"/>
  3868. <outlet property="nameLabel" destination="hoT-eO-rmt" id="gM1-nm-DQ0"/>
  3869. </connections>
  3870. </tableViewCell>
  3871. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="NoPlacesFoundCell" id="ZEa-VT-VrF">
  3872. <rect key="frame" x="0.0" y="66" width="375" height="44"/>
  3873. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3874. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZEa-VT-VrF" id="xEF-es-Ppz">
  3875. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3876. <autoresizingMask key="autoresizingMask"/>
  3877. <subviews>
  3878. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Keine POIs an aktuellem Standort gefunden" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jSK-DO-xV2">
  3879. <rect key="frame" x="15" y="11" width="339" height="21"/>
  3880. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3881. <fontDescription key="fontDescription" type="italicSystem" pointSize="14"/>
  3882. <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3883. <nil key="highlightedColor"/>
  3884. </label>
  3885. </subviews>
  3886. </tableViewCellContentView>
  3887. </tableViewCell>
  3888. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="SpinnerCell" id="t7Z-a3-P0r">
  3889. <rect key="frame" x="0.0" y="110" width="375" height="44"/>
  3890. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3891. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="t7Z-a3-P0r" id="u3F-pD-HYF">
  3892. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3893. <autoresizingMask key="autoresizingMask"/>
  3894. <subviews>
  3895. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" animating="YES" style="gray" id="pQw-UF-py6">
  3896. <rect key="frame" x="174" y="12" width="20" height="20"/>
  3897. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3898. </activityIndicatorView>
  3899. </subviews>
  3900. </tableViewCellContentView>
  3901. </tableViewCell>
  3902. </prototypes>
  3903. <connections>
  3904. <outlet property="dataSource" destination="Wkx-66-6GX" id="ATU-i1-c8v"/>
  3905. <outlet property="delegate" destination="Wkx-66-6GX" id="f3c-vQ-Lpc"/>
  3906. </connections>
  3907. </tableView>
  3908. <searchBar contentMode="redraw" id="ONP-GH-deN">
  3909. <rect key="frame" x="0.0" y="64" width="375" height="44"/>
  3910. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3911. <textInputTraits key="textInputTraits"/>
  3912. <connections>
  3913. <outlet property="delegate" destination="Wkx-66-6GX" id="sJc-Za-kpa"/>
  3914. </connections>
  3915. </searchBar>
  3916. </subviews>
  3917. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3918. </view>
  3919. <navigationItem key="navigationItem" title="Standort" id="eXF-nx-MbG">
  3920. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="gbL-qc-nD4">
  3921. <connections>
  3922. <action selector="cancelAction:" destination="Wkx-66-6GX" id="3wq-nj-z6i"/>
  3923. </connections>
  3924. </barButtonItem>
  3925. <barButtonItem key="rightBarButtonItem" title="Senden" style="done" id="aQb-a9-JtU">
  3926. <connections>
  3927. <action selector="sendAction:" destination="Wkx-66-6GX" id="vj5-3j-sA0"/>
  3928. </connections>
  3929. </barButtonItem>
  3930. </navigationItem>
  3931. <connections>
  3932. <outlet property="attributionTextView" destination="hXf-no-kDy" id="ZVE-xk-cP7"/>
  3933. <outlet property="mapView" destination="Je0-Vz-Lkn" id="b6u-Rt-HOF"/>
  3934. <outlet property="poiTableView" destination="FDN-uT-vuM" id="Be4-BD-mFX"/>
  3935. <outlet property="searchBar" destination="ONP-GH-deN" id="ERR-oq-oiL"/>
  3936. <outlet property="searchDisplayController" destination="8jz-Dp-vbY" id="OEm-2B-jCS"/>
  3937. </connections>
  3938. </viewController>
  3939. <placeholder placeholderIdentifier="IBFirstResponder" id="cAf-3k-pix" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3940. <searchDisplayController id="8jz-Dp-vbY">
  3941. <connections>
  3942. <outlet property="delegate" destination="Wkx-66-6GX" id="vhx-KY-4H3"/>
  3943. <outlet property="searchBar" destination="ONP-GH-deN" id="s3v-Ff-61c"/>
  3944. <outlet property="searchContentsController" destination="Wkx-66-6GX" id="q31-0q-UTg"/>
  3945. <outlet property="searchResultsDataSource" destination="Wkx-66-6GX" id="tSQ-gI-rCs"/>
  3946. <outlet property="searchResultsDelegate" destination="Wkx-66-6GX" id="zeK-j2-Uf2"/>
  3947. </connections>
  3948. </searchDisplayController>
  3949. </objects>
  3950. <point key="canvasLocation" x="5721" y="-843"/>
  3951. </scene>
  3952. <!--Standort-->
  3953. <scene sceneID="Z2f-4e-iax">
  3954. <objects>
  3955. <viewController id="FVk-BM-jrL" customClass="LocationViewController" sceneMemberID="viewController">
  3956. <view key="view" contentMode="scaleToFill" id="rJc-tG-ypl">
  3957. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3958. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3959. <subviews>
  3960. <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" mapType="standard" id="S8H-J6-Ghl">
  3961. <rect key="frame" x="0.0" y="0.0" width="375" height="623"/>
  3962. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3963. <connections>
  3964. <outlet property="delegate" destination="FVk-BM-jrL" id="B0B-6H-r0n"/>
  3965. </connections>
  3966. </mapView>
  3967. <toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="Pwh-dA-MBJ">
  3968. <rect key="frame" x="0.0" y="623" width="375" height="44"/>
  3969. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
  3970. <items>
  3971. <barButtonItem image="947-target-reticle-toolbar.png" id="5k3-jD-RBI">
  3972. <connections>
  3973. <action selector="gotoUserLocationButtonTapped:" destination="FVk-BM-jrL" id="wLI-dZ-HUZ"/>
  3974. </connections>
  3975. </barButtonItem>
  3976. <barButtonItem style="plain" systemItem="flexibleSpace" id="ZKQ-1p-YQv"/>
  3977. <barButtonItem style="plain" id="gQF-5H-Z1H">
  3978. <segmentedControl key="customView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="M1P-ix-V2L">
  3979. <rect key="frame" x="82" y="7.5" width="210" height="29"/>
  3980. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3981. <segments>
  3982. <segment title="Standard"/>
  3983. <segment title="Hybrid"/>
  3984. <segment title="Satellit"/>
  3985. </segments>
  3986. <connections>
  3987. <action selector="mapTypeChanged:" destination="FVk-BM-jrL" eventType="valueChanged" id="VxI-Gv-4nf"/>
  3988. </connections>
  3989. </segmentedControl>
  3990. </barButtonItem>
  3991. <barButtonItem style="plain" systemItem="flexibleSpace" id="Oxk-XT-dDa"/>
  3992. <barButtonItem image="940-pin-toolbar.png" id="C0u-5z-beZ">
  3993. <connections>
  3994. <action selector="gotoLocationButtonTapped:" destination="FVk-BM-jrL" id="UbN-h8-KQu"/>
  3995. </connections>
  3996. </barButtonItem>
  3997. <barButtonItem width="4" style="plain" systemItem="fixedSpace" id="YBk-mo-fhm"/>
  3998. </items>
  3999. </toolbar>
  4000. </subviews>
  4001. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4002. </view>
  4003. <navigationItem key="navigationItem" title="Standort" id="uA6-FU-2ms">
  4004. <barButtonItem key="rightBarButtonItem" systemItem="action" id="g63-mL-9aV">
  4005. <connections>
  4006. <action selector="actionButton:" destination="FVk-BM-jrL" id="k7Z-FE-B7H"/>
  4007. </connections>
  4008. </barButtonItem>
  4009. </navigationItem>
  4010. <connections>
  4011. <outlet property="mapTypeControl" destination="M1P-ix-V2L" id="SYk-3D-PWa"/>
  4012. <outlet property="mapView" destination="S8H-J6-Ghl" id="9CB-fL-wrH"/>
  4013. </connections>
  4014. </viewController>
  4015. <placeholder placeholderIdentifier="IBFirstResponder" id="imr-ga-5Ay" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4016. </objects>
  4017. <point key="canvasLocation" x="3190" y="574"/>
  4018. </scene>
  4019. <!--Modal Navigation Controller-->
  4020. <scene sceneID="T0c-rO-0aC">
  4021. <objects>
  4022. <navigationController id="wPu-1J-vpq" customClass="ModalNavigationController" sceneMemberID="viewController">
  4023. <toolbarItems/>
  4024. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3vI-kR-Vy4" customClass="StatusNavigationBar">
  4025. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4026. <autoresizingMask key="autoresizingMask"/>
  4027. </navigationBar>
  4028. <nil name="viewControllers"/>
  4029. <connections>
  4030. <segue destination="mgQ-xL-6Dq" kind="relationship" relationship="rootViewController" id="IHh-4d-k73"/>
  4031. </connections>
  4032. </navigationController>
  4033. <placeholder placeholderIdentifier="IBFirstResponder" id="20Z-22-fYk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4034. </objects>
  4035. <point key="canvasLocation" x="3614" y="1394"/>
  4036. </scene>
  4037. <!--Modal Navigation Controller-->
  4038. <scene sceneID="1Tf-5Q-14e">
  4039. <objects>
  4040. <navigationController id="1K5-up-8kR" customClass="ModalNavigationController" sceneMemberID="viewController">
  4041. <toolbarItems/>
  4042. <navigationBar key="navigationBar" contentMode="scaleToFill" id="RJ5-Lc-a2K" customClass="StatusNavigationBar">
  4043. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4044. <autoresizingMask key="autoresizingMask"/>
  4045. </navigationBar>
  4046. <nil name="viewControllers"/>
  4047. <connections>
  4048. <segue destination="3Ka-Iq-ckG" kind="relationship" relationship="rootViewController" id="U7x-fc-44G"/>
  4049. </connections>
  4050. </navigationController>
  4051. <placeholder placeholderIdentifier="IBFirstResponder" id="dxI-LE-gWO" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4052. </objects>
  4053. <point key="canvasLocation" x="4840" y="1005"/>
  4054. </scene>
  4055. <!--Backup-->
  4056. <scene sceneID="aZM-S6-hXI">
  4057. <objects>
  4058. <tableViewController storyboardIdentifier="BackupIdentityViewController" id="gAo-8A-eYi" customClass="BackupIdentityViewController" sceneMemberID="viewController">
  4059. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="sZM-Dq-rH8">
  4060. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4061. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4062. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4063. <sections>
  4064. <tableViewSection footerTitle="#do not translate#The encrypted ID backup will be included when you back up your phone via iTunes or iCloud." id="eEV-l3-MXP">
  4065. <cells>
  4066. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="62" id="e3O-9W-VlG">
  4067. <rect key="frame" x="0.0" y="35" width="375" height="62"/>
  4068. <autoresizingMask key="autoresizingMask"/>
  4069. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="e3O-9W-VlG" id="Sxn-kq-jG9">
  4070. <rect key="frame" x="0.0" y="0.0" width="375" height="61.5"/>
  4071. <autoresizingMask key="autoresizingMask"/>
  4072. <subviews>
  4073. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="In Geräte-Backup aufnehmen" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="MXp-9z-7FN">
  4074. <rect key="frame" x="15" y="9" width="210" height="43"/>
  4075. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4076. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4077. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4078. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4079. <nil key="highlightedColor"/>
  4080. </label>
  4081. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="jvu-Hd-FqV">
  4082. <rect key="frame" x="302" y="14" width="52" height="31"/>
  4083. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  4084. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  4085. <connections>
  4086. <action selector="phoneBackupSwitchChanged:" destination="gAo-8A-eYi" eventType="valueChanged" id="oB9-I2-kIE"/>
  4087. </connections>
  4088. </switch>
  4089. </subviews>
  4090. </tableViewCellContentView>
  4091. </tableViewCell>
  4092. </cells>
  4093. </tableViewSection>
  4094. <tableViewSection id="dgK-0J-UrZ">
  4095. <string key="footerTitle">Diese Daten können zusammen mit dem gewählten Passwort zum Wiederherstellen Ihrer ID auf einem anderen Gerät verwendet werden. Sie können die Daten mittels Kopieren &amp; Einfügen an einem geeigneten Ort ablegen, sich selber per E-Mail senden oder den QR-Code mit einem anderen Gerät scannen.</string>
  4096. <cells>
  4097. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="197" id="CCC-bg-9EV">
  4098. <rect key="frame" x="0.0" y="169" width="375" height="197"/>
  4099. <autoresizingMask key="autoresizingMask"/>
  4100. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CCC-bg-9EV" id="6vo-th-Uu5">
  4101. <rect key="frame" x="0.0" y="0.0" width="375" height="196.5"/>
  4102. <autoresizingMask key="autoresizingMask"/>
  4103. <subviews>
  4104. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Ihr ID-Backup" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ZIq-dn-JdH">
  4105. <rect key="frame" x="15" y="11" width="268" height="21"/>
  4106. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4107. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  4108. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4109. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4110. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4111. </label>
  4112. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" lineBreakMode="wordWrap" numberOfLines="8" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="UbM-As-itV" customClass="CopyLabel">
  4113. <rect key="frame" x="15" y="44" width="285" height="136"/>
  4114. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4115. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  4116. <fontDescription key="fontDescription" name="Courier" family="Courier" pointSize="22"/>
  4117. <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4118. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4119. </label>
  4120. </subviews>
  4121. </tableViewCellContentView>
  4122. </tableViewCell>
  4123. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="236" id="i0e-YI-l7h">
  4124. <rect key="frame" x="0.0" y="366" width="375" height="236"/>
  4125. <autoresizingMask key="autoresizingMask"/>
  4126. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="i0e-YI-l7h" id="QPu-lW-7f1">
  4127. <rect key="frame" x="0.0" y="0.0" width="375" height="235.5"/>
  4128. <autoresizingMask key="autoresizingMask"/>
  4129. <subviews>
  4130. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="kRn-kl-WMg">
  4131. <rect key="frame" x="86" y="18" width="200" height="200"/>
  4132. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4133. </imageView>
  4134. </subviews>
  4135. </tableViewCellContentView>
  4136. </tableViewCell>
  4137. </cells>
  4138. </tableViewSection>
  4139. </sections>
  4140. <connections>
  4141. <outlet property="dataSource" destination="gAo-8A-eYi" id="se1-gl-h6d"/>
  4142. <outlet property="delegate" destination="gAo-8A-eYi" id="6gX-95-2Ir"/>
  4143. </connections>
  4144. </tableView>
  4145. <navigationItem key="navigationItem" title="Backup" id="tUV-iz-VQc">
  4146. <barButtonItem key="leftBarButtonItem" systemItem="action" id="6rx-8S-8dN">
  4147. <connections>
  4148. <action selector="actionAction:" destination="gAo-8A-eYi" id="HoY-DV-TVY"/>
  4149. </connections>
  4150. </barButtonItem>
  4151. <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="BHs-xY-jVH">
  4152. <connections>
  4153. <action selector="doneAction:" destination="gAo-8A-eYi" id="sPG-bB-UgV"/>
  4154. </connections>
  4155. </barButtonItem>
  4156. </navigationItem>
  4157. <connections>
  4158. <outlet property="identityBackupLabel" destination="UbM-As-itV" id="snU-Nd-bbt"/>
  4159. <outlet property="phoneBackupSwitch" destination="jvu-Hd-FqV" id="Ohm-4f-7pv"/>
  4160. <outlet property="qrImageView" destination="kRn-kl-WMg" id="UpV-b7-z41"/>
  4161. </connections>
  4162. </tableViewController>
  4163. <placeholder placeholderIdentifier="IBFirstResponder" id="b8h-ot-G05" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4164. </objects>
  4165. <point key="canvasLocation" x="5721" y="4167"/>
  4166. </scene>
  4167. <!--Modal Navigation Controller-->
  4168. <scene sceneID="6uV-Dd-70q">
  4169. <objects>
  4170. <navigationController storyboardIdentifier="PreviewImageNav" id="DJG-Qa-Yg3" customClass="ModalNavigationController" sceneMemberID="viewController">
  4171. <toolbarItems/>
  4172. <navigationBar key="navigationBar" contentMode="scaleToFill" id="npS-lz-iH9" customClass="StatusNavigationBar">
  4173. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4174. <autoresizingMask key="autoresizingMask"/>
  4175. </navigationBar>
  4176. <nil name="viewControllers"/>
  4177. <connections>
  4178. <segue destination="xFf-fm-QrO" kind="relationship" relationship="rootViewController" id="q48-tN-sD4"/>
  4179. </connections>
  4180. </navigationController>
  4181. <placeholder placeholderIdentifier="IBFirstResponder" id="pRS-65-HaS" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4182. </objects>
  4183. <point key="canvasLocation" x="5278" y="-1524"/>
  4184. </scene>
  4185. <!--Modal Navigation Controller-->
  4186. <scene sceneID="r0I-Pl-MjX">
  4187. <objects>
  4188. <navigationController storyboardIdentifier="PreviewLocationNav" id="e4t-hK-I8I" customClass="ModalNavigationController" sceneMemberID="viewController">
  4189. <toolbarItems/>
  4190. <navigationBar key="navigationBar" contentMode="scaleToFill" id="Y2Y-vI-g7b" customClass="StatusNavigationBar">
  4191. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4192. <autoresizingMask key="autoresizingMask"/>
  4193. </navigationBar>
  4194. <nil name="viewControllers"/>
  4195. <connections>
  4196. <segue destination="Wkx-66-6GX" kind="relationship" relationship="rootViewController" id="3Lk-6y-Uhp"/>
  4197. </connections>
  4198. </navigationController>
  4199. <placeholder placeholderIdentifier="IBFirstResponder" id="Bn8-Po-FKe" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4200. </objects>
  4201. <point key="canvasLocation" x="5197" y="-843"/>
  4202. </scene>
  4203. <!--Nachrichtendetails-->
  4204. <scene sceneID="Cv9-FB-47s">
  4205. <objects>
  4206. <tableViewController id="E7y-fb-wyM" customClass="MessageDetailsViewController" sceneMemberID="viewController">
  4207. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="jvs-rb-KIX">
  4208. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4209. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4210. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4211. <sections>
  4212. <tableViewSection id="XfY-AL-XVD">
  4213. <cells>
  4214. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="yWO-wH-mIW" detailTextLabel="6bQ-Vj-jcf" style="IBUITableViewCellStyleValue1" id="Bp8-mc-hzQ">
  4215. <rect key="frame" x="0.0" y="35" width="375" height="44"/>
  4216. <autoresizingMask key="autoresizingMask"/>
  4217. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Bp8-mc-hzQ" id="JeJ-md-9Ou">
  4218. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4219. <autoresizingMask key="autoresizingMask"/>
  4220. <subviews>
  4221. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Gesendet" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="yWO-wH-mIW">
  4222. <rect key="frame" x="16" y="12" width="36" height="20"/>
  4223. <autoresizingMask key="autoresizingMask"/>
  4224. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4225. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4226. <nil key="highlightedColor"/>
  4227. </label>
  4228. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="6bQ-Vj-jcf">
  4229. <rect key="frame" x="316" y="12" width="44" height="20"/>
  4230. <autoresizingMask key="autoresizingMask"/>
  4231. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4232. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4233. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4234. </label>
  4235. </subviews>
  4236. </tableViewCellContentView>
  4237. </tableViewCell>
  4238. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="qNO-eF-kmI" detailTextLabel="kaj-lV-4MC" style="IBUITableViewCellStyleValue1" id="EbI-pt-9xY">
  4239. <rect key="frame" x="0.0" y="79" width="375" height="44"/>
  4240. <autoresizingMask key="autoresizingMask"/>
  4241. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EbI-pt-9xY" id="GFp-1y-UAg">
  4242. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4243. <autoresizingMask key="autoresizingMask"/>
  4244. <subviews>
  4245. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Zugestellt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qNO-eF-kmI">
  4246. <rect key="frame" x="16" y="12" width="72" height="20"/>
  4247. <autoresizingMask key="autoresizingMask"/>
  4248. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4249. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4250. <nil key="highlightedColor"/>
  4251. </label>
  4252. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="kaj-lV-4MC">
  4253. <rect key="frame" x="316" y="12" width="44" height="20"/>
  4254. <autoresizingMask key="autoresizingMask"/>
  4255. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4256. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4257. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4258. </label>
  4259. </subviews>
  4260. </tableViewCellContentView>
  4261. </tableViewCell>
  4262. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Zrm-eG-ewD" detailTextLabel="6On-uo-xuU" style="IBUITableViewCellStyleValue1" id="LdK-5e-ndU">
  4263. <rect key="frame" x="0.0" y="123" width="375" height="44"/>
  4264. <autoresizingMask key="autoresizingMask"/>
  4265. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LdK-5e-ndU" id="66f-43-i0T">
  4266. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4267. <autoresizingMask key="autoresizingMask"/>
  4268. <subviews>
  4269. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Gelesen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Zrm-eG-ewD">
  4270. <rect key="frame" x="16" y="12" width="39" height="20"/>
  4271. <autoresizingMask key="autoresizingMask"/>
  4272. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4273. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4274. <nil key="highlightedColor"/>
  4275. </label>
  4276. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="6On-uo-xuU">
  4277. <rect key="frame" x="316" y="12" width="44" height="20"/>
  4278. <autoresizingMask key="autoresizingMask"/>
  4279. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4280. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4281. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4282. </label>
  4283. </subviews>
  4284. </tableViewCellContentView>
  4285. </tableViewCell>
  4286. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="VRy-nm-s0X" detailTextLabel="5Ca-aK-dv0" style="IBUITableViewCellStyleValue1" id="jhc-3O-3ED">
  4287. <rect key="frame" x="0.0" y="167" width="375" height="44"/>
  4288. <autoresizingMask key="autoresizingMask"/>
  4289. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jhc-3O-3ED" id="3lf-c1-KWQ">
  4290. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4291. <autoresizingMask key="autoresizingMask"/>
  4292. <subviews>
  4293. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Bestätigt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="VRy-nm-s0X">
  4294. <rect key="frame" x="16" y="12" width="113" height="20"/>
  4295. <autoresizingMask key="autoresizingMask"/>
  4296. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4297. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4298. <nil key="highlightedColor"/>
  4299. </label>
  4300. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="5Ca-aK-dv0">
  4301. <rect key="frame" x="316" y="12" width="44" height="20"/>
  4302. <autoresizingMask key="autoresizingMask"/>
  4303. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4304. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4305. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4306. </label>
  4307. </subviews>
  4308. </tableViewCellContentView>
  4309. </tableViewCell>
  4310. </cells>
  4311. </tableViewSection>
  4312. </sections>
  4313. <connections>
  4314. <outlet property="dataSource" destination="E7y-fb-wyM" id="LdU-3k-7vK"/>
  4315. <outlet property="delegate" destination="E7y-fb-wyM" id="gPG-RT-yhf"/>
  4316. </connections>
  4317. </tableView>
  4318. <navigationItem key="navigationItem" title="Nachrichtendetails" id="LsJ-Ts-xZd"/>
  4319. <connections>
  4320. <outlet property="ackDateLabel" destination="5Ca-aK-dv0" id="p8M-Jl-onh"/>
  4321. <outlet property="deliveredDateLabel" destination="kaj-lV-4MC" id="2F5-Cf-6vI"/>
  4322. <outlet property="readDateLabel" destination="6On-uo-xuU" id="Q6N-Ru-waC"/>
  4323. <outlet property="sendDateLabel" destination="6bQ-Vj-jcf" id="Qcr-nH-KwS"/>
  4324. </connections>
  4325. </tableViewController>
  4326. <placeholder placeholderIdentifier="IBFirstResponder" id="dXE-vh-e84" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4327. </objects>
  4328. <point key="canvasLocation" x="2598" y="964"/>
  4329. </scene>
  4330. <!--Videoqualität-->
  4331. <scene sceneID="aFo-Qe-zRl">
  4332. <objects>
  4333. <tableViewController id="UHC-G1-hob" customClass="VideoQualityViewController" sceneMemberID="viewController">
  4334. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="56" sectionHeaderHeight="10" sectionFooterHeight="10" id="29O-Om-fxq">
  4335. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4336. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4337. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4338. <prototypes>
  4339. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="checkmark" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="VideoQualityCell" textLabel="ZSt-Jr-TL7" detailTextLabel="Bw0-HM-0jN" style="IBUITableViewCellStyleSubtitle" id="oKE-y5-x0h">
  4340. <rect key="frame" x="0.0" y="55.5" width="375" height="56"/>
  4341. <autoresizingMask key="autoresizingMask"/>
  4342. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oKE-y5-x0h" id="xQQ-sB-6dU">
  4343. <rect key="frame" x="0.0" y="0.0" width="336" height="55.5"/>
  4344. <autoresizingMask key="autoresizingMask"/>
  4345. <subviews>
  4346. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ZSt-Jr-TL7">
  4347. <rect key="frame" x="16" y="9" width="34" height="20"/>
  4348. <autoresizingMask key="autoresizingMask"/>
  4349. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4350. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4351. <nil key="highlightedColor"/>
  4352. </label>
  4353. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Subtitle" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Bw0-HM-0jN">
  4354. <rect key="frame" x="16" y="29" width="50" height="17"/>
  4355. <autoresizingMask key="autoresizingMask"/>
  4356. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4357. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4358. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4359. </label>
  4360. </subviews>
  4361. </tableViewCellContentView>
  4362. </tableViewCell>
  4363. </prototypes>
  4364. <sections/>
  4365. <connections>
  4366. <outlet property="dataSource" destination="UHC-G1-hob" id="8kH-3Y-7mn"/>
  4367. <outlet property="delegate" destination="UHC-G1-hob" id="yfY-GG-4ld"/>
  4368. </connections>
  4369. </tableView>
  4370. <navigationItem key="navigationItem" title="Videoqualität" id="WUF-zB-hCc"/>
  4371. </tableViewController>
  4372. <placeholder placeholderIdentifier="IBFirstResponder" id="ebK-CV-Yu7" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4373. </objects>
  4374. <point key="canvasLocation" x="3131" y="6517"/>
  4375. </scene>
  4376. <!--Erweitert-->
  4377. <scene sceneID="m8L-Up-WdY">
  4378. <objects>
  4379. <tableViewController id="7pH-aa-DuY" customClass="AdvancedSettingsViewController" sceneMemberID="viewController">
  4380. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="1tj-pg-gqq">
  4381. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4382. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4383. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4384. <sections>
  4385. <tableViewSection headerTitle="Netzwerk" footerTitle="" id="MvA-PP-dAv">
  4386. <cells>
  4387. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="7Ge-DP-BoR">
  4388. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  4389. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4390. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="7Ge-DP-BoR" id="10X-8Z-M5L">
  4391. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4392. <autoresizingMask key="autoresizingMask"/>
  4393. <subviews>
  4394. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="IPv6" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="tMC-r1-Kb2">
  4395. <rect key="frame" x="15" y="11" width="224" height="21"/>
  4396. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4397. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4398. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4399. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4400. <nil key="highlightedColor"/>
  4401. </label>
  4402. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="Kwd-Bj-mMv">
  4403. <rect key="frame" x="306" y="6" width="50" height="31"/>
  4404. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  4405. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  4406. <connections>
  4407. <action selector="enableIPv6Changed:" destination="7pH-aa-DuY" eventType="valueChanged" id="xnc-47-urN"/>
  4408. </connections>
  4409. </switch>
  4410. </subviews>
  4411. </tableViewCellContentView>
  4412. </tableViewCell>
  4413. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="GGc-PA-VMc">
  4414. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  4415. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4416. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="GGc-PA-VMc" id="ARP-KA-vmC">
  4417. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4418. <autoresizingMask key="autoresizingMask"/>
  4419. <subviews>
  4420. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Verbindung im Hintergrund" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="fff-dA-feT">
  4421. <rect key="frame" x="15" y="11" width="224" height="21"/>
  4422. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4423. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4424. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4425. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4426. <nil key="highlightedColor"/>
  4427. </label>
  4428. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="EO3-ji-4bE">
  4429. <rect key="frame" x="306" y="6" width="50" height="31"/>
  4430. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  4431. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  4432. <connections>
  4433. <action selector="backgroundProcessingChanged:" destination="7pH-aa-DuY" eventType="valueChanged" id="7RE-UT-bug"/>
  4434. </connections>
  4435. </switch>
  4436. </subviews>
  4437. </tableViewCellContentView>
  4438. </tableViewCell>
  4439. </cells>
  4440. </tableViewSection>
  4441. <tableViewSection headerTitle="Support-Informationen" footerTitle="" id="JkJ-JL-iTc">
  4442. <cells>
  4443. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="MvP-CZ-MOx">
  4444. <rect key="frame" x="0.0" y="199" width="375" height="44"/>
  4445. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4446. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="MvP-CZ-MOx" id="ZUV-MA-drN">
  4447. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4448. <autoresizingMask key="autoresizingMask"/>
  4449. <subviews>
  4450. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Push Token" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ghb-GB-r7T">
  4451. <rect key="frame" x="15" y="11" width="182" height="21"/>
  4452. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4453. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4454. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4455. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4456. <nil key="highlightedColor"/>
  4457. </label>
  4458. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Push Token" textAlignment="right" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="WrW-pc-wdK" customClass="CopyLabel">
  4459. <rect key="frame" x="141" y="11" width="216" height="21"/>
  4460. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  4461. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4462. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4463. <nil key="highlightedColor"/>
  4464. </label>
  4465. </subviews>
  4466. </tableViewCellContentView>
  4467. </tableViewCell>
  4468. </cells>
  4469. </tableViewSection>
  4470. <tableViewSection headerTitle="Validierungs-Log" id="cRN-dg-OxE">
  4471. <cells>
  4472. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="CxY-UP-JRx">
  4473. <rect key="frame" x="0.0" y="291" width="375" height="44"/>
  4474. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4475. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CxY-UP-JRx" id="XOT-TF-sxN">
  4476. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4477. <autoresizingMask key="autoresizingMask"/>
  4478. <subviews>
  4479. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Validierungs-Log" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ekf-QV-s7L">
  4480. <rect key="frame" x="15" y="11" width="231" height="21"/>
  4481. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4482. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4483. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4484. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4485. <nil key="highlightedColor"/>
  4486. </label>
  4487. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="W5d-6Q-TNI">
  4488. <rect key="frame" x="306" y="6" width="50" height="31"/>
  4489. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  4490. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  4491. <connections>
  4492. <action selector="validationLoggingChanged:" destination="7pH-aa-DuY" eventType="valueChanged" id="SwG-dN-USH"/>
  4493. </connections>
  4494. </switch>
  4495. </subviews>
  4496. </tableViewCellContentView>
  4497. </tableViewCell>
  4498. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="G71-r7-8ej" detailTextLabel="0Gd-td-Hl4" style="IBUITableViewCellStyleValue1" id="drp-ye-qsW">
  4499. <rect key="frame" x="0.0" y="335" width="375" height="44"/>
  4500. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4501. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="drp-ye-qsW" id="8dS-dp-A4M">
  4502. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4503. <autoresizingMask key="autoresizingMask"/>
  4504. <subviews>
  4505. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Grösse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="G71-r7-8ej">
  4506. <rect key="frame" x="16" y="12" width="65" height="21"/>
  4507. <autoresizingMask key="autoresizingMask"/>
  4508. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4509. <nil key="highlightedColor"/>
  4510. </label>
  4511. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="0 KB" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0Gd-td-Hl4">
  4512. <rect key="frame" x="324" y="12" width="36" height="21"/>
  4513. <autoresizingMask key="autoresizingMask"/>
  4514. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4515. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4516. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4517. </label>
  4518. </subviews>
  4519. </tableViewCellContentView>
  4520. </tableViewCell>
  4521. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="qlo-Qb-yd6" style="IBUITableViewCellStyleDefault" id="1B4-9s-hrY">
  4522. <rect key="frame" x="0.0" y="379" width="375" height="44"/>
  4523. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4524. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1B4-9s-hrY" id="7xp-ek-Bwb">
  4525. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4526. <autoresizingMask key="autoresizingMask"/>
  4527. <subviews>
  4528. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Log per E-Mail senden" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qlo-Qb-yd6">
  4529. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  4530. <autoresizingMask key="autoresizingMask"/>
  4531. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4532. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4533. <nil key="highlightedColor"/>
  4534. </label>
  4535. </subviews>
  4536. </tableViewCellContentView>
  4537. <accessibility key="accessibilityConfiguration">
  4538. <accessibilityTraits key="traits" button="YES"/>
  4539. </accessibility>
  4540. </tableViewCell>
  4541. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="T39-4t-56X" style="IBUITableViewCellStyleDefault" id="Z5z-kF-JVr">
  4542. <rect key="frame" x="0.0" y="423" width="375" height="44"/>
  4543. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4544. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Z5z-kF-JVr" id="xIa-OY-tVy">
  4545. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4546. <autoresizingMask key="autoresizingMask"/>
  4547. <subviews>
  4548. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Log löschen" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="T39-4t-56X">
  4549. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  4550. <autoresizingMask key="autoresizingMask"/>
  4551. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4552. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4553. <nil key="highlightedColor"/>
  4554. </label>
  4555. </subviews>
  4556. </tableViewCellContentView>
  4557. <accessibility key="accessibilityConfiguration">
  4558. <accessibilityTraits key="traits" button="YES"/>
  4559. </accessibility>
  4560. </tableViewCell>
  4561. </cells>
  4562. </tableViewSection>
  4563. </sections>
  4564. <connections>
  4565. <outlet property="dataSource" destination="7pH-aa-DuY" id="gN9-sH-CGC"/>
  4566. <outlet property="delegate" destination="7pH-aa-DuY" id="zbz-f8-vOO"/>
  4567. </connections>
  4568. </tableView>
  4569. <navigationItem key="navigationItem" title="Erweitert" id="coo-M3-hCO"/>
  4570. <connections>
  4571. <outlet property="backgroundProcessingSwitch" destination="EO3-ji-4bE" id="vTU-fo-rCr"/>
  4572. <outlet property="enableIPv6Switch" destination="Kwd-Bj-mMv" id="YGn-xZ-Waz"/>
  4573. <outlet property="logSizeLabel" destination="0Gd-td-Hl4" id="09Z-Ya-Ru7"/>
  4574. <outlet property="pushTokenLabel" destination="WrW-pc-wdK" id="NLX-oi-MsO"/>
  4575. <outlet property="validationLoggingSwitch" destination="W5d-6Q-TNI" id="rdS-sW-sG6"/>
  4576. </connections>
  4577. </tableViewController>
  4578. <placeholder placeholderIdentifier="IBFirstResponder" id="61G-Op-5vx" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4579. </objects>
  4580. <point key="canvasLocation" x="2430" y="4415"/>
  4581. </scene>
  4582. <!--Push-Gruppen-Ton-->
  4583. <scene sceneID="dC2-Lc-8eq">
  4584. <objects>
  4585. <tableViewController id="dtN-aU-IlJ" customClass="PushSoundViewController" sceneMemberID="viewController">
  4586. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="PNs-dp-UqJ">
  4587. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4588. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4589. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4590. <prototypes>
  4591. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="cV8-fI-rLR" style="IBUITableViewCellStyleDefault" id="tqT-5p-fSB">
  4592. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  4593. <autoresizingMask key="autoresizingMask"/>
  4594. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="tqT-5p-fSB" id="Uzp-4m-Oqx">
  4595. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4596. <autoresizingMask key="autoresizingMask"/>
  4597. <subviews>
  4598. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="cV8-fI-rLR">
  4599. <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
  4600. <autoresizingMask key="autoresizingMask"/>
  4601. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4602. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4603. <nil key="highlightedColor"/>
  4604. </label>
  4605. </subviews>
  4606. </tableViewCellContentView>
  4607. </tableViewCell>
  4608. </prototypes>
  4609. <connections>
  4610. <outlet property="dataSource" destination="dtN-aU-IlJ" id="88v-S1-2l3"/>
  4611. <outlet property="delegate" destination="dtN-aU-IlJ" id="b8T-eP-dfC"/>
  4612. </connections>
  4613. </tableView>
  4614. <navigationItem key="navigationItem" title="Push-Gruppen-Ton" id="HIF-qW-5kr"/>
  4615. </tableViewController>
  4616. <placeholder placeholderIdentifier="IBFirstResponder" id="E4k-QX-Ieo" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4617. </objects>
  4618. <point key="canvasLocation" x="3074" y="2519"/>
  4619. </scene>
  4620. <!--Navigation Controller-->
  4621. <scene sceneID="pMC-N0-lCt">
  4622. <objects>
  4623. <navigationController automaticallyAdjustsScrollViewInsets="NO" id="kOn-02-WX5" sceneMemberID="viewController">
  4624. <toolbarItems/>
  4625. <navigationBar key="navigationBar" contentMode="scaleToFill" id="aqn-Eo-p5r">
  4626. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4627. <autoresizingMask key="autoresizingMask"/>
  4628. </navigationBar>
  4629. <nil name="viewControllers"/>
  4630. <connections>
  4631. <segue destination="gAo-8A-eYi" kind="relationship" relationship="rootViewController" id="f97-Kd-K1p"/>
  4632. </connections>
  4633. </navigationController>
  4634. <placeholder placeholderIdentifier="IBFirstResponder" id="id9-wn-aP0" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4635. </objects>
  4636. <point key="canvasLocation" x="5231" y="4167"/>
  4637. </scene>
  4638. </scenes>
  4639. <resources>
  4640. <image name="08-chat.png" width="24" height="22"/>
  4641. <image name="123-id-card.png" width="24" height="17"/>
  4642. <image name="20-gear-2.png" width="26" height="28"/>
  4643. <image name="75-phone.png" width="24" height="24"/>
  4644. <image name="759-refresh-2.png" width="28" height="28"/>
  4645. <image name="86-camera.png" width="23" height="18"/>
  4646. <image name="940-pin-toolbar.png" width="10" height="22"/>
  4647. <image name="947-target-reticle-toolbar.png" width="22" height="22"/>
  4648. <image name="MessageStatusSmall_sent.png" width="18" height="16"/>
  4649. <image name="PlusButton.png" width="22" height="22"/>
  4650. <image name="Typing.png" width="22" height="20"/>
  4651. <image name="WallpaperDefault.png" width="100" height="150"/>
  4652. <image name="powered-by-google-on-white.png" width="104" height="16"/>
  4653. <image name="unknown-group-56.png" width="56" height="56"/>
  4654. <image name="unknown-person-48.png" width="48" height="48"/>
  4655. <image name="unknown-person-56.png" width="56" height="56"/>
  4656. <image name="verification-0.png" width="48" height="11"/>
  4657. <image name="verification-1.png" width="48" height="11"/>
  4658. <image name="verification-2.png" width="48" height="11"/>
  4659. <image name="verification-3.png" width="48" height="11"/>
  4660. <image name="verification32-2.png" width="32" height="8"/>
  4661. <image name="verificationbig-2.png" width="163" height="37"/>
  4662. </resources>
  4663. <simulatedMetricsContainer key="defaultSimulatedMetrics">
  4664. <simulatedStatusBarMetrics key="statusBar"/>
  4665. <simulatedOrientationMetrics key="orientation"/>
  4666. <simulatedScreenMetrics key="destination" type="retina4_7.fullscreen"/>
  4667. </simulatedMetricsContainer>
  4668. <inferredMetricsTieBreakers>
  4669. <segue reference="rOK-24-MIK"/>
  4670. </inferredMetricsTieBreakers>
  4671. </document>