123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671 |
- <?xml version="1.0" encoding="UTF-8"?>
- <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11762" systemVersion="16C67" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" colorMatched="YES" initialViewController="4">
- <dependencies>
- <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
- <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
- </dependencies>
- <scenes>
- <!--Main Tab Bar Controller-->
- <scene sceneID="15">
- <objects>
- <tabBarController storyboardIdentifier="tabBarController" id="4" customClass="MainTabBarController" sceneMemberID="viewController">
- <nil key="simulatedBottomBarMetrics"/>
- <tabBar key="tabBar" contentMode="scaleToFill" id="5">
- <rect key="frame" x="0.0" y="431" width="320" height="49"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </tabBar>
- <connections>
- <segue destination="jkA-kt-EVh" kind="relationship" relationship="viewControllers" id="78a-91-TLZ"/>
- <segue destination="4Fs-j8-Z1S" kind="relationship" relationship="viewControllers" id="mhn-Fn-s9p"/>
- <segue destination="uvv-Ko-dQ8" kind="relationship" relationship="viewControllers" id="3w4-zc-fqJ"/>
- <segue destination="OHY-cO-A6g" kind="relationship" relationship="viewControllers" id="odg-P3-ril"/>
- </connections>
- </tabBarController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="14" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="242" y="468"/>
- </scene>
- <!--Einstellungen-->
- <scene sceneID="KqS-on-sEZ">
- <objects>
- <tableViewController storyboardIdentifier="settingsViewController" id="y1R-kI-4Pp" customClass="SettingsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="6H0-fr-XhZ">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="lEn-4H-g7j" style="IBUITableViewCellStyleDefault" id="H4a-Gb-920">
- <rect key="frame" x="0.0" y="35" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="H4a-Gb-920" id="l8r-uP-mbb">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Privatsphäre" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="lEn-4H-g7j">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="3DT-Cu-DnP" kind="push" id="zeL-bd-5s0"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="CDh-bl-cmC" style="IBUITableViewCellStyleDefault" id="cqP-99-7bZ">
- <rect key="frame" x="0.0" y="79" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="cqP-99-7bZ" id="eIe-5P-bmz">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Benachrichtigungen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="CDh-bl-cmC">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="Qt8-lZ-oDY" kind="push" id="bxe-HQ-JSQ"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="eqg-06-XE0" style="IBUITableViewCellStyleDefault" id="teM-wg-NEQ">
- <rect key="frame" x="0.0" y="123" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="teM-wg-NEQ" id="Hpe-BZ-Mzu">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Chat-Anzeige" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="eqg-06-XE0">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="2eW-Y2-pa9" kind="push" id="axe-On-Idy"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="sZY-9f-Y18" style="IBUITableViewCellStyleDefault" id="mQa-Rh-wqK">
- <rect key="frame" x="0.0" y="167" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="mQa-Rh-wqK" id="3Ah-6T-9SX">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Medien" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="sZY-9f-Y18">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="MdZ-GK-jas" kind="push" id="j3T-4v-OLT"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="211" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="h3l-TB-vk0" id="1E6-90-jCb">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Code-Sperre" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GNP-TO-eLx">
- <rect key="frame" x="16" y="12" width="115" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="vaO-K3-a0M">
- <rect key="frame" x="296" y="12" width="44" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="KRJ-pA-Z3a">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="275" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bST-sJ-2dT" id="DEC-oh-GRx">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Netzwerkstatus" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Xti-Mb-wdd">
- <rect key="frame" x="16" y="12" width="118" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Verbunden" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Qcw-q1-XhM">
- <rect key="frame" x="276" y="12" width="84" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="GUh-ay-NaP" detailTextLabel="8bH-h3-6LW" style="IBUITableViewCellStyleValue1" id="gRq-MQ-WIL">
- <rect key="frame" x="0.0" y="319" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gRq-MQ-WIL" id="gTx-s6-xoP">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Version" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GUh-ay-NaP">
- <rect key="frame" x="16" y="12" width="57" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="289" y="12" width="71" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="MR4-7N-rxJ">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="rvd-oB-oRT" style="IBUITableViewCellStyleDefault" id="dYC-Cc-Blb">
- <rect key="frame" x="0.0" y="383" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dYC-Cc-Blb" id="THy-no-5Mq">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Freunde einladen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="rvd-oB-oRT">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="v0T-sr-aCe" style="IBUITableViewCellStyleDefault" id="zrC-JX-e84">
- <rect key="frame" x="0.0" y="427" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="zrC-JX-e84" id="2LV-GK-dIz">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Channel" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="v0T-sr-aCe">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="FAH-aO-8KP">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="4IP-qY-TLk" style="IBUITableViewCellStyleDefault" id="5A3-C4-gi4">
- <rect key="frame" x="0.0" y="491" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="5A3-C4-gi4" id="QQO-Ve-9WG">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Support" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4IP-qY-TLk">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="dET-dz-QOT" kind="push" id="qaB-YZ-IJr"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="2Ou-Sd-ynK" style="IBUITableViewCellStyleDefault" id="QZa-h8-Mmz">
- <rect key="frame" x="0.0" y="535" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QZa-h8-Mmz" id="Stj-y8-fhL">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Lizenz" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2Ou-Sd-ynK">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="Wea-Ps-HJX" kind="push" id="o8y-Le-WFm"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="py0-eN-3Op" style="IBUITableViewCellStyleDefault" id="U3E-Qa-ms3">
- <rect key="frame" x="0.0" y="579" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="U3E-Qa-ms3" id="YiK-EX-7f6">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Erweitert" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="py0-eN-3Op">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="7pH-aa-DuY" kind="push" id="QxW-Mk-cjF"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="y1R-kI-4Pp" id="ysc-oU-K2m"/>
- <outlet property="delegate" destination="y1R-kI-4Pp" id="kYs-kH-2bW"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Einstellungen" id="Wz8-k0-mkY"/>
- <connections>
- <outlet property="connectionStatusLabel" destination="Qcw-q1-XhM" id="sJY-8D-X6Z"/>
- <outlet property="passcodeLockLabel" destination="vaO-K3-a0M" id="nzM-EW-9YO"/>
- <outlet property="versionLabel" destination="8bH-h3-6LW" id="vub-bt-62f"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="zHz-CH-wQl" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1491" y="3165"/>
- </scene>
- <!--Privatsphäre-->
- <scene sceneID="cIr-nx-zr5">
- <objects>
- <tableViewController id="3DT-Cu-DnP" customClass="PrivacySettingsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection headerTitle="Kontakte" footerTitle="Jeder kann Ihnen Nachrichten senden. Neue Kontakte werden bei der ersten Nachricht automatisch hinzugefügt." id="AYq-Zn-aPI">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="18v-MF-Xwf">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="18v-MF-Xwf" id="5nW-0a-9bp">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Kontakte synchronisieren" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="jT9-XX-nfF">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="vuE-72-swA">
- <rect key="frame" x="309" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="syncContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="Ne8-0u-O17"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="2HH-IN-dw7" style="IBUITableViewCellStyleDefault" id="bZC-FQ-Tho">
- <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bZC-FQ-Tho" id="tcU-5v-uat">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Ausschlussliste" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2HH-IN-dw7">
- <rect key="frame" x="16" y="0.0" width="324" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="77C-YN-K8y" kind="push" id="FsE-ea-5ad"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="jeI-hi-SxN">
- <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jeI-hi-SxN" id="PUz-e0-b1e">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Unbekannte blockieren" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Tps-qx-ecO">
- <rect key="frame" x="14" y="11" width="272" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="HQD-xS-L3t">
- <rect key="frame" x="309" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <action selector="blockUnknownChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="a5T-sp-aeY"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="Select to hide Threema IDs that were inactive for more than 6 months." id="jkG-RT-sd8">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="EqO-2o-voj">
- <rect key="frame" x="0.0" y="259.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EqO-2o-voj" id="ckF-6r-271">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" id="kBF-Yp-hJg">
- <rect key="frame" x="309" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="hideStaleContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="hxv-sp-knM"/>
- <action selector="syncContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="pHK-Mq-Kgt"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Chat" id="Fzt-jY-2Jm">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Gkt-df-am3">
- <rect key="frame" x="0.0" y="387.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Gkt-df-am3" id="Cv8-fS-UX1">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Lesebestätigungen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="r6F-vi-8UO">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="5Fm-bT-q6N">
- <rect key="frame" x="309" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="readReceiptsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="8Hc-XO-kaM"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="lrI-DS-1eP">
- <rect key="frame" x="0.0" y="431.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="lrI-DS-1eP" id="692-RF-7gW">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="SnF-xk-cxb">
- <rect key="frame" x="309" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="typingIndicatorChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="KJ8-UY-COs"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="gxu-hq-LKg">
- <rect key="frame" x="0.0" y="475.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gxu-hq-LKg" id="vMV-Nt-K9m">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="7fA-XI-jhq">
- <rect key="frame" x="309" y="6" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="poiChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="GWV-el-wUJ"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="3DT-Cu-DnP" id="81Z-Af-v31"/>
- <outlet property="delegate" destination="3DT-Cu-DnP" id="y7N-8E-FON"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Privatsphäre" id="fIw-mi-sE8"/>
- <connections>
- <outlet property="blockUnknownSwitch" destination="HQD-xS-L3t" id="Ira-Qr-d9N"/>
- <outlet property="hideStaleContactsSwitch" destination="kBF-Yp-hJg" id="0AS-19-yMP"/>
- <outlet property="poiSwitch" destination="7fA-XI-jhq" id="jtK-Tz-fyE"/>
- <outlet property="readReceiptsSwitch" destination="5Fm-bT-q6N" id="WBK-fu-D8N"/>
- <outlet property="syncContactsSwitch" destination="vuE-72-swA" id="Z9j-Co-HCK"/>
- <outlet property="typingIndicatorSwitch" destination="SnF-xk-cxb" id="FLk-07-K7d"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="FRS-uU-8Vn" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2447" y="2113"/>
- </scene>
- <!--Medien-->
- <scene sceneID="9n2-JM-W9X">
- <objects>
- <tableViewController id="MdZ-GK-jas" customClass="MediaSettingsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="bM9-XT-VOT">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="35" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="kg0-hd-wkF" id="BWL-gE-2qP">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Bildgrösse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="dtR-IG-zuv">
- <rect key="frame" x="16" y="12" width="84" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="al2-Js-fb2">
- <rect key="frame" x="296" y="12" width="44" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="AQR-Vz-MhD" kind="push" id="ojf-XT-fRD"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="g4Y-lJ-Iqq" detailTextLabel="Uj2-yb-tVZ" style="IBUITableViewCellStyleValue1" id="xzu-8Q-qMl">
- <rect key="frame" x="0.0" y="79" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xzu-8Q-qMl" id="E7u-5R-8mb">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Videoqualität" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="g4Y-lJ-Iqq">
- <rect key="frame" x="16" y="12" width="102" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Uj2-yb-tVZ">
- <rect key="frame" x="296" y="12" width="44" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="UHC-G1-hob" kind="push" id="q9b-WE-luc"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="62" id="RzH-8a-U9m">
- <rect key="frame" x="0.0" y="123" width="375" height="62"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RzH-8a-U9m" id="rQi-gB-u1d">
- <rect key="frame" x="0.0" y="0.0" width="375" height="61.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="8" width="180" height="43"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="OLc-42-qCb">
- <rect key="frame" x="305" y="14" width="51" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="autoSaveMediaChanged:" destination="MdZ-GK-jas" eventType="valueChanged" id="yVv-SR-Qtz"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="MdZ-GK-jas" id="zJ2-3b-i3C"/>
- <outlet property="delegate" destination="MdZ-GK-jas" id="1nk-UQ-7kK"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Medien" id="s46-XP-Ffa"/>
- <connections>
- <outlet property="autoSaveMediaSwitch" destination="OLc-42-qCb" id="XCE-27-KnY"/>
- <outlet property="imageSizeLabel" destination="al2-Js-fb2" id="WzQ-Nl-Dw6"/>
- <outlet property="videoQualityLabel" destination="Uj2-yb-tVZ" id="awc-Qq-Ulg"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="vBe-Zq-lWF" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2442" y="6273"/>
- </scene>
- <!--Lizenz-->
- <scene sceneID="gtE-Xd-SgN">
- <objects>
- <viewController id="Wea-Ps-HJX" customClass="LicenseViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="Mm2-HT-hGR">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <webView contentMode="scaleToFill" id="3zu-E2-S1d">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <dataDetectorType key="dataDetectorTypes"/>
- </webView>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Lizenz" id="LyU-ka-OX3"/>
- <connections>
- <outlet property="webView" destination="3zu-E2-S1d" id="gTM-Ai-0Of"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Zjd-EU-vDP" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2435" y="5659"/>
- </scene>
- <!--Chat-Anzeige-->
- <scene sceneID="QNk-Ok-eAC">
- <objects>
- <tableViewController id="2eW-Y2-pa9" customClass="DisplaySettingsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection headerTitle="Hintergrundbild" id="rbG-Ej-MES">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="178" id="iia-dY-V60">
- <rect key="frame" x="0.0" y="55.5" width="375" height="178"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="iia-dY-V60" id="m3i-ir-yYh">
- <rect key="frame" x="0.0" y="0.0" width="342" height="177.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" image="WallpaperDefault.png" id="XIo-bQ-d7K">
- <rect key="frame" x="102" y="14" width="150" height="150"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" id="OI8-lV-bIY">
- <rect key="frame" x="0.0" y="233.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OI8-lV-bIY" id="SdZ-C6-Cor">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="20" y="11" width="333" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="" id="ku4-7V-ypJ">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="Sbz-zc-BXq">
- <rect key="frame" x="0.0" y="297.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Sbz-zc-BXq" id="uzy-ZM-mmx">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" id="hSB-PC-m2L">
- <rect key="frame" x="307" y="6" width="52" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="themeSwitchChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="HgM-uw-bZ7"/>
- </connections>
- </switch>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Dunkles Design" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="uBY-E9-MPF">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <accessibility key="accessibilityConfiguration" label="Show Received Message Time"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" detailTextLabel="Tg1-9T-28K" style="IBUITableViewCellStyleValue1" id="b1C-aj-udy">
- <rect key="frame" x="0.0" y="341.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="b1C-aj-udy" id="qhv-8Q-Qoe">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Schriftgrösse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qqh-7v-vmA">
- <rect key="frame" x="15" y="11" width="193" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Tg1-9T-28K">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="8nh-on-KIa" kind="push" id="wVM-hg-8Bj"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="dxZ-1P-oyi">
- <rect key="frame" x="0.0" y="385.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dxZ-1P-oyi" id="dfw-aD-PXd">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="JhW-TN-V1o">
- <rect key="frame" x="307" y="6" width="52" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="showReceivedTimestampChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="MkO-5D-J2X"/>
- </connections>
- </switch>
- <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">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <accessibility key="accessibilityConfiguration" label="Zeit bei Empfang anzeigen"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="9K9-wE-Q1d">
- <rect key="frame" x="0.0" y="429.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9K9-wE-Q1d" id="I4B-dS-9Yl">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="130-Nq-JcK">
- <rect key="frame" x="307" y="6" width="52" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="returnToSendChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="MXv-d3-B9N"/>
- </connections>
- </switch>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Eingabetaste = Senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ffN-Yo-shC">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="2eW-Y2-pa9" id="ijm-bQ-uXm"/>
- <outlet property="delegate" destination="2eW-Y2-pa9" id="PAu-a4-PTf"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Chat-Anzeige" id="fFN-GT-Pr9"/>
- <connections>
- <outlet property="fontSizeLabel" destination="Tg1-9T-28K" id="EEz-zu-BKq"/>
- <outlet property="returnToSendSwitch" destination="130-Nq-JcK" id="iyz-3Q-H06"/>
- <outlet property="showReceivedTimestampSwitch" destination="JhW-TN-V1o" id="fit-6Q-zfo"/>
- <outlet property="themeSwitch" destination="hSB-PC-m2L" id="6j3-Mc-DSw"/>
- <outlet property="wallpaperImageView" destination="XIo-bQ-d7K" id="vBh-u3-zi4"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="ffR-5e-3bm" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2435" y="3696"/>
- </scene>
- <!--Schriftgrösse-->
- <scene sceneID="Ge7-Sv-uhZ">
- <objects>
- <tableViewController id="8nh-on-KIa" customClass="FontSizeViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="FontSizeCell" textLabel="R47-VP-gFD" style="IBUITableViewCellStyleDefault" id="3Vh-W4-Fog">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3Vh-W4-Fog" id="ub8-Td-D0t">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="klein" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="R47-VP-gFD">
- <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="8nh-on-KIa" id="ove-fZ-dFv"/>
- <outlet property="delegate" destination="8nh-on-KIa" id="J9S-hL-oY9"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Schriftgrösse" id="Fi8-nk-NDW"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="zSG-Jc-eIs" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3068" y="3709"/>
- </scene>
- <!--Support-->
- <scene sceneID="dsZ-tX-BXr">
- <objects>
- <viewController id="dET-dz-QOT" customClass="SupportViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="cdU-54-yb4">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <webView multipleTouchEnabled="YES" contentMode="scaleToFill" scalesPageToFit="YES" id="gVh-hu-m9y">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <dataDetectorType key="dataDetectorTypes"/>
- </webView>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Support" id="RDy-7k-EX5"/>
- <connections>
- <outlet property="webView" destination="gVh-hu-m9y" id="pZS-L1-0sn"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="x5B-GO-wqJ" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2430" y="5049"/>
- </scene>
- <!--Bildgrösse-->
- <scene sceneID="7wv-iF-gCx">
- <objects>
- <tableViewController id="AQR-Vz-MhD" customClass="ImageSizeViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="checkmark" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ImageSizeCell" rowHeight="62" id="RNN-n3-Qdh" customClass="ImageSizeCell">
- <rect key="frame" x="0.0" y="55.5" width="375" height="62"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RNN-n3-Qdh" id="S8I-p0-3SJ">
- <rect key="frame" x="0.0" y="0.0" width="336" height="61.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Grösse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Kf6-Af-cZd">
- <rect key="frame" x="15" y="10" width="240" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="15" y="31" width="240" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="sizeDetailLabel" destination="9DJ-kU-IOH" id="pyF-vO-X7f"/>
- <outlet property="sizeLabel" destination="Kf6-Af-cZd" id="hBc-N8-Cl3"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="AQR-Vz-MhD" id="KGa-b5-Ycw"/>
- <outlet property="delegate" destination="AQR-Vz-MhD" id="RDi-Ca-d5O"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Bildgrösse" id="Rqf-zt-Ocq"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="mIp-1V-xfl" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3153" y="5929"/>
- </scene>
- <!--Einstellungen-->
- <scene sceneID="FZG-wn-tpM">
- <objects>
- <navigationController id="OHY-cO-A6g" customClass="SettingsNavigationController" sceneMemberID="viewController">
- <tabBarItem key="tabBarItem" title="Einstellungen" image="20-gear-2.png" id="b04-Gg-ZdB"/>
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="vZ5-yv-BbA" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="y1R-kI-4Pp" kind="relationship" relationship="rootViewController" id="Lhq-bY-s7T"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="EDa-Yt-oNt" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="915" y="2507"/>
- </scene>
- <!--Nachrichten-->
- <scene sceneID="zrk-Dk-DBQ">
- <objects>
- <tableViewController storyboardIdentifier="conversationsViewController" id="Kji-Zw-ER6" customClass="ConversationsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ConversationCell" id="rT5-pb-7l3" customClass="ConversationCell">
- <rect key="frame" x="0.0" y="22" width="375" height="74"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rT5-pb-7l3" id="dgn-JD-ljW">
- <rect key="frame" x="0.0" y="0.0" width="375" height="73.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="77" y="6" width="204" height="22"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Message preview" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="cbw-WM-oCU" customClass="SSLabel">
- <rect key="frame" x="77" y="30" width="247" height="34"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-56.png" id="V59-O6-HhR">
- <rect key="frame" x="12" y="9" width="56" height="56"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <view contentMode="scaleToFill" id="bi1-G7-b3r" customClass="MKNumberBadgeView">
- <rect key="frame" x="42" y="40" width="36" height="28"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </view>
- <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" image="Typing.png" highlightedImage="Typing.png" id="Xnt-jr-dbd">
- <rect key="frame" x="344" y="30" width="18" height="20"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- </imageView>
- <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" image="MessageStatusSmall_sent.png" highlightedImage="MessageStatusSmall_sent.png" id="ZCx-mc-Be1">
- <rect key="frame" x="345" y="30" width="17" height="16"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- </imageView>
- <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">
- <rect key="frame" x="285" y="9" width="77" height="20"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.42745098039215684" green="0.42745098039215684" blue="0.42745098039215684" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" misplaced="YES" text="Entwurf" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="G8c-6W-DiZ">
- <rect key="frame" x="285" y="9" width="77" height="20"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <inset key="separatorInset" minX="77" minY="0.0" maxX="0.0" maxY="0.0"/>
- <connections>
- <outlet property="badgeView" destination="bi1-G7-b3r" id="GMG-o6-pB4"/>
- <outlet property="contactImage" destination="V59-O6-HhR" id="dGS-SP-0tY"/>
- <outlet property="dateLabel" destination="SQ8-5g-lHd" id="vSk-Ou-SnZ"/>
- <outlet property="draftLabel" destination="G8c-6W-DiZ" id="361-t6-t2t"/>
- <outlet property="messagePreviewLabel" destination="cbw-WM-oCU" id="xPc-d8-ooZ"/>
- <outlet property="nameLabel" destination="i0d-PW-Wvq" id="z9t-Cz-812"/>
- <outlet property="statusIcon" destination="ZCx-mc-Be1" id="zOo-NA-TSf"/>
- <outlet property="typingIndicator" destination="Xnt-jr-dbd" id="mP7-ih-9Gp"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Kji-Zw-ER6" id="qOQ-Zq-lST"/>
- <outlet property="delegate" destination="Kji-Zw-ER6" id="Ule-cm-hhS"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Nachrichten" id="vkp-6o-Lct">
- <barButtonItem key="leftBarButtonItem" systemItem="edit" id="yNs-w7-9pI"/>
- <barButtonItem key="rightBarButtonItem" systemItem="compose" id="Hqe-Yz-nuJ">
- <connections>
- <action selector="newMessage:" destination="Kji-Zw-ER6" id="BD6-PH-8aA"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <segue destination="v1R-9K-OZW" kind="push" identifier="ShowConversation" id="pFA-Tp-dth"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="pta-Eu-i3V" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1359" y="486"/>
- </scene>
- <!--Contacts View Controller-->
- <scene sceneID="nuw-Vv-xyq">
- <objects>
- <viewController storyboardIdentifier="contactsViewController" id="4Fd-lk-A1K" customClass="ContactsViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="9I6-Hb-Esz">
- <rect key="frame" x="0.0" y="64" width="375" height="603"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="603"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <inset key="contentInset" minX="0.0" minY="44" maxX="0.0" maxY="0.0"/>
- <view key="tableFooterView" hidden="YES" contentMode="scaleToFill" id="GQT-ca-BYM">
- <rect key="frame" x="0.0" y="132" width="375" height="140"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Keine Kontakte" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="PaX-dX-iDw">
- <rect key="frame" x="20" y="12" width="323" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" 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">
- <rect key="frame" x="12" y="40" width="331" height="100"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="dFb-Wa-VKz" customClass="ContactCell">
- <rect key="frame" x="0.0" y="28" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dFb-Wa-VKz" id="eHR-pD-pVa">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="10" y="11" width="276" height="23"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="uPX-lJ-jo5">
- <rect key="frame" x="291" y="18" width="75" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="11"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" id="Te1-8r-Kpe">
- <rect key="frame" x="334" y="9" width="32" height="8"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="identityLabel" destination="uPX-lJ-jo5" id="ExJ-ud-89x"/>
- <outlet property="nameLabel" destination="xMb-E3-83s" id="vPc-yz-wse"/>
- <outlet property="verificationLevel" destination="Te1-8r-Kpe" id="GE1-07-boa"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" rowHeight="60" id="LPm-Ak-I7T" customClass="GroupCell">
- <rect key="frame" x="0.0" y="72" width="375" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LPm-Ak-I7T" id="C47-PO-Vse">
- <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="219" y="36" width="135" height="14"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="11"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="SEL-U7-diX">
- <rect key="frame" x="10" y="10" width="352" height="22"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Ersteller" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="3Il-OE-3n8">
- <rect key="frame" x="10" y="36" width="256" height="14"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="11"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="countMemberLabel" destination="Wb5-yH-lj0" id="aqv-NO-vqb"/>
- <outlet property="creatorLabel" destination="3Il-OE-3n8" id="Fsl-YF-1hl"/>
- <outlet property="groupNameLabel" destination="SEL-U7-diX" id="suv-UC-BN5"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="4Fd-lk-A1K" id="gsg-CL-vR5"/>
- <outlet property="delegate" destination="4Fd-lk-A1K" id="vTM-B1-KLb"/>
- </connections>
- </tableView>
- <searchBar contentMode="redraw" placeholder="Suchen" id="dUh-vm-0d6">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <textInputTraits key="textInputTraits"/>
- <connections>
- <outlet property="delegate" destination="4Fd-lk-A1K" id="3vX-Eo-PK2"/>
- </connections>
- </searchBar>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <extendedEdge key="edgesForExtendedLayout" bottom="YES"/>
- <navigationItem key="navigationItem" id="eEz-yJ-GLV">
- <nil key="title"/>
- <barButtonItem key="leftBarButtonItem" systemItem="edit" id="Hid-rG-ZSO"/>
- <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="xpR-ok-Lej">
- <rect key="frame" x="118" y="8" width="139" height="29"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <segments>
- <segment title="Kontakte"/>
- <segment title="Gruppen"/>
- </segments>
- <connections>
- <action selector="segmentedControlChanged:" destination="4Fd-lk-A1K" eventType="valueChanged" id="HO2-Ko-EGJ"/>
- </connections>
- </segmentedControl>
- <barButtonItem key="rightBarButtonItem" systemItem="add" id="xaS-12-Ims">
- <connections>
- <action selector="addAction:" destination="4Fd-lk-A1K" id="rFa-0j-G93"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="noContactsMessageLabel" destination="t3X-2A-HzY" id="HW1-mM-Th0"/>
- <outlet property="noContactsTitleLabel" destination="PaX-dX-iDw" id="qqy-fz-4bz"/>
- <outlet property="noContactsView" destination="GQT-ca-BYM" id="GHJ-Kv-WGC"/>
- <outlet property="searchBar" destination="dUh-vm-0d6" id="deS-Yz-gXa"/>
- <outlet property="searchDisplayController" destination="aT7-Sh-PTR" id="uOn-WQ-2Vb"/>
- <outlet property="segmentedControl" destination="xpR-ok-Lej" id="Unz-g9-cmB"/>
- <outlet property="tableView" destination="oA5-UX-CCe" id="zpi-AV-wV2"/>
- <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="Akb-Cn-eQX"/>
- </connections>
- </viewController>
- <searchDisplayController id="aT7-Sh-PTR">
- <connections>
- <outlet property="delegate" destination="4Fd-lk-A1K" id="hGW-3A-GFm"/>
- <outlet property="searchBar" destination="dUh-vm-0d6" id="wzN-uM-BOm"/>
- <outlet property="searchContentsController" destination="4Fd-lk-A1K" id="kUA-RZ-KNB"/>
- <outlet property="searchResultsDataSource" destination="4Fd-lk-A1K" id="ztG-2F-d81"/>
- <outlet property="searchResultsDelegate" destination="4Fd-lk-A1K" id="JAT-Qg-BB3"/>
- </connections>
- </searchDisplayController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="ZJq-lP-hJG" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1430" y="-843"/>
- </scene>
- <!--ContactDetails-->
- <scene sceneID="pxa-1i-UrO">
- <objects>
- <tableViewController storyboardIdentifier="contactDetailsViewController" id="MbJ-IV-2f9" userLabel="ContactDetails" customClass="ContactDetailsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" id="4J2-j2-aqd">
- <rect key="frame" x="0.0" y="0.0" width="375" height="116"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Company Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="wLS-iM-q79">
- <rect key="frame" x="110" y="59" width="225" height="25"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- <imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="unknown-person-56.png" id="C5h-Sy-nCc">
- <rect key="frame" x="12" y="16" width="84" height="84"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="7Yp-xa-uaa">
- <rect key="frame" x="341" y="47" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <state key="normal">
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- </button>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="DfM-u6-9Pl">
- <rect key="frame" x="110" y="32" width="225" height="25"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="IdentityCell" id="ebt-GD-Kmo">
- <rect key="frame" x="0.0" y="171.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ebt-GD-Kmo" id="Szm-Fg-4IJ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Threema ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2lp-u3-z6M">
- <rect key="frame" x="15" y="12" width="133" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="226" y="12" width="133" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="0.0" minY="0.0" maxX="4" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="PublicNicknameCell" id="DJ2-VR-wR5">
- <rect key="frame" x="0.0" y="215.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="DJ2-VR-wR5" id="gXP-iB-7UN">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="JzM-yJ-0jt">
- <rect key="frame" x="15" y="12" width="160" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="230" y="12" width="129" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LinkedContactCell" id="dh6-UK-5RP" customClass="LinkedContactCell">
- <rect key="frame" x="0.0" y="259.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dh6-UK-5RP" id="HWb-CA-uNi">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Verknüpfter Kontakt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jxm-71-tQg">
- <rect key="frame" x="15" y="12" width="160" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="12" id="MnD-TA-cUn">
- <rect key="frame" x="230" y="12" width="129" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="displayNameLabel" destination="MnD-TA-cUn" id="F5w-kV-BSt"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupMembershipCell" id="558-CC-EbB" userLabel="GroupMembershipCell">
- <rect key="frame" x="0.0" y="303.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="558-CC-EbB" id="Ko4-uG-xwm">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Mitglied in Gruppen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="zPS-CU-EpF">
- <rect key="frame" x="15" y="13" width="200" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" tag="102" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="JZI-7I-M9p">
- <rect key="frame" x="306" y="12" width="53" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="VerificationLevelCell" id="FWP-sL-MrC" customClass="VerificationLevelCell">
- <rect key="frame" x="0.0" y="347.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="FWP-sL-MrC" id="8t9-nj-TOi">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sicherheitsstufe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="a5L-dT-f28">
- <rect key="frame" x="15" y="11" width="211" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="dH9-db-1tt">
- <rect key="frame" x="310" y="16" width="49" height="11"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="levelImage" destination="dH9-db-1tt" id="Kjz-Zm-Tkt"/>
- <segue destination="BHJ-uI-yhd" kind="push" id="YgO-Yg-3hN"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" rowHeight="65" id="X6a-sN-vzb" customClass="KeyFingerprintCell">
- <rect key="frame" x="0.0" y="391.5" width="375" height="65"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="X6a-sN-vzb" id="IHC-sA-asZ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Schlüssel-Fingerabdruck" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4Qg-5s-hU5">
- <rect key="frame" x="15" y="11" width="270" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="14" y="34" width="351" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="fingerprintLabel" destination="okP-aA-zDM" id="mfA-dE-GO7"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="SendMessageCell" textLabel="LQb-Ut-2Zt" style="IBUITableViewCellStyleDefault" id="17h-OP-2ko">
- <rect key="frame" x="0.0" y="456.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="17h-OP-2ko" id="K26-H1-AUc">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Nachricht senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="LQb-Ut-2Zt">
- <rect key="frame" x="16" y="0.0" width="344" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137254901957" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="EmailConversationCell" textLabel="SEG-4d-fVM" style="IBUITableViewCellStyleDefault" id="wla-k2-wfy">
- <rect key="frame" x="0.0" y="500.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="wla-k2-wfy" id="ltm-vP-Oyz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Chat per E-Mail senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="SEG-4d-fVM">
- <rect key="frame" x="16" y="0.0" width="344" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="BlockCell" id="OyV-Kc-kkl" customClass="BlockContactCell">
- <rect key="frame" x="0.0" y="544.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OyV-Kc-kkl" id="yq1-pz-P7n">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Kontakt blockieren" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0Er-iu-Csc">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="ME3-2q-nDU">
- <rect key="frame" x="309" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <action selector="blockSwitchChanged:" destination="OyV-Kc-kkl" eventType="valueChanged" id="OOD-p7-iAy"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="blockSwitch" destination="ME3-2q-nDU" id="ZVl-bn-D6e"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="NoPushNotificationCell" id="mcC-YE-Riw" customClass="NoPushNotificationCell">
- <rect key="frame" x="0.0" y="588.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="mcC-YE-Riw" id="FS9-5s-lWa">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Keine Benachrichtigungen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.59999999999999998" id="l5u-Ab-UfT">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="Tf6-41-5vE">
- <rect key="frame" x="309" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="pushSwitchChanged:" destination="mcC-YE-Riw" eventType="valueChanged" id="ql3-Xv-WzQ"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="pushSwitch" destination="Tf6-41-5vE" id="hrS-Ap-89l"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ScanIDCell" textLabel="Sl8-eU-GWX" style="IBUITableViewCellStyleDefault" id="B9p-4r-4nI">
- <rect key="frame" x="0.0" y="632.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="B9p-4r-4nI" id="NRI-gB-MJC">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID scannen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Sl8-eU-GWX">
- <rect key="frame" x="15" y="0.0" width="345" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="MbJ-IV-2f9" id="VQ6-nd-9e4"/>
- <outlet property="delegate" destination="MbJ-IV-2f9" id="6Rc-lt-Ehf"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="First Last" id="Wsn-z9-eRi">
- <barButtonItem key="rightBarButtonItem" systemItem="camera" id="ydd-ZP-cHN">
- <connections>
- <action selector="scanIdentityAction:" destination="MbJ-IV-2f9" id="ZBC-Gt-C0y"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="companyNameLabel" destination="wLS-iM-q79" id="rQo-wF-0UW"/>
- <outlet property="disclosureButton" destination="7Yp-xa-uaa" id="ozN-LX-QiE"/>
- <outlet property="headerView" destination="4J2-j2-aqd" id="nu9-xE-Scc"/>
- <outlet property="imageView" destination="C5h-Sy-nCc" id="CoE-js-cSN"/>
- <outlet property="nameLabel" destination="DfM-u6-9Pl" id="XoH-fN-tsE"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="1eN-yn-5dz" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2598" y="-505"/>
- </scene>
- <!--Contact Group Membership View Controller-->
- <scene sceneID="FZb-Rm-ih3">
- <objects>
- <tableViewController storyboardIdentifier="contactGroupMembershipViewController" id="NM5-wF-syo" customClass="ContactGroupMembershipViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactGroupCell" rowHeight="54" id="hBA-HR-lwj" userLabel="PickerGroupCell" customClass="ContactGroupCell">
- <rect key="frame" x="0.0" y="22" width="375" height="54"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="hBA-HR-lwj" id="jZM-Dc-Ifk">
- <rect key="frame" x="0.0" y="0.0" width="375" height="53.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="84M-Lu-fSm">
- <rect key="frame" x="65" y="6" width="298" height="23"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-56.png" id="qlm-UZ-1WI">
- <rect key="frame" x="12" y="6" width="42" height="42"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <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">
- <rect key="frame" x="65" y="28" width="206" height="20"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <color key="textColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <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">
- <rect key="frame" x="263" y="28" width="100" height="20"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <color key="textColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="avatarImage" destination="qlm-UZ-1WI" id="c0X-2W-sQZ"/>
- <outlet property="countMembersLabel" destination="tWn-7d-peV" id="zpd-NC-Sgi"/>
- <outlet property="creatorNameLabel" destination="Dpn-zH-CmL" id="pfR-iv-ICU"/>
- <outlet property="nameLabel" destination="84M-Lu-fSm" id="HrP-Qi-COE"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="NM5-wF-syo" id="AZ8-ou-ky9"/>
- <outlet property="delegate" destination="NM5-wF-syo" id="5L3-fm-JRE"/>
- </connections>
- </tableView>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="cSz-CB-Ik8" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3044" y="-1252"/>
- </scene>
- <!--Name ändern-->
- <scene sceneID="VNo-4r-iGn">
- <objects>
- <tableViewController storyboardIdentifier="EditContactViewController" id="B4x-zQ-paX" customClass="EditContactViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="bCA-fU-mLq">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="100" id="rfi-kc-yYx">
- <rect key="frame" x="0.0" y="35" width="375" height="100"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rfi-kc-yYx" id="1Aq-Ag-ucy">
- <rect key="frame" x="0.0" y="0.0" width="375" height="99.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <view contentMode="scaleToFill" id="zbC-wn-7Hd" customClass="EditableAvatarView">
- <rect key="frame" x="12" y="8" width="84" height="84"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Vorname" minimumFontSize="17" clearButtonMode="whileEditing" id="uv8-Zw-8w0">
- <rect key="frame" x="109" y="18" width="254" height="30"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
- </textField>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Nachname" minimumFontSize="17" clearButtonMode="whileEditing" id="wpY-cw-D2O">
- <rect key="frame" x="109" y="52" width="254" height="30"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
- </textField>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="B4x-zQ-paX" id="emW-0o-qYZ"/>
- <outlet property="delegate" destination="B4x-zQ-paX" id="w1S-2u-X36"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Name ändern" id="Leg-Pw-PQ8"/>
- <connections>
- <outlet property="avatarView" destination="zbC-wn-7Hd" id="RyT-AV-aEz"/>
- <outlet property="firstNameTextField" destination="uv8-Zw-8w0" id="J2A-0V-Zix"/>
- <outlet property="lastNameTextField" destination="wpY-cw-D2O" id="9kW-JM-aQd"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="b8z-Hz-rif" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3044" y="-707"/>
- </scene>
- <!--Kontakt auswählen-->
- <scene sceneID="Ixe-lK-McQ">
- <objects>
- <viewController id="OvB-ud-WFO" customClass="ContactPickerViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="976-Ac-Msp">
- <rect key="frame" x="0.0" y="64" width="375" height="603"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="603"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <inset key="contentInset" minX="0.0" minY="44" maxX="0.0" maxY="0.0"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="WR3-R8-O61" customClass="ContactCell">
- <rect key="frame" x="0.0" y="22" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="WR3-R8-O61" id="Epf-Rg-KDe">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="11" width="272" height="23"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="q73-1s-ijc">
- <rect key="frame" x="296" y="18" width="72" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="11"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" id="lzw-Mh-nCn">
- <rect key="frame" x="334" y="9" width="32" height="8"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="identityLabel" destination="q73-1s-ijc" id="NRg-B0-V9h"/>
- <outlet property="nameLabel" destination="yS3-b1-W8Z" id="Af2-qC-ikU"/>
- <outlet property="verificationLevel" destination="lzw-Mh-nCn" id="Pes-wx-zzk"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CreateGroupCell" rowHeight="60" id="Zkc-Cg-Lb6" customClass="CreateGroupCell">
- <rect key="frame" x="0.0" y="66" width="375" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Zkc-Cg-Lb6" id="Qx2-Sf-jia">
- <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="18" width="272" height="23"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="19"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="titleLabel" destination="WlP-nR-QGc" id="LmP-ko-Bdc"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" rowHeight="60" id="Ijh-vJ-b1G" customClass="GroupCell">
- <rect key="frame" x="0.0" y="126" width="375" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Ijh-vJ-b1G" id="bqo-MU-g3B">
- <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="220" y="36" width="133" height="14"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="11"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="SOs-ZG-GL4">
- <rect key="frame" x="9" y="10" width="350" height="22"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Group creator" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="3Ud-EH-DX4">
- <rect key="frame" x="8" y="36" width="255" height="14"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="11"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <connections>
- <outlet property="countMemberLabel" destination="xRB-Jy-pi3" id="dzc-ta-MJi"/>
- <outlet property="creatorLabel" destination="3Ud-EH-DX4" id="4lv-Au-OAn"/>
- <outlet property="groupNameLabel" destination="SOs-ZG-GL4" id="4YD-KS-TBg"/>
- </connections>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="OvB-ud-WFO" id="3bF-1n-nf4"/>
- <outlet property="delegate" destination="OvB-ud-WFO" id="IGI-aC-z3S"/>
- </connections>
- </tableView>
- <searchBar contentMode="redraw" placeholder="Suchen" id="CLe-XW-8g8">
- <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <textInputTraits key="textInputTraits"/>
- <connections>
- <outlet property="delegate" destination="OvB-ud-WFO" id="1fl-tf-JEF"/>
- </connections>
- </searchBar>
- </subviews>
- </view>
- <extendedEdge key="edgesForExtendedLayout"/>
- <navigationItem key="navigationItem" title="Kontakt auswählen" id="cNq-Pt-Uma">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="j0Z-qX-yv0">
- <connections>
- <action selector="cancelAction:" destination="OvB-ud-WFO" id="ekI-B1-O1R"/>
- </connections>
- </barButtonItem>
- <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="9mW-FX-ba3">
- <rect key="frame" x="124" y="7" width="128" height="30"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <segments>
- <segment title="Einzeln"/>
- <segment title="Gruppe"/>
- </segments>
- <connections>
- <action selector="segmentedControlChanged:" destination="OvB-ud-WFO" eventType="valueChanged" id="4yc-4d-osa"/>
- </connections>
- </segmentedControl>
- <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="ddH-MT-HLn"/>
- </navigationItem>
- <connections>
- <outlet property="searchBar" destination="CLe-XW-8g8" id="JfI-pf-dgg"/>
- <outlet property="searchDisplayController" destination="AJK-sI-CyX" id="FLS-wz-l0t"/>
- <outlet property="segmentedControl" destination="9mW-FX-ba3" id="lyQ-bl-hSC"/>
- <outlet property="tableView" destination="5iW-dy-4an" id="u72-fo-6AJ"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="mXW-PO-p2r" userLabel="First Responder" sceneMemberID="firstResponder"/>
- <searchDisplayController id="AJK-sI-CyX">
- <connections>
- <outlet property="delegate" destination="OvB-ud-WFO" id="Usv-uV-3zv"/>
- <outlet property="searchBar" destination="CLe-XW-8g8" id="zEf-HF-0Fi"/>
- <outlet property="searchContentsController" destination="OvB-ud-WFO" id="Icu-Mv-cXS"/>
- <outlet property="searchResultsDataSource" destination="OvB-ud-WFO" id="chN-ce-Yhv"/>
- <outlet property="searchResultsDelegate" destination="OvB-ud-WFO" id="ARm-0E-NkC"/>
- </connections>
- </searchDisplayController>
- </objects>
- <point key="canvasLocation" x="5672" y="161"/>
- </scene>
- <!--Nachrichten-->
- <scene sceneID="JMs-VF-NWu">
- <objects>
- <navigationController storyboardIdentifier="chatNavigationController" id="4Fs-j8-Z1S" customClass="ChatNavigationController" sceneMemberID="viewController">
- <tabBarItem key="tabBarItem" title="Nachrichten" image="08-chat.png" id="nZg-gf-uED"/>
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="3xP-bT-Tja" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="Kji-Zw-ER6" kind="relationship" relationship="rootViewController" id="6Jn-Ta-Ldg"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="n2J-3l-9bm" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="863" y="486"/>
- </scene>
- <!--Meine ID-->
- <scene sceneID="Ng9-o6-LBD">
- <objects>
- <tableViewController storyboardIdentifier="myIdentityViewController" id="I0k-J8-Vtl" customClass="MyIdentityViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="QUc-at-DuC">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="P2B-cF-oTk">
- <rect key="frame" x="0.0" y="35" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="P2B-cF-oTk" id="ED9-Xa-OTK">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Threema ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="9yr-AD-cUK">
- <rect key="frame" x="15" y="11" width="133" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="225" y="11" width="135" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="0.0" minY="0.0" maxX="4" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="64" id="gvv-id-Pmc">
- <rect key="frame" x="0.0" y="79" width="375" height="64"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gvv-id-Pmc" id="omR-0q-8vv">
- <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Schlüssel-Fingerabdruck" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="s24-iI-yAz">
- <rect key="frame" x="15" y="11" width="261" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="14" y="34" width="352" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="236" id="u9k-C5-OBI">
- <rect key="frame" x="0.0" y="143" width="375" height="236"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="u9k-C5-OBI" id="fVH-Te-y8E">
- <rect key="frame" x="0.0" y="0.0" width="375" height="235.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="Az6-Ak-eaE">
- <rect key="frame" x="85" y="18" width="200" height="200"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="PTc-Jj-PHF">
- <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>
- <cells>
- <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">
- <rect key="frame" x="0.0" y="399" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sJC-sz-v4G" id="988-gI-LiJ">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="E-Mail-Adresse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="y1P-yl-vpA">
- <rect key="frame" x="16" y="12" width="96" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="QJA-8c-HMa">
- <rect key="frame" x="296" y="12" width="44" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="7Bw-bZ-Nl3" kind="modal" id="1uw-nq-mr5"/>
- </connections>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="443" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Swj-yx-caI" id="Ozc-L4-VZ3">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Telefonnummer" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="1Hj-1l-hxJ">
- <rect key="frame" x="16" y="12" width="117" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="kHj-SA-fKt">
- <rect key="frame" x="296" y="12" width="44" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="Der Nickname wird dem Empfänger angezeigt, wenn er eine Push-Benachrichtigung von Ihnen erhält." id="L3t-4B-qec">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="575" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UMK-uT-KJe" id="uhc-jM-HYT">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Y7W-17-bwW">
- <rect key="frame" x="16" y="12" width="77" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <accessibility key="accessibilityConfiguration" label="Nickname"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="5Ev-4B-WDK">
- <rect key="frame" x="296" y="12" width="44" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="1K5-up-8kR" kind="modal" identifier="SetPublicNickname" id="RdV-8v-dgs"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="XC2-xB-TVD">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="675" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="pam-C2-jA3" id="oKl-js-aWU">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Backup" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0v5-EP-EDx">
- <rect key="frame" x="15" y="0.0" width="325" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="cvq-3z-Jgu">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="739" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="BIQ-jY-ebd" id="HYD-Lr-Tyh">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID-Widerrufspasswort" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" id="b4Z-TN-4jn">
- <rect key="frame" x="15" y="12" width="174" height="19"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="..." textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" id="UYI-5G-D23">
- <rect key="frame" x="327" y="12" width="13" height="19"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="rpD-Oi-fOo">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="tZ9-Lw-a05" style="IBUITableViewCellStyleDefault" id="jiq-15-y5Y">
- <rect key="frame" x="0.0" y="803" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jiq-15-y5Y" id="bXz-r6-sy2">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID löschen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="tZ9-Lw-a05">
- <rect key="frame" x="15" y="0.0" width="345" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES" staticText="YES"/>
- </accessibility>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="1" green="0.23137254901960785" blue="0.18823529411764706" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="I0k-J8-Vtl" id="icO-Yi-qfd"/>
- <outlet property="delegate" destination="I0k-J8-Vtl" id="j9k-nq-dg9"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Meine ID" id="5ap-VU-9eg">
- <barButtonItem key="rightBarButtonItem" systemItem="camera" id="EED-Sp-HrR">
- <connections>
- <action selector="scanIdentity:" destination="I0k-J8-Vtl" id="Zvx-tY-LFX"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="identityLabel" destination="lkL-5x-V15" id="ESl-Ko-Vg9"/>
- <outlet property="keyFingerprintLabel" destination="amq-yB-BQV" id="9yJ-3H-gIK"/>
- <outlet property="linkedEmailLabel" destination="QJA-8c-HMa" id="yb6-FE-HRE"/>
- <outlet property="linkedMobileNoLabel" destination="kHj-SA-fKt" id="Sor-aS-3qA"/>
- <outlet property="pushFromNameLabel" destination="5Ev-4B-WDK" id="7dU-gs-hHE"/>
- <outlet property="qrImageView" destination="Az6-Ak-eaE" id="eQj-Vp-ATT"/>
- <outlet property="revocationLabelDetail" destination="UYI-5G-D23" id="PTt-KT-WjN"/>
- <segue destination="L44-Xr-JJu" kind="modal" identifier="LinkMobileNo" id="yV1-R7-Pko"/>
- <segue destination="wPu-1J-vpq" kind="modal" identifier="EnterCode" id="w23-ym-3jW"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="gmo-qI-mCg" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1471" y="1265"/>
- </scene>
- <!--Benachrichtigungen-->
- <scene sceneID="UYi-jV-Yvw">
- <objects>
- <tableViewController id="Qt8-lZ-oDY" customClass="NotificationSettingsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection headerTitle="In App" id="E3e-w1-EBY">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="uOZ-Lo-9JS">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uOZ-Lo-9JS" id="Eqs-ip-ZjK">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Töne" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="h8v-3h-U2A">
- <rect key="frame" x="14" y="11" width="289" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="TJZ-Sf-O6a">
- <rect key="frame" x="305" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="inAppSoundsChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="eSz-4q-AWd"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="9Yv-aB-4BH">
- <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9Yv-aB-4BH" id="l33-4o-s1k">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Vibrationen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Gcx-w6-qiQ">
- <rect key="frame" x="14" y="11" width="289" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="pef-mK-8be">
- <rect key="frame" x="305" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="inAppVibrateChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="pqP-S7-wGn"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="3e4-Io-d81">
- <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3e4-Io-d81" id="g3w-oW-7pt">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Vorschau" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="KE5-2h-Odt">
- <rect key="frame" x="14" y="11" width="289" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="RHm-Rd-mqd">
- <rect key="frame" x="305" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="inAppPreviewChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="lDT-qp-geP"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Push-Benachrichtigungen" id="m6X-1g-Z2I">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="235.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vTM-n3-jaO" id="Dcl-Qs-OSv">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Ton" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HEL-r7-3ad">
- <rect key="frame" x="15" y="12" width="49.5" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GKA-0Y-RnP">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="Phx-x2-Ggd" kind="push" id="AfW-k9-0yS"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Rb2-cP-tmR">
- <rect key="frame" x="0.0" y="279.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Rb2-cP-tmR" id="MFv-Sl-T50">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="8lc-Zk-gyS">
- <rect key="frame" x="305" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="pushGroupChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="S70-UY-uPu"/>
- </connections>
- </switch>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" misplaced="YES" text="Gruppen-Benachrichtigungen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="syQ-cU-B7P">
- <rect key="frame" x="15" y="11" width="285" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="323.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="XbG-As-U8R" id="c2v-OJ-2rz">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Gruppen-Ton" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GTL-R7-ZdU">
- <rect key="frame" x="15" y="12" width="101" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AFn-cS-yu4">
- <rect key="frame" x="296" y="12" width="44" height="20.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <segue destination="dtN-aU-IlJ" kind="push" identifier="EditPushGroupSound" id="yqf-dq-zZS"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="jyB-3R-QIP">
- <rect key="frame" x="0.0" y="367.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jyB-3R-QIP" id="zOQ-Xf-qKb">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="6Ft-y2-OZY">
- <rect key="frame" x="305" y="6" width="49" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="pushGroupChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="LFc-Ya-GMO"/>
- </connections>
- </switch>
- <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">
- <rect key="frame" x="15" y="11" width="285" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="Qt8-lZ-oDY" id="s78-vN-FWj"/>
- <outlet property="delegate" destination="Qt8-lZ-oDY" id="5MC-dA-sLU"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Benachrichtigungen" id="3bR-To-00h"/>
- <connections>
- <outlet property="inAppPreviewSwitch" destination="RHm-Rd-mqd" id="bJE-hN-FxY"/>
- <outlet property="inAppSoundsSwitch" destination="TJZ-Sf-O6a" id="7vw-lB-ZZw"/>
- <outlet property="inAppVibrateSwitch" destination="pef-mK-8be" id="JuQ-NH-no4"/>
- <outlet property="pushGroupSoundCell" destination="XbG-As-U8R" id="Pfu-zB-z0V"/>
- <outlet property="pushGroupSoundLabel" destination="AFn-cS-yu4" id="Xru-nf-oal"/>
- <outlet property="pushGroupSwitch" destination="8lc-Zk-gyS" id="1dY-Wu-7D0"/>
- <outlet property="pushSoundLabel" destination="GKA-0Y-RnP" id="Gwa-WU-1Xw"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="fia-tG-v4N" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2442" y="2912"/>
- </scene>
- <!--Push-Ton-->
- <scene sceneID="DRo-tk-lDy">
- <objects>
- <tableViewController id="Phx-x2-Ggd" customClass="PushSoundViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="D32-Ax-dYd" style="IBUITableViewCellStyleDefault" id="9hh-7D-nOp">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9hh-7D-nOp" id="Fha-gP-uxq">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="D32-Ax-dYd">
- <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Phx-x2-Ggd" id="mP9-YP-eOF"/>
- <outlet property="delegate" destination="Phx-x2-Ggd" id="ndv-Ir-hfx"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Push-Ton" id="022-qx-zgG"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="QeY-qR-4dv" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3068" y="3104"/>
- </scene>
- <!--Ausschlussliste-->
- <scene sceneID="wqf-3S-n3F">
- <objects>
- <tableViewController id="77C-YN-K8y" customClass="SyncExclusionListViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExclusionCell" textLabel="Mxf-oi-QRp" style="IBUITableViewCellStyleDefault" id="4Qx-6f-8cY">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4Qx-6f-8cY" id="nwq-je-jHl">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Mxf-oi-QRp">
- <rect key="frame" x="16" y="0.0" width="344" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="18"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" reuseIdentifier="AddCell" id="prh-UQ-YjS">
- <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="prh-UQ-YjS" id="QAR-w9-aFF">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="PlusButton.png" id="aa8-wa-dpo">
- <rect key="frame" x="15" y="11" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <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">
- <rect key="frame" x="47" y="11" width="255" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="77C-YN-K8y" id="ycu-sf-HhS"/>
- <outlet property="delegate" destination="77C-YN-K8y" id="SDc-gW-FIi"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Ausschlussliste" id="h4A-vg-OB6"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="vWW-iP-9DM" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3068" y="1946"/>
- </scene>
- <!--E-Mail verknüpfen-->
- <scene sceneID="l5d-Rw-IEc">
- <objects>
- <tableViewController id="QYa-wj-UfF" customClass="LinkEmailViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="C6x-Ig-Wrf">
- <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>
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="1Xk-xD-yqQ">
- <rect key="frame" x="0.0" y="35" width="375" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Xk-xD-yqQ" id="E9F-9Q-tzr">
- <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Ihre E-Mail-Adresse" minimumFontSize="17" clearButtonMode="always" id="wBP-jq-sAz">
- <rect key="frame" x="14" y="39" width="349" height="34"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="20"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="emailAddress" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <action selector="saveAction:" destination="QYa-wj-UfF" eventType="editingDidEndOnExit" id="eIv-LE-rgN"/>
- </connections>
- </textField>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="E-Mail-Adresse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="myc-qo-tN6">
- <rect key="frame" x="15" y="11" width="294" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="QYa-wj-UfF" id="O02-Ou-aJp"/>
- <outlet property="delegate" destination="QYa-wj-UfF" id="MCg-d2-DxN"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="E-Mail verknüpfen" id="2NV-Wg-po2">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="pWS-hq-fg0">
- <connections>
- <action selector="cancelAction:" destination="QYa-wj-UfF" id="cJS-1p-sJ3"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="Mti-zj-akb">
- <connections>
- <action selector="saveAction:" destination="QYa-wj-UfF" id="IBg-jA-q0G"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="emailTextField" destination="wBP-jq-sAz" id="15h-89-WQ1"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="J44-bd-DuA" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="4791" y="2912"/>
- </scene>
- <!--Nickname-->
- <scene sceneID="rkn-AV-9ja">
- <objects>
- <tableViewController id="3Ka-Iq-ckG" customClass="PushNameViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="sdp-VL-j5M">
- <string key="footerTitle">Der Nickname wird in Push-Benachrichtungen von Ihnen eingesetzt. Wir empfehlen, nur Ihren Vornamen oder ein Pseudonym zu verwenden.</string>
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="uVA-G0-69Y">
- <rect key="frame" x="0.0" y="35" width="375" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uVA-G0-69Y" id="BhV-s3-58Y">
- <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Ihr Nickname" minimumFontSize="17" clearButtonMode="always" id="pfX-nx-dys">
- <rect key="frame" x="13" y="39" width="350" height="34"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="20"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="words" autocorrectionType="no" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <action selector="saveAction:" destination="3Ka-Iq-ckG" eventType="editingDidEndOnExit" id="JIk-ib-Ro2"/>
- <outlet property="delegate" destination="3Ka-Iq-ckG" id="Osu-sO-iQZ"/>
- </connections>
- </textField>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nickname" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="gGZ-U4-LbT">
- <rect key="frame" x="15" y="11" width="268" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="3Ka-Iq-ckG" id="n3o-wI-HMe"/>
- <outlet property="delegate" destination="3Ka-Iq-ckG" id="CWB-KT-fiC"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Nickname" id="dNk-Ua-Fm2">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="Vu6-wK-6ZO">
- <connections>
- <action selector="cancelAction:" destination="3Ka-Iq-ckG" id="GlV-xo-Gw2"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="Cit-3C-pId">
- <connections>
- <action selector="saveAction:" destination="3Ka-Iq-ckG" id="gzP-4H-3hR"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="pushNameTextField" destination="pfX-nx-dys" id="ENh-Q6-3KA"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="cbj-Hx-SFu" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5278" y="1005"/>
- </scene>
- <!--Neuer Kontakt-->
- <scene sceneID="VLu-R9-fjo">
- <objects>
- <tableViewController id="bcN-Ct-OaD" customClass="NewScannedContactViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" id="DOF-uj-3Fc">
- <rect key="frame" x="0.0" y="0.0" width="375" height="90"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="vVr-Sj-fJm">
- <rect key="frame" x="90" y="32" width="247" height="25"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" adjustsImageWhenDisabled="NO" lineBreakMode="middleTruncation" id="z0R-2s-fbs">
- <rect key="frame" x="11" y="15" width="66" height="66"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
- <state key="normal" image="unknown-person-56.png">
- <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <state key="highlighted">
- <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- </button>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="ljc-gO-9Hd">
- <rect key="frame" x="345" y="34" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="0.0" minY="5" maxX="0.0" maxY="-5"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
- <state key="normal">
- <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <state key="highlighted">
- <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <segue destination="B4x-zQ-paX" kind="push" identifier="EditName" id="DIb-qz-hrs"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <sections>
- <tableViewSection id="hid-mP-yqG">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Cdn-Kp-IS7">
- <rect key="frame" x="0.0" y="90" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Cdn-Kp-IS7" id="hLi-10-QMB">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Threema ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HyL-3h-V50">
- <rect key="frame" x="15" y="11" width="169" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="221" y="11" width="137" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="Cyg-Ay-24d" customClass="KeyFingerprintCell">
- <rect key="frame" x="0.0" y="134" width="375" height="65"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Cyg-Ay-24d" id="bSY-YH-2UE">
- <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Schlüssel-Fingerabdruck" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="yV8-s4-QCa">
- <rect key="frame" x="15" y="11" width="277" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <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">
- <rect key="frame" x="14" y="34" width="350" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="fingerprintLabel" destination="w7I-fn-WgV" id="cvZ-QD-pQa"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Aed-tu-6pe" customClass="VerificationLevelCell">
- <rect key="frame" x="0.0" y="199" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Aed-tu-6pe" id="di1-EX-iXJ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sicherheitsstufe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="BZD-JQ-d5y">
- <rect key="frame" x="15" y="11" width="211" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="dh6-P2-gpG">
- <rect key="frame" x="304" y="16" width="48" height="11"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="levelImage" destination="dh6-P2-gpG" id="hP1-XL-Lls"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="kqn-ag-dj2">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="eOy-rx-zHg">
- <rect key="frame" x="0.0" y="263" width="375" height="65"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="eOy-rx-zHg" id="DXX-JY-KD5">
- <rect key="frame" x="0.0" y="0.0" width="342" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Mit Kontakt verknüpfen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="otC-iO-wzt">
- <rect key="frame" x="15" y="11" width="270" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="John Doe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="iJa-K2-2uc">
- <rect key="frame" x="14" y="34" width="315" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="bcN-Ct-OaD" id="ipn-iV-5Ib"/>
- <outlet property="delegate" destination="bcN-Ct-OaD" id="EUy-ek-oeQ"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Neuer Kontakt" id="BAB-op-TwI">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="azp-gT-Imw">
- <connections>
- <action selector="cancel:" destination="bcN-Ct-OaD" id="LV1-iu-ccE"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="yh8-Dg-I1o">
- <connections>
- <action selector="save:" destination="bcN-Ct-OaD" id="YqD-KL-VXp"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="contactImage" destination="z0R-2s-fbs" id="m7d-8n-iZi"/>
- <outlet property="editNameButton" destination="ljc-gO-9Hd" id="GGi-YL-zeX"/>
- <outlet property="headerView" destination="DOF-uj-3Fc" id="jV3-vz-jKR"/>
- <outlet property="identityLabel" destination="UZL-DO-9Jw" id="jmo-Q5-z3S"/>
- <outlet property="keyFingerprintCell" destination="Cyg-Ay-24d" id="bOb-Fb-EKZ"/>
- <outlet property="linkToContactCell" destination="eOy-rx-zHg" id="Yrp-YK-4fH"/>
- <outlet property="linkedContactNameLabel" destination="iJa-K2-2uc" id="ggG-bA-XqH"/>
- <outlet property="nameLabel" destination="vVr-Sj-fJm" id="3ry-aw-0pA"/>
- <outlet property="verificationLevelCell" destination="Aed-tu-6pe" id="7pL-hs-EeF"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="jtL-yP-Df5" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="6191" y="952"/>
- </scene>
- <!--Gruppendetails-->
- <scene sceneID="0Bo-NM-iRc">
- <objects>
- <tableViewController storyboardIdentifier="groupDetailsViewController" id="Ms8-he-mHa" customClass="GroupDetailsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" id="6x8-hM-L5f">
- <rect key="frame" x="0.0" y="0.0" width="375" height="102"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Creator: Name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="cNf-3j-eOO" userLabel="Creator">
- <rect key="frame" x="110" y="59" width="225" height="25"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- <imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="unknown-group-56.png" id="esF-fQ-ZaG">
- <rect key="frame" x="12" y="16" width="84" height="84"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="NJS-s6-F65">
- <rect key="frame" x="341" y="47" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <state key="normal">
- <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- </button>
- <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">
- <rect key="frame" x="110" y="32" width="225" height="25"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <prototypes>
- <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">
- <rect key="frame" x="0.0" y="157.5" width="375" height="60"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Uo2-o4-j8V" id="pmm-iT-OFC">
- <rect key="frame" x="0.0" y="0.0" width="342" height="59.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-48.png" id="wOG-v3-9L7">
- <rect key="frame" x="11" y="6" width="48" height="48"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="John Doe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="g8r-Dc-Sp0" customClass="ContactNameLabel">
- <rect key="frame" x="68" y="19" width="248" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="contactImage" destination="wOG-v3-9L7" id="iQL-ko-Yyb"/>
- <outlet property="nameLabel" destination="g8r-Dc-Sp0" id="2F6-SG-pDK"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="AddMemberCell" rowHeight="44" id="fC4-24-uG5" customClass="AddMemberCell">
- <rect key="frame" x="0.0" y="217.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fC4-24-uG5" id="AKi-Qr-4oL">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="PlusButton.png" id="4yk-L5-gn8">
- <rect key="frame" x="15" y="11" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <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">
- <rect key="frame" x="47" y="11" width="232" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="addLabel" destination="AHX-FD-Cmx" id="gY6-Om-C45"/>
- <outlet property="plusImage" destination="4yk-L5-gn8" id="Ge5-9A-2FU"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SyncCell" rowHeight="44" id="xXC-Dv-KXG" customClass="GroupSyncCell">
- <rect key="frame" x="0.0" y="261.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xXC-Dv-KXG" id="2cg-ld-dil">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="759-refresh-2.png" id="fb0-Jl-ahI">
- <rect key="frame" x="15" y="11" width="22" height="22"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- </imageView>
- <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">
- <rect key="frame" x="47" y="11" width="232" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="syncGroupImageView" destination="fb0-Jl-ahI" id="ftZ-c1-57P"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="SendMessageCell" textLabel="fJh-mN-bfb" style="IBUITableViewCellStyleDefault" id="CS9-Sh-lQN">
- <rect key="frame" x="0.0" y="305.5" width="375" height="64"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CS9-Sh-lQN" id="6kA-0a-tpf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Nachricht senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="fJh-mN-bfb">
- <rect key="frame" x="16" y="0.0" width="344" height="64"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <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">
- <rect key="frame" x="0.0" y="369.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rE8-9I-AaV" id="Mtk-qb-hL2">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Chat per E-Mail senden" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="dyI-k8-1HL">
- <rect key="frame" x="16" y="0.0" width="344" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="LeaveGroupCell" textLabel="74M-ip-a37" style="IBUITableViewCellStyleDefault" id="gpp-XW-9pS">
- <rect key="frame" x="0.0" y="413.5" width="375" height="64"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gpp-XW-9pS" id="KAV-n6-XbO">
- <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Gruppe verlassen" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="74M-ip-a37">
- <rect key="frame" x="16" y="0.0" width="344" height="64"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="1" green="0.14489134100141676" blue="0.028320687089866792" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Ms8-he-mHa" id="Wjd-4D-frU"/>
- <outlet property="delegate" destination="Ms8-he-mHa" id="3W6-xU-yBi"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Gruppendetails" id="oEX-1h-I2a"/>
- <connections>
- <outlet property="creatorLabel" destination="cNf-3j-eOO" id="Xhd-5v-iXo"/>
- <outlet property="disclosureButton" destination="NJS-s6-F65" id="PFJ-aA-xpz"/>
- <outlet property="headerView" destination="6x8-hM-L5f" id="H9T-VK-mXg"/>
- <outlet property="imageView" destination="esF-fQ-ZaG" id="DBT-D1-xKT"/>
- <outlet property="nameLabel" destination="Jri-Jp-Hpu" id="cYZ-Ef-jzA"/>
- <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="oPU-me-pkQ"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="PFS-PI-sZe" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2569" y="187"/>
- </scene>
- <!--Sicherheitsstufe-->
- <scene sceneID="X1e-I4-oAv">
- <objects>
- <viewController id="BHJ-uI-yhd" customClass="VerificationViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="IK2-gw-H44">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" id="nk0-Pv-adz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <subviews>
- <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" text="Die Punkte geben die Vertrauensstufe für einen Kontakt an." id="ZUs-Jj-igv">
- <rect key="frame" x="12" y="18" width="341" height="60"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
- </textView>
- <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">
- <rect key="frame" x="84" y="88" width="269" height="90"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-1.png" id="iDJ-jh-Gt9">
- <rect key="frame" x="18" y="196" width="50" height="12"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <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">
- <rect key="frame" x="84" y="192" width="269" height="90"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-0.png" id="GFO-oV-PP3">
- <rect key="frame" x="18" y="300" width="50" height="12"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <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">
- <rect key="frame" x="84" y="296" width="269" height="90"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="JV7-wB-ei5">
- <rect key="frame" x="18" y="92" width="50" height="12"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-3.png" id="qY0-DT-vWa">
- <rect key="frame" x="18" y="403" width="50" height="12"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <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">
- <rect key="frame" x="84" y="399" width="269" height="63"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </scrollView>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Sicherheitsstufe" id="RYr-oG-d5j"/>
- <nil key="simulatedBottomBarMetrics"/>
- <connections>
- <outlet property="descriptionTextView" destination="ZUs-Jj-igv" id="GjV-od-Ldm"/>
- <outlet property="imageLevel0" destination="GFO-oV-PP3" id="CmD-kj-AXc"/>
- <outlet property="imageLevel1" destination="iDJ-jh-Gt9" id="VAS-hw-WXf"/>
- <outlet property="imageLevel2" destination="JV7-wB-ei5" id="owp-g3-SWf"/>
- <outlet property="imageLevel3" destination="qY0-DT-vWa" id="cDe-Z5-mqF"/>
- <outlet property="labelLevel0" destination="1xB-q0-ZXX" id="u8h-UT-7bx"/>
- <outlet property="labelLevel1" destination="Y9L-O2-c5C" id="Nwp-3c-C5r"/>
- <outlet property="labelLevel2" destination="Zxb-Je-9CC" id="T4F-md-SLa"/>
- <outlet property="labelLevel3" destination="Dkl-lv-Gfl" id="XNW-9F-dfu"/>
- <outlet property="scrollView" destination="nk0-Pv-adz" id="tHE-oa-v06"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="O9J-dO-Gby" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3056" y="-94"/>
- </scene>
- <!--Kontakt hinzufügen-->
- <scene sceneID="oOX-bu-bWV">
- <objects>
- <tableViewController id="G1V-ju-hH8" customClass="AddContactViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="72X-QI-1f3">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="89" id="al9-Xu-cio">
- <rect key="frame" x="0.0" y="35" width="375" height="89"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="al9-Xu-cio" id="3J9-nj-Hgy">
- <rect key="frame" x="0.0" y="0.0" width="375" height="88.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="ID" minimumFontSize="17" id="YoS-Np-Z37">
- <rect key="frame" x="14" y="42" width="344" height="34"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="28"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="allCharacters" autocorrectionType="no" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <outlet property="delegate" destination="G1V-ju-hH8" id="3rH-1t-iUw"/>
- </connections>
- </textField>
- <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">
- <rect key="frame" x="15" y="11" width="268" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="e9k-VH-lsl">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="144" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="cdb-1L-fZu" id="xik-ar-cyW">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="ID scannen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="YPC-ic-pTa">
- <rect key="frame" x="54" y="0.0" width="286" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="86-camera.png" highlightedImage="86-camera.png" id="BKc-YV-enp">
- <rect key="frame" x="16" y="12" width="23" height="18"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="xRZ-tM-3dS" style="IBUITableViewCellStyleDefault" id="Tr4-JV-PPU">
- <rect key="frame" x="0.0" y="188" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Tr4-JV-PPU" id="6SY-iN-gCj">
- <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Freunde einladen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="xRZ-tM-3dS">
- <rect key="frame" x="16" y="0.0" width="324" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="G1V-ju-hH8" id="lOd-gQ-aA4"/>
- <outlet property="delegate" destination="G1V-ju-hH8" id="prm-rV-y9u"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Kontakt hinzufügen" id="Eq0-ED-f11">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="1WQ-02-3J0">
- <connections>
- <action selector="cancelAction:" destination="G1V-ju-hH8" id="4tc-43-LcQ"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="VEq-T8-yyu">
- <connections>
- <action selector="doneAction:" destination="G1V-ju-hH8" id="TMy-Sd-G9r"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="identityTextField" destination="YoS-Np-Z37" id="h0l-zX-7fe"/>
- <outlet property="scanIdentityCell" destination="cdb-1L-fZu" id="TWi-lx-If4"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="WWb-st-0qa" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2534" y="-1158"/>
- </scene>
- <!--Animated Navigation Controller-->
- <scene sceneID="VaV-F2-hej">
- <objects>
- <navigationController id="jkA-kt-EVh" customClass="AnimatedNavigationController" sceneMemberID="viewController">
- <tabBarItem key="tabBarItem" systemItem="contacts" id="JXW-2V-ftV"/>
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="5Ob-0j-Mcg" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="4Fd-lk-A1K" kind="relationship" relationship="rootViewController" id="yke-Pd-pZG"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="DXi-bE-KsG" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="857" y="-337"/>
- </scene>
- <!--Meine ID-->
- <scene sceneID="Juw-dJ-4IQ">
- <objects>
- <navigationController id="uvv-Ko-dQ8" customClass="MyIdentityNavigationController" sceneMemberID="viewController">
- <tabBarItem key="tabBarItem" title="Meine ID" image="123-id-card.png" id="5lj-oy-IYs"/>
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="ySu-3e-OwE" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="I0k-J8-Vtl" kind="relationship" relationship="rootViewController" id="Ez4-Zw-CQh"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="RxJ-yK-Fe6" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="887" y="1277"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="oa6-Aq-F4t">
- <objects>
- <navigationController storyboardIdentifier="NewScannedContact" id="udX-d0-cyB" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="Q0G-EA-t5Z" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="bcN-Ct-OaD" kind="relationship" relationship="rootViewController" id="MvH-hT-pfP"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Tst-lN-YQp" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5753" y="973"/>
- </scene>
- <!--Chat View Controller-->
- <scene sceneID="0PO-DN-NhL">
- <objects>
- <viewController storyboardIdentifier="chatViewController" autoresizesArchivedViewToFullSize="NO" hidesBottomBarWhenPushed="YES" id="v1R-9K-OZW" customClass="ChatViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="qMd-WF-uDa">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <view contentMode="scaleToFill" id="ZhQ-2Z-mYP">
- <rect key="frame" x="0.0" y="0.0" width="375" height="40"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <subviews>
- <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" id="WuX-yK-0RJ">
- <rect key="frame" x="8" y="4" width="358" height="32"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
- <size key="titleShadowOffset" width="1" height="1"/>
- <state key="normal" title="Vorherige Nachrichten laden">
- <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <state key="highlighted">
- <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </state>
- <connections>
- <action selector="loadEarlierMessagesAction:" destination="v1R-9K-OZW" eventType="touchUpInside" id="IcO-Sz-Dj3"/>
- </connections>
- </button>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" id="uYf-zy-tOB"/>
- <connections>
- <outlet property="chatContentHeader" destination="ZhQ-2Z-mYP" id="7vq-AJ-cwL"/>
- <outlet property="headerView" destination="ZhQ-2Z-mYP" id="zqP-cB-jca"/>
- <outlet property="loadEarlierMessages" destination="WuX-yK-0RJ" id="vcS-wC-de0"/>
- <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="rOK-24-MIK"/>
- <segue destination="FVk-BM-jrL" kind="push" identifier="ShowLocation" id="WV3-3M-WJY"/>
- <segue destination="E7y-fb-wyM" kind="push" identifier="ShowDetails" id="c6z-1E-Rur"/>
- <segue destination="Ms8-he-mHa" kind="push" identifier="ShowGroupInfo" id="iDo-S6-WeN"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="bM3-IQ-bac" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="1874" y="486"/>
- </scene>
- <!--Vorschau-->
- <scene sceneID="ZQM-N7-ABW">
- <objects>
- <viewController storyboardIdentifier="PreviewImage" id="xFf-fm-QrO" customClass="PreviewImageViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="eVy-LW-gwf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" id="94h-MW-FVh">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- </imageView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Vorschau" id="wPu-F7-kf1">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="YCy-tZ-DQg">
- <connections>
- <action selector="cancelAction:" destination="xFf-fm-QrO" id="33e-eE-gCh"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" title="Senden" style="done" id="25C-Te-sfW">
- <connections>
- <action selector="sendAction:" destination="xFf-fm-QrO" id="GMR-ZL-Qz8"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" barStyle="black" prompted="NO"/>
- <connections>
- <outlet property="imageView" destination="94h-MW-FVh" id="15h-Ag-y2z"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="LwV-KW-DFP" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5803" y="-1524"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="I9d-0A-aFE">
- <objects>
- <navigationController storyboardIdentifier="ContactPickerNav" id="X2J-pF-E4b" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="ZlH-8V-PkV" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="OvB-ud-WFO" kind="relationship" relationship="rootViewController" id="ls1-VK-yb6"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="nxw-Dj-CRk" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5197" y="-125"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="D9S-JR-67e">
- <objects>
- <navigationController storyboardIdentifier="VerifyScannedContact" id="c2x-1I-hYh" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="ife-ea-aDH" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="CJa-dK-jp4" kind="relationship" relationship="rootViewController" id="718-Kk-eTH"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="pO8-XU-dTk" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5967" y="1666"/>
- </scene>
- <!--ID überprüft-->
- <scene sceneID="QYY-E3-5fH">
- <objects>
- <tableViewController id="CJa-dK-jp4" customClass="IdentityVerifiedViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableHeaderView" contentMode="scaleToFill" id="QYE-YD-T2a">
- <rect key="frame" x="0.0" y="0.0" width="375" height="90"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="fRK-k7-Yj2">
- <rect key="frame" x="11" y="15" width="66" height="66"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="wV3-0n-mKm">
- <rect key="frame" x="90" y="32" width="265" height="25"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
- <nil key="highlightedColor"/>
- <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <size key="shadowOffset" width="0.0" height="1"/>
- </label>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <view key="tableFooterView" contentMode="scaleToFill" id="XW3-1v-D2N">
- <rect key="frame" x="0.0" y="253" width="375" height="148"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <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">
- <rect key="frame" x="112" y="88" width="280" height="47"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <imageView userInteractionEnabled="NO" alpha="0.69999999999999996" contentMode="scaleToFill" image="verificationbig-2.png" id="sqy-M6-DC0">
- <rect key="frame" x="107" y="31" width="163" height="37"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <sections>
- <tableViewSection id="U03-zs-DLa">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Isx-Cp-ked">
- <rect key="frame" x="0.0" y="90" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Isx-Cp-ked" id="KKa-wH-Eaq">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Threema ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ItP-on-vcR">
- <rect key="frame" x="15" y="11" width="177" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="219" y="11" width="140" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="7ES-9X-FzW" customClass="KeyFingerprintCell">
- <rect key="frame" x="0.0" y="134" width="375" height="65"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="7ES-9X-FzW" id="GiK-bE-pDN">
- <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Schlüssel-Fingerabdruck" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="hBg-1A-bxa">
- <rect key="frame" x="15" y="11" width="277" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <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">
- <rect key="frame" x="13" y="34" width="355" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="15"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="fingerprintLabel" destination="Civ-ss-xfc" id="vTh-pj-KzJ"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Uc3-sE-KSh" customClass="VerificationLevelCell">
- <rect key="frame" x="0.0" y="199" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Uc3-sE-KSh" id="uTT-dl-O1R">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sicherheitsstufe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="YcG-2m-hqt">
- <rect key="frame" x="15" y="11" width="218" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="qSZ-3s-TnW">
- <rect key="frame" x="308" y="16" width="48" height="11"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="levelImage" destination="qSZ-3s-TnW" id="qXu-0g-xTO"/>
- </connections>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="CJa-dK-jp4" id="n4A-Pp-fHy"/>
- <outlet property="delegate" destination="CJa-dK-jp4" id="nqO-dn-tRc"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="ID überprüft" id="sik-yL-35n">
- <barButtonItem key="rightBarButtonItem" systemItem="done" id="StH-Kj-2q2">
- <connections>
- <action selector="done:" destination="CJa-dK-jp4" id="RWR-bW-cRX"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="contactImage" destination="fRK-k7-Yj2" id="fgO-az-Wlx"/>
- <outlet property="identityLabel" destination="Xw9-xE-J2A" id="gVN-xm-7Ja"/>
- <outlet property="keyFingerprintCell" destination="7ES-9X-FzW" id="45a-bu-kgG"/>
- <outlet property="nameLabel" destination="wV3-0n-mKm" id="Xga-Ij-0Xv"/>
- <outlet property="verificationLevelCell" destination="Uc3-sE-KSh" id="a6y-uO-fc4"/>
- <outlet property="verificationLevelImage" destination="sqy-M6-DC0" id="Eze-Qb-R2Q"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="uwR-It-Ztf" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="6415" y="1666"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="YhH-yK-u78">
- <objects>
- <navigationController storyboardIdentifier="AddContactNavigationController" id="f9d-eO-Il0" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="3xB-fy-EQG" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="G1V-ju-hH8" kind="relationship" relationship="rootViewController" id="M0V-He-65Y"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="TMY-VX-QLz" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2118" y="-1158"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="pcJ-SG-F1U">
- <objects>
- <navigationController id="7Bw-bZ-Nl3" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="tTO-Xu-vfc" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="QYa-wj-UfF" kind="relationship" relationship="rootViewController" id="aab-VZ-8dj"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="y6Z-f3-iQg" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="4372" y="2912"/>
- </scene>
- <!--Nummer verknüpfen-->
- <scene sceneID="cwE-WB-aV0">
- <objects>
- <tableViewController id="FTG-53-tLO" customClass="LinkMobileNoViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="GVL-lo-B4c">
- <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>
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="nVN-0d-l2S">
- <rect key="frame" x="0.0" y="35" width="375" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nVN-0d-l2S" id="tsO-er-eBC">
- <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Ihre Telefonnummer" minimumFontSize="17" clearButtonMode="always" id="GiH-ve-alq">
- <rect key="frame" x="15" y="39" width="350" height="34"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="20"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="phonePad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <action selector="saveAction:" destination="FTG-53-tLO" eventType="editingDidEndOnExit" id="p29-wF-bP0"/>
- </connections>
- </textField>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Telefonnummer" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="mI7-lX-IwE">
- <rect key="frame" x="15" y="11" width="294" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="FTG-53-tLO" id="2bs-Cv-IsT"/>
- <outlet property="delegate" destination="FTG-53-tLO" id="36m-vy-E3m"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Nummer verknüpfen" id="yBJ-QE-4Oj">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="Wet-Qt-8aZ">
- <connections>
- <action selector="cancelAction:" destination="FTG-53-tLO" id="MlA-ax-1CJ"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="mKW-aV-Aet">
- <connections>
- <action selector="saveAction:" destination="FTG-53-tLO" id="YTw-P0-vCM"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="mobileNoTextField" destination="GiH-ve-alq" id="Xl9-lQ-LEq"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="T0x-hf-MnI" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5317" y="2310"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="Z63-nW-wvG">
- <objects>
- <navigationController id="L44-Xr-JJu" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="3ET-SO-jDn" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="FTG-53-tLO" kind="relationship" relationship="rootViewController" id="3hw-gz-eJK"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="GK4-Ge-d0d" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="4898" y="2310"/>
- </scene>
- <!--Code eingeben-->
- <scene sceneID="5v0-HU-0As">
- <objects>
- <tableViewController id="mgQ-xL-6Dq" customClass="EnterCodeViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection footerTitle="Number: +41 79 123 45 67" id="kBl-1G-n3b">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="3i6-d7-iVq">
- <rect key="frame" x="0.0" y="35" width="375" height="85"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3i6-d7-iVq" id="3T4-db-lIp">
- <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Code" minimumFontSize="17" clearButtonMode="always" id="vU1-gh-2Ky">
- <rect key="frame" x="11" y="39" width="352" height="38"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <fontDescription key="fontDescription" type="system" pointSize="32"/>
- <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="numberPad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
- <connections>
- <action selector="doneAction:" destination="mgQ-xL-6Dq" eventType="editingDidEndOnExit" id="6bI-jC-2a4"/>
- </connections>
- </textField>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Code eingeben" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jen-Sr-AdH">
- <rect key="frame" x="15" y="11" width="182" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection footerTitle="" id="viU-8v-3Zn">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="160" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="872-Br-rm3" id="cQf-a2-f8b">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Anruf anfordern" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontSizeToFit="NO" id="0qj-v8-SYq">
- <rect key="frame" x="55" y="12" width="96" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="05:00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontSizeToFit="NO" id="LeM-DS-j2t">
- <rect key="frame" x="314" y="12" width="46" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="75-phone.png" highlightedImage="75-phone.png" id="3is-c6-Zld">
- <rect key="frame" x="16" y="9" width="24" height="24"/>
- <autoresizingMask key="autoresizingMask"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Y4O-oA-cpv" style="IBUITableViewCellStyleDefault" id="UYz-hD-Dez">
- <rect key="frame" x="0.0" y="204" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UYz-hD-Dez" id="NXW-eF-zAr">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Überprüfung abbrechen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Y4O-oA-cpv">
- <rect key="frame" x="16" y="0.0" width="344" height="43"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="mgQ-xL-6Dq" id="T3V-UM-tv3"/>
- <outlet property="delegate" destination="mgQ-xL-6Dq" id="aE8-mx-3DG"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Code eingeben" id="avO-96-WCf">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="dyx-sl-uAk">
- <connections>
- <action selector="cancelAction:" destination="mgQ-xL-6Dq" id="oiZ-n0-JJ3"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="sIq-fl-853">
- <connections>
- <action selector="doneAction:" destination="mgQ-xL-6Dq" id="cRw-Uz-qIO"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="callMeCell" destination="872-Br-rm3" id="7FL-ra-oxu"/>
- <outlet property="codeTextField" destination="vU1-gh-2Ky" id="mKm-la-uKf"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="5nz-cQ-Jem" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="4153" y="1394"/>
- </scene>
- <!--Standort-->
- <scene sceneID="WKh-CG-rTy">
- <objects>
- <viewController id="Wkx-66-6GX" customClass="PreviewLocationViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="iQb-3C-dOf">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" mapType="standard" showsUserLocation="YES" id="Je0-Vz-Lkn">
- <rect key="frame" x="0.0" y="0.0" width="375" height="359"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" flexibleMaxY="YES"/>
- <connections>
- <outlet property="delegate" destination="Wkx-66-6GX" id="Ilv-OF-du2"/>
- </connections>
- </mapView>
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="FDN-uT-vuM">
- <rect key="frame" x="0.0" y="361" width="375" height="306"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <view key="tableFooterView" contentMode="scaleToFill" id="scM-AV-qVR">
- <rect key="frame" x="0.0" y="154" width="375" height="89"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="powered-by-google-on-white.png" id="QSD-rS-Xn4">
- <rect key="frame" x="264" y="5" width="104" height="16"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- </imageView>
- <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" editable="NO" id="hXf-no-kDy">
- <rect key="frame" x="8" y="20" width="360" height="62"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="12"/>
- <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
- </textView>
- </subviews>
- </view>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PoiCell" id="gOl-pQ-2il" customClass="PoiTableViewCell">
- <rect key="frame" x="0.0" y="22" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gOl-pQ-2il" id="0cp-mH-50I">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" id="yu5-1d-d0A">
- <rect key="frame" x="15" y="6" width="32" height="32"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- <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">
- <rect key="frame" x="55" y="3" width="311" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="16"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="55" y="21" width="311" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="13"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <connections>
- <outlet property="addressLabel" destination="XKh-pU-f5v" id="dy9-rn-nnO"/>
- <outlet property="iconView" destination="yu5-1d-d0A" id="eRg-z9-R23"/>
- <outlet property="nameLabel" destination="hoT-eO-rmt" id="gM1-nm-DQ0"/>
- </connections>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="NoPlacesFoundCell" id="ZEa-VT-VrF">
- <rect key="frame" x="0.0" y="66" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZEa-VT-VrF" id="xEF-es-Ppz">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="11" width="339" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="italicSystem" pointSize="14"/>
- <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="SpinnerCell" id="t7Z-a3-P0r">
- <rect key="frame" x="0.0" y="110" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="t7Z-a3-P0r" id="u3F-pD-HYF">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" animating="YES" style="gray" id="pQw-UF-py6">
- <rect key="frame" x="174" y="12" width="20" height="20"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </activityIndicatorView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="Wkx-66-6GX" id="ATU-i1-c8v"/>
- <outlet property="delegate" destination="Wkx-66-6GX" id="f3c-vQ-Lpc"/>
- </connections>
- </tableView>
- <searchBar contentMode="redraw" id="ONP-GH-deN">
- <rect key="frame" x="0.0" y="64" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <textInputTraits key="textInputTraits"/>
- <connections>
- <outlet property="delegate" destination="Wkx-66-6GX" id="sJc-Za-kpa"/>
- </connections>
- </searchBar>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Standort" id="eXF-nx-MbG">
- <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="gbL-qc-nD4">
- <connections>
- <action selector="cancelAction:" destination="Wkx-66-6GX" id="3wq-nj-z6i"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" title="Senden" style="done" id="aQb-a9-JtU">
- <connections>
- <action selector="sendAction:" destination="Wkx-66-6GX" id="vj5-3j-sA0"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="attributionTextView" destination="hXf-no-kDy" id="ZVE-xk-cP7"/>
- <outlet property="mapView" destination="Je0-Vz-Lkn" id="b6u-Rt-HOF"/>
- <outlet property="poiTableView" destination="FDN-uT-vuM" id="Be4-BD-mFX"/>
- <outlet property="searchBar" destination="ONP-GH-deN" id="ERR-oq-oiL"/>
- <outlet property="searchDisplayController" destination="8jz-Dp-vbY" id="OEm-2B-jCS"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="cAf-3k-pix" userLabel="First Responder" sceneMemberID="firstResponder"/>
- <searchDisplayController id="8jz-Dp-vbY">
- <connections>
- <outlet property="delegate" destination="Wkx-66-6GX" id="vhx-KY-4H3"/>
- <outlet property="searchBar" destination="ONP-GH-deN" id="s3v-Ff-61c"/>
- <outlet property="searchContentsController" destination="Wkx-66-6GX" id="q31-0q-UTg"/>
- <outlet property="searchResultsDataSource" destination="Wkx-66-6GX" id="tSQ-gI-rCs"/>
- <outlet property="searchResultsDelegate" destination="Wkx-66-6GX" id="zeK-j2-Uf2"/>
- </connections>
- </searchDisplayController>
- </objects>
- <point key="canvasLocation" x="5721" y="-843"/>
- </scene>
- <!--Standort-->
- <scene sceneID="Z2f-4e-iax">
- <objects>
- <viewController id="FVk-BM-jrL" customClass="LocationViewController" sceneMemberID="viewController">
- <view key="view" contentMode="scaleToFill" id="rJc-tG-ypl">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <subviews>
- <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" mapType="standard" id="S8H-J6-Ghl">
- <rect key="frame" x="0.0" y="0.0" width="375" height="623"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <connections>
- <outlet property="delegate" destination="FVk-BM-jrL" id="B0B-6H-r0n"/>
- </connections>
- </mapView>
- <toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="Pwh-dA-MBJ">
- <rect key="frame" x="0.0" y="623" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
- <items>
- <barButtonItem image="947-target-reticle-toolbar.png" id="5k3-jD-RBI">
- <connections>
- <action selector="gotoUserLocationButtonTapped:" destination="FVk-BM-jrL" id="wLI-dZ-HUZ"/>
- </connections>
- </barButtonItem>
- <barButtonItem style="plain" systemItem="flexibleSpace" id="ZKQ-1p-YQv"/>
- <barButtonItem style="plain" id="gQF-5H-Z1H">
- <segmentedControl key="customView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="M1P-ix-V2L">
- <rect key="frame" x="82" y="7.5" width="210" height="29"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <segments>
- <segment title="Standard"/>
- <segment title="Hybrid"/>
- <segment title="Satellit"/>
- </segments>
- <connections>
- <action selector="mapTypeChanged:" destination="FVk-BM-jrL" eventType="valueChanged" id="VxI-Gv-4nf"/>
- </connections>
- </segmentedControl>
- </barButtonItem>
- <barButtonItem style="plain" systemItem="flexibleSpace" id="Oxk-XT-dDa"/>
- <barButtonItem image="940-pin-toolbar.png" id="C0u-5z-beZ">
- <connections>
- <action selector="gotoLocationButtonTapped:" destination="FVk-BM-jrL" id="UbN-h8-KQu"/>
- </connections>
- </barButtonItem>
- <barButtonItem width="4" style="plain" systemItem="fixedSpace" id="YBk-mo-fhm"/>
- </items>
- </toolbar>
- </subviews>
- <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </view>
- <navigationItem key="navigationItem" title="Standort" id="uA6-FU-2ms">
- <barButtonItem key="rightBarButtonItem" systemItem="action" id="g63-mL-9aV">
- <connections>
- <action selector="actionButton:" destination="FVk-BM-jrL" id="k7Z-FE-B7H"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="mapTypeControl" destination="M1P-ix-V2L" id="SYk-3D-PWa"/>
- <outlet property="mapView" destination="S8H-J6-Ghl" id="9CB-fL-wrH"/>
- </connections>
- </viewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="imr-ga-5Ay" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3190" y="574"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="T0c-rO-0aC">
- <objects>
- <navigationController id="wPu-1J-vpq" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="3vI-kR-Vy4" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="mgQ-xL-6Dq" kind="relationship" relationship="rootViewController" id="IHh-4d-k73"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="20Z-22-fYk" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3614" y="1394"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="1Tf-5Q-14e">
- <objects>
- <navigationController id="1K5-up-8kR" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="RJ5-Lc-a2K" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="3Ka-Iq-ckG" kind="relationship" relationship="rootViewController" id="U7x-fc-44G"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="dxI-LE-gWO" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="4840" y="1005"/>
- </scene>
- <!--Backup-->
- <scene sceneID="aZM-S6-hXI">
- <objects>
- <tableViewController storyboardIdentifier="BackupIdentityViewController" id="gAo-8A-eYi" customClass="BackupIdentityViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <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">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="62" id="e3O-9W-VlG">
- <rect key="frame" x="0.0" y="35" width="375" height="62"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="e3O-9W-VlG" id="Sxn-kq-jG9">
- <rect key="frame" x="0.0" y="0.0" width="375" height="61.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="9" width="210" height="43"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="jvu-Hd-FqV">
- <rect key="frame" x="302" y="14" width="52" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="phoneBackupSwitchChanged:" destination="gAo-8A-eYi" eventType="valueChanged" id="oB9-I2-kIE"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection id="dgK-0J-UrZ">
- <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 & Einfügen an einem geeigneten Ort ablegen, sich selber per E-Mail senden oder den QR-Code mit einem anderen Gerät scannen.</string>
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="197" id="CCC-bg-9EV">
- <rect key="frame" x="0.0" y="169" width="375" height="197"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CCC-bg-9EV" id="6vo-th-Uu5">
- <rect key="frame" x="0.0" y="0.0" width="375" height="196.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Ihr ID-Backup" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ZIq-dn-JdH">
- <rect key="frame" x="15" y="11" width="268" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- <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">
- <rect key="frame" x="15" y="44" width="285" height="136"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
- <fontDescription key="fontDescription" name="Courier" family="Courier" pointSize="22"/>
- <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="236" id="i0e-YI-l7h">
- <rect key="frame" x="0.0" y="366" width="375" height="236"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="i0e-YI-l7h" id="QPu-lW-7f1">
- <rect key="frame" x="0.0" y="0.0" width="375" height="235.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="kRn-kl-WMg">
- <rect key="frame" x="86" y="18" width="200" height="200"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
- </imageView>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="gAo-8A-eYi" id="se1-gl-h6d"/>
- <outlet property="delegate" destination="gAo-8A-eYi" id="6gX-95-2Ir"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Backup" id="tUV-iz-VQc">
- <barButtonItem key="leftBarButtonItem" systemItem="action" id="6rx-8S-8dN">
- <connections>
- <action selector="actionAction:" destination="gAo-8A-eYi" id="HoY-DV-TVY"/>
- </connections>
- </barButtonItem>
- <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="BHs-xY-jVH">
- <connections>
- <action selector="doneAction:" destination="gAo-8A-eYi" id="sPG-bB-UgV"/>
- </connections>
- </barButtonItem>
- </navigationItem>
- <connections>
- <outlet property="identityBackupLabel" destination="UbM-As-itV" id="snU-Nd-bbt"/>
- <outlet property="phoneBackupSwitch" destination="jvu-Hd-FqV" id="Ohm-4f-7pv"/>
- <outlet property="qrImageView" destination="kRn-kl-WMg" id="UpV-b7-z41"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="b8h-ot-G05" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5721" y="4167"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="6uV-Dd-70q">
- <objects>
- <navigationController storyboardIdentifier="PreviewImageNav" id="DJG-Qa-Yg3" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="npS-lz-iH9" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="xFf-fm-QrO" kind="relationship" relationship="rootViewController" id="q48-tN-sD4"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="pRS-65-HaS" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5278" y="-1524"/>
- </scene>
- <!--Modal Navigation Controller-->
- <scene sceneID="r0I-Pl-MjX">
- <objects>
- <navigationController storyboardIdentifier="PreviewLocationNav" id="e4t-hK-I8I" customClass="ModalNavigationController" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="Y2Y-vI-g7b" customClass="StatusNavigationBar">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="Wkx-66-6GX" kind="relationship" relationship="rootViewController" id="3Lk-6y-Uhp"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="Bn8-Po-FKe" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5197" y="-843"/>
- </scene>
- <!--Nachrichtendetails-->
- <scene sceneID="Cv9-FB-47s">
- <objects>
- <tableViewController id="E7y-fb-wyM" customClass="MessageDetailsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection id="XfY-AL-XVD">
- <cells>
- <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">
- <rect key="frame" x="0.0" y="35" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Bp8-mc-hzQ" id="JeJ-md-9Ou">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Gesendet" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="yWO-wH-mIW">
- <rect key="frame" x="16" y="12" width="36" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="6bQ-Vj-jcf">
- <rect key="frame" x="316" y="12" width="44" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="qNO-eF-kmI" detailTextLabel="kaj-lV-4MC" style="IBUITableViewCellStyleValue1" id="EbI-pt-9xY">
- <rect key="frame" x="0.0" y="79" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EbI-pt-9xY" id="GFp-1y-UAg">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Zugestellt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qNO-eF-kmI">
- <rect key="frame" x="16" y="12" width="72" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="kaj-lV-4MC">
- <rect key="frame" x="316" y="12" width="44" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Zrm-eG-ewD" detailTextLabel="6On-uo-xuU" style="IBUITableViewCellStyleValue1" id="LdK-5e-ndU">
- <rect key="frame" x="0.0" y="123" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LdK-5e-ndU" id="66f-43-i0T">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Gelesen" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Zrm-eG-ewD">
- <rect key="frame" x="16" y="12" width="39" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="6On-uo-xuU">
- <rect key="frame" x="316" y="12" width="44" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="VRy-nm-s0X" detailTextLabel="5Ca-aK-dv0" style="IBUITableViewCellStyleValue1" id="jhc-3O-3ED">
- <rect key="frame" x="0.0" y="167" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jhc-3O-3ED" id="3lf-c1-KWQ">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Bestätigt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="VRy-nm-s0X">
- <rect key="frame" x="16" y="12" width="113" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="5Ca-aK-dv0">
- <rect key="frame" x="316" y="12" width="44" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="E7y-fb-wyM" id="LdU-3k-7vK"/>
- <outlet property="delegate" destination="E7y-fb-wyM" id="gPG-RT-yhf"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Nachrichtendetails" id="LsJ-Ts-xZd"/>
- <connections>
- <outlet property="ackDateLabel" destination="5Ca-aK-dv0" id="p8M-Jl-onh"/>
- <outlet property="deliveredDateLabel" destination="kaj-lV-4MC" id="2F5-Cf-6vI"/>
- <outlet property="readDateLabel" destination="6On-uo-xuU" id="Q6N-Ru-waC"/>
- <outlet property="sendDateLabel" destination="6bQ-Vj-jcf" id="Qcr-nH-KwS"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="dXE-vh-e84" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2598" y="964"/>
- </scene>
- <!--Videoqualität-->
- <scene sceneID="aFo-Qe-zRl">
- <objects>
- <tableViewController id="UHC-G1-hob" customClass="VideoQualityViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <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">
- <rect key="frame" x="0.0" y="55.5" width="375" height="56"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oKE-y5-x0h" id="xQQ-sB-6dU">
- <rect key="frame" x="0.0" y="0.0" width="336" height="55.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Title" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ZSt-Jr-TL7">
- <rect key="frame" x="16" y="9" width="34" height="20"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Subtitle" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Bw0-HM-0jN">
- <rect key="frame" x="16" y="29" width="50" height="17"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="14"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <sections/>
- <connections>
- <outlet property="dataSource" destination="UHC-G1-hob" id="8kH-3Y-7mn"/>
- <outlet property="delegate" destination="UHC-G1-hob" id="yfY-GG-4ld"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Videoqualität" id="WUF-zB-hCc"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="ebK-CV-Yu7" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3131" y="6517"/>
- </scene>
- <!--Erweitert-->
- <scene sceneID="m8L-Up-WdY">
- <objects>
- <tableViewController id="7pH-aa-DuY" customClass="AdvancedSettingsViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <sections>
- <tableViewSection headerTitle="Netzwerk" footerTitle="" id="MvA-PP-dAv">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="7Ge-DP-BoR">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="7Ge-DP-BoR" id="10X-8Z-M5L">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="IPv6" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="tMC-r1-Kb2">
- <rect key="frame" x="15" y="11" width="224" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="Kwd-Bj-mMv">
- <rect key="frame" x="306" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="enableIPv6Changed:" destination="7pH-aa-DuY" eventType="valueChanged" id="xnc-47-urN"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="GGc-PA-VMc">
- <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="GGc-PA-VMc" id="ARP-KA-vmC">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <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">
- <rect key="frame" x="15" y="11" width="224" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="EO3-ji-4bE">
- <rect key="frame" x="306" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="backgroundProcessingChanged:" destination="7pH-aa-DuY" eventType="valueChanged" id="7RE-UT-bug"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Support-Informationen" footerTitle="" id="JkJ-JL-iTc">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="MvP-CZ-MOx">
- <rect key="frame" x="0.0" y="199" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="MvP-CZ-MOx" id="ZUV-MA-drN">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Push Token" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ghb-GB-r7T">
- <rect key="frame" x="15" y="11" width="182" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <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">
- <rect key="frame" x="141" y="11" width="216" height="21"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </cells>
- </tableViewSection>
- <tableViewSection headerTitle="Validierungs-Log" id="cRN-dg-OxE">
- <cells>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="CxY-UP-JRx">
- <rect key="frame" x="0.0" y="291" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CxY-UP-JRx" id="XOT-TF-sxN">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Validierungs-Log" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ekf-QV-s7L">
- <rect key="frame" x="15" y="11" width="231" height="21"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="W5d-6Q-TNI">
- <rect key="frame" x="306" y="6" width="50" height="31"/>
- <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
- <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
- <connections>
- <action selector="validationLoggingChanged:" destination="7pH-aa-DuY" eventType="valueChanged" id="SwG-dN-USH"/>
- </connections>
- </switch>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="G71-r7-8ej" detailTextLabel="0Gd-td-Hl4" style="IBUITableViewCellStyleValue1" id="drp-ye-qsW">
- <rect key="frame" x="0.0" y="335" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="drp-ye-qsW" id="8dS-dp-A4M">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Grösse" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="G71-r7-8ej">
- <rect key="frame" x="16" y="12" width="65" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <nil key="highlightedColor"/>
- </label>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="0 KB" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0Gd-td-Hl4">
- <rect key="frame" x="324" y="12" width="36" height="21"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="qlo-Qb-yd6" style="IBUITableViewCellStyleDefault" id="1B4-9s-hrY">
- <rect key="frame" x="0.0" y="379" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1B4-9s-hrY" id="7xp-ek-Bwb">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Log per E-Mail senden" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qlo-Qb-yd6">
- <rect key="frame" x="16" y="0.0" width="344" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="T39-4t-56X" style="IBUITableViewCellStyleDefault" id="Z5z-kF-JVr">
- <rect key="frame" x="0.0" y="423" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Z5z-kF-JVr" id="xIa-OY-tVy">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Log löschen" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="T39-4t-56X">
- <rect key="frame" x="16" y="0.0" width="344" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- <accessibility key="accessibilityConfiguration">
- <accessibilityTraits key="traits" button="YES"/>
- </accessibility>
- </tableViewCell>
- </cells>
- </tableViewSection>
- </sections>
- <connections>
- <outlet property="dataSource" destination="7pH-aa-DuY" id="gN9-sH-CGC"/>
- <outlet property="delegate" destination="7pH-aa-DuY" id="zbz-f8-vOO"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Erweitert" id="coo-M3-hCO"/>
- <connections>
- <outlet property="backgroundProcessingSwitch" destination="EO3-ji-4bE" id="vTU-fo-rCr"/>
- <outlet property="enableIPv6Switch" destination="Kwd-Bj-mMv" id="YGn-xZ-Waz"/>
- <outlet property="logSizeLabel" destination="0Gd-td-Hl4" id="09Z-Ya-Ru7"/>
- <outlet property="pushTokenLabel" destination="WrW-pc-wdK" id="NLX-oi-MsO"/>
- <outlet property="validationLoggingSwitch" destination="W5d-6Q-TNI" id="rdS-sW-sG6"/>
- </connections>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="61G-Op-5vx" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="2430" y="4415"/>
- </scene>
- <!--Push-Gruppen-Ton-->
- <scene sceneID="dC2-Lc-8eq">
- <objects>
- <tableViewController id="dtN-aU-IlJ" customClass="PushSoundViewController" sceneMemberID="viewController">
- <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">
- <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
- <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
- <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <prototypes>
- <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="cV8-fI-rLR" style="IBUITableViewCellStyleDefault" id="tqT-5p-fSB">
- <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="tqT-5p-fSB" id="Uzp-4m-Oqx">
- <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <subviews>
- <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sound name" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="cV8-fI-rLR">
- <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
- <autoresizingMask key="autoresizingMask"/>
- <fontDescription key="fontDescription" type="system" pointSize="17"/>
- <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
- <nil key="highlightedColor"/>
- </label>
- </subviews>
- </tableViewCellContentView>
- </tableViewCell>
- </prototypes>
- <connections>
- <outlet property="dataSource" destination="dtN-aU-IlJ" id="88v-S1-2l3"/>
- <outlet property="delegate" destination="dtN-aU-IlJ" id="b8T-eP-dfC"/>
- </connections>
- </tableView>
- <navigationItem key="navigationItem" title="Push-Gruppen-Ton" id="HIF-qW-5kr"/>
- </tableViewController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="E4k-QX-Ieo" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="3074" y="2519"/>
- </scene>
- <!--Navigation Controller-->
- <scene sceneID="pMC-N0-lCt">
- <objects>
- <navigationController automaticallyAdjustsScrollViewInsets="NO" id="kOn-02-WX5" sceneMemberID="viewController">
- <toolbarItems/>
- <navigationBar key="navigationBar" contentMode="scaleToFill" id="aqn-Eo-p5r">
- <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
- <autoresizingMask key="autoresizingMask"/>
- </navigationBar>
- <nil name="viewControllers"/>
- <connections>
- <segue destination="gAo-8A-eYi" kind="relationship" relationship="rootViewController" id="f97-Kd-K1p"/>
- </connections>
- </navigationController>
- <placeholder placeholderIdentifier="IBFirstResponder" id="id9-wn-aP0" userLabel="First Responder" sceneMemberID="firstResponder"/>
- </objects>
- <point key="canvasLocation" x="5231" y="4167"/>
- </scene>
- </scenes>
- <resources>
- <image name="08-chat.png" width="24" height="22"/>
- <image name="123-id-card.png" width="24" height="17"/>
- <image name="20-gear-2.png" width="26" height="28"/>
- <image name="75-phone.png" width="24" height="24"/>
- <image name="759-refresh-2.png" width="28" height="28"/>
- <image name="86-camera.png" width="23" height="18"/>
- <image name="940-pin-toolbar.png" width="10" height="22"/>
- <image name="947-target-reticle-toolbar.png" width="22" height="22"/>
- <image name="MessageStatusSmall_sent.png" width="18" height="16"/>
- <image name="PlusButton.png" width="22" height="22"/>
- <image name="Typing.png" width="22" height="20"/>
- <image name="WallpaperDefault.png" width="100" height="150"/>
- <image name="powered-by-google-on-white.png" width="104" height="16"/>
- <image name="unknown-group-56.png" width="56" height="56"/>
- <image name="unknown-person-48.png" width="48" height="48"/>
- <image name="unknown-person-56.png" width="56" height="56"/>
- <image name="verification-0.png" width="48" height="11"/>
- <image name="verification-1.png" width="48" height="11"/>
- <image name="verification-2.png" width="48" height="11"/>
- <image name="verification-3.png" width="48" height="11"/>
- <image name="verification32-2.png" width="32" height="8"/>
- <image name="verificationbig-2.png" width="163" height="37"/>
- </resources>
- <simulatedMetricsContainer key="defaultSimulatedMetrics">
- <simulatedStatusBarMetrics key="statusBar"/>
- <simulatedOrientationMetrics key="orientation"/>
- <simulatedScreenMetrics key="destination" type="retina4_7.fullscreen"/>
- </simulatedMetricsContainer>
- <inferredMetricsTieBreakers>
- <segue reference="rOK-24-MIK"/>
- </inferredMetricsTieBreakers>
- </document>
|