MainStoryboard.storyboard 465 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11762" systemVersion="16C67" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" colorMatched="YES" initialViewController="4">
  3. <dependencies>
  4. <plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11757"/>
  5. <capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
  6. </dependencies>
  7. <scenes>
  8. <!--Main Tab Bar Controller-->
  9. <scene sceneID="15">
  10. <objects>
  11. <tabBarController storyboardIdentifier="tabBarController" id="4" customClass="MainTabBarController" sceneMemberID="viewController">
  12. <nil key="simulatedBottomBarMetrics"/>
  13. <tabBar key="tabBar" contentMode="scaleToFill" id="5">
  14. <rect key="frame" x="0.0" y="431" width="320" height="49"/>
  15. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
  16. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  17. </tabBar>
  18. <connections>
  19. <segue destination="jkA-kt-EVh" kind="relationship" relationship="viewControllers" id="78a-91-TLZ"/>
  20. <segue destination="4Fs-j8-Z1S" kind="relationship" relationship="viewControllers" id="mhn-Fn-s9p"/>
  21. <segue destination="uvv-Ko-dQ8" kind="relationship" relationship="viewControllers" id="3w4-zc-fqJ"/>
  22. <segue destination="OHY-cO-A6g" kind="relationship" relationship="viewControllers" id="odg-P3-ril"/>
  23. </connections>
  24. </tabBarController>
  25. <placeholder placeholderIdentifier="IBFirstResponder" id="14" sceneMemberID="firstResponder"/>
  26. </objects>
  27. <point key="canvasLocation" x="242" y="468"/>
  28. </scene>
  29. <!--Réglages-->
  30. <scene sceneID="KqS-on-sEZ">
  31. <objects>
  32. <tableViewController storyboardIdentifier="settingsViewController" id="y1R-kI-4Pp" customClass="SettingsViewController" sceneMemberID="viewController">
  33. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="742-dp-1dh">
  34. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  35. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  36. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  37. <sections>
  38. <tableViewSection id="6H0-fr-XhZ">
  39. <cells>
  40. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="lEn-4H-g7j" style="IBUITableViewCellStyleDefault" id="H4a-Gb-920">
  41. <rect key="frame" x="0.0" y="35" width="375" height="44"/>
  42. <autoresizingMask key="autoresizingMask"/>
  43. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="H4a-Gb-920" id="l8r-uP-mbb">
  44. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  45. <autoresizingMask key="autoresizingMask"/>
  46. <subviews>
  47. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Confidentialité" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="lEn-4H-g7j">
  48. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  49. <autoresizingMask key="autoresizingMask"/>
  50. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  51. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  52. <nil key="highlightedColor"/>
  53. </label>
  54. </subviews>
  55. </tableViewCellContentView>
  56. <connections>
  57. <segue destination="3DT-Cu-DnP" kind="push" id="zeL-bd-5s0"/>
  58. </connections>
  59. </tableViewCell>
  60. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="CDh-bl-cmC" style="IBUITableViewCellStyleDefault" id="cqP-99-7bZ">
  61. <rect key="frame" x="0.0" y="79" width="375" height="44"/>
  62. <autoresizingMask key="autoresizingMask"/>
  63. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="cqP-99-7bZ" id="eIe-5P-bmz">
  64. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  65. <autoresizingMask key="autoresizingMask"/>
  66. <subviews>
  67. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Notifications" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="CDh-bl-cmC">
  68. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  69. <autoresizingMask key="autoresizingMask"/>
  70. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  71. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  72. <nil key="highlightedColor"/>
  73. </label>
  74. </subviews>
  75. </tableViewCellContentView>
  76. <connections>
  77. <segue destination="Qt8-lZ-oDY" kind="push" id="bxe-HQ-JSQ"/>
  78. </connections>
  79. </tableViewCell>
  80. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="eqg-06-XE0" style="IBUITableViewCellStyleDefault" id="teM-wg-NEQ">
  81. <rect key="frame" x="0.0" y="123" width="375" height="44"/>
  82. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  83. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="teM-wg-NEQ" id="Hpe-BZ-Mzu">
  84. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  85. <autoresizingMask key="autoresizingMask"/>
  86. <subviews>
  87. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Affichage des conversations" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="eqg-06-XE0">
  88. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  89. <autoresizingMask key="autoresizingMask"/>
  90. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  91. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  92. <nil key="highlightedColor"/>
  93. </label>
  94. </subviews>
  95. </tableViewCellContentView>
  96. <connections>
  97. <segue destination="2eW-Y2-pa9" kind="push" id="axe-On-Idy"/>
  98. </connections>
  99. </tableViewCell>
  100. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="sZY-9f-Y18" style="IBUITableViewCellStyleDefault" id="mQa-Rh-wqK">
  101. <rect key="frame" x="0.0" y="167" width="375" height="44"/>
  102. <autoresizingMask key="autoresizingMask"/>
  103. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="mQa-Rh-wqK" id="3Ah-6T-9SX">
  104. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  105. <autoresizingMask key="autoresizingMask"/>
  106. <subviews>
  107. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Média" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="sZY-9f-Y18">
  108. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  109. <autoresizingMask key="autoresizingMask"/>
  110. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  111. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  112. <nil key="highlightedColor"/>
  113. </label>
  114. </subviews>
  115. </tableViewCellContentView>
  116. <connections>
  117. <segue destination="MdZ-GK-jas" kind="push" id="j3T-4v-OLT"/>
  118. </connections>
  119. </tableViewCell>
  120. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="GNP-TO-eLx" detailTextLabel="vaO-K3-a0M" style="IBUITableViewCellStyleValue1" id="h3l-TB-vk0">
  121. <rect key="frame" x="0.0" y="211" width="375" height="44"/>
  122. <autoresizingMask key="autoresizingMask"/>
  123. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="h3l-TB-vk0" id="1E6-90-jCb">
  124. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  125. <autoresizingMask key="autoresizingMask"/>
  126. <subviews>
  127. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Verrouillage du code" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GNP-TO-eLx">
  128. <rect key="frame" x="16" y="12" width="115" height="20"/>
  129. <autoresizingMask key="autoresizingMask"/>
  130. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  131. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  132. <nil key="highlightedColor"/>
  133. </label>
  134. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="vaO-K3-a0M">
  135. <rect key="frame" x="296" y="12" width="44" height="20"/>
  136. <autoresizingMask key="autoresizingMask"/>
  137. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  138. <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  139. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  140. </label>
  141. </subviews>
  142. </tableViewCellContentView>
  143. </tableViewCell>
  144. </cells>
  145. </tableViewSection>
  146. <tableViewSection headerTitle="" id="KRJ-pA-Z3a">
  147. <cells>
  148. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Xti-Mb-wdd" detailTextLabel="Qcw-q1-XhM" style="IBUITableViewCellStyleValue1" id="bST-sJ-2dT">
  149. <rect key="frame" x="0.0" y="275" width="375" height="44"/>
  150. <autoresizingMask key="autoresizingMask"/>
  151. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bST-sJ-2dT" id="DEC-oh-GRx">
  152. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  153. <autoresizingMask key="autoresizingMask"/>
  154. <subviews>
  155. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Statut du réseau" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Xti-Mb-wdd">
  156. <rect key="frame" x="16" y="12" width="118" height="20"/>
  157. <autoresizingMask key="autoresizingMask"/>
  158. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  159. <nil key="highlightedColor"/>
  160. </label>
  161. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Connecté" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Qcw-q1-XhM">
  162. <rect key="frame" x="276" y="12" width="84" height="20"/>
  163. <autoresizingMask key="autoresizingMask"/>
  164. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  165. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  166. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  167. </label>
  168. </subviews>
  169. </tableViewCellContentView>
  170. </tableViewCell>
  171. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="GUh-ay-NaP" detailTextLabel="8bH-h3-6LW" style="IBUITableViewCellStyleValue1" id="gRq-MQ-WIL">
  172. <rect key="frame" x="0.0" y="319" width="375" height="44"/>
  173. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  174. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gRq-MQ-WIL" id="gTx-s6-xoP">
  175. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  176. <autoresizingMask key="autoresizingMask"/>
  177. <subviews>
  178. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Version" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GUh-ay-NaP">
  179. <rect key="frame" x="16" y="12" width="57" height="20"/>
  180. <autoresizingMask key="autoresizingMask"/>
  181. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  182. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  183. <nil key="highlightedColor"/>
  184. </label>
  185. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="0.0 (000)" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="8bH-h3-6LW">
  186. <rect key="frame" x="289" y="12" width="71" height="20"/>
  187. <autoresizingMask key="autoresizingMask"/>
  188. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  189. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  190. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  191. </label>
  192. </subviews>
  193. </tableViewCellContentView>
  194. </tableViewCell>
  195. </cells>
  196. </tableViewSection>
  197. <tableViewSection headerTitle="" id="MR4-7N-rxJ">
  198. <cells>
  199. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="rvd-oB-oRT" style="IBUITableViewCellStyleDefault" id="dYC-Cc-Blb">
  200. <rect key="frame" x="0.0" y="383" width="375" height="44"/>
  201. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  202. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dYC-Cc-Blb" id="THy-no-5Mq">
  203. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  204. <autoresizingMask key="autoresizingMask"/>
  205. <subviews>
  206. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Inviter un ami" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="rvd-oB-oRT">
  207. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  208. <autoresizingMask key="autoresizingMask"/>
  209. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  210. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  211. <nil key="highlightedColor"/>
  212. </label>
  213. </subviews>
  214. </tableViewCellContentView>
  215. </tableViewCell>
  216. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="v0T-sr-aCe" style="IBUITableViewCellStyleDefault" id="zrC-JX-e84">
  217. <rect key="frame" x="0.0" y="427" width="375" height="44"/>
  218. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  219. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="zrC-JX-e84" id="2LV-GK-dIz">
  220. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  221. <autoresizingMask key="autoresizingMask"/>
  222. <subviews>
  223. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Threema Channel" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="v0T-sr-aCe">
  224. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  225. <autoresizingMask key="autoresizingMask"/>
  226. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  227. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  228. <nil key="highlightedColor"/>
  229. </label>
  230. </subviews>
  231. </tableViewCellContentView>
  232. </tableViewCell>
  233. </cells>
  234. </tableViewSection>
  235. <tableViewSection headerTitle="" id="FAH-aO-8KP">
  236. <cells>
  237. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="4IP-qY-TLk" style="IBUITableViewCellStyleDefault" id="5A3-C4-gi4">
  238. <rect key="frame" x="0.0" y="491" width="375" height="44"/>
  239. <autoresizingMask key="autoresizingMask"/>
  240. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="5A3-C4-gi4" id="QQO-Ve-9WG">
  241. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  242. <autoresizingMask key="autoresizingMask"/>
  243. <subviews>
  244. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Support" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4IP-qY-TLk">
  245. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  246. <autoresizingMask key="autoresizingMask"/>
  247. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  248. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  249. <nil key="highlightedColor"/>
  250. </label>
  251. </subviews>
  252. </tableViewCellContentView>
  253. <connections>
  254. <segue destination="dET-dz-QOT" kind="push" id="qaB-YZ-IJr"/>
  255. </connections>
  256. </tableViewCell>
  257. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="2Ou-Sd-ynK" style="IBUITableViewCellStyleDefault" id="QZa-h8-Mmz">
  258. <rect key="frame" x="0.0" y="535" width="375" height="44"/>
  259. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  260. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="QZa-h8-Mmz" id="Stj-y8-fhL">
  261. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  262. <autoresizingMask key="autoresizingMask"/>
  263. <subviews>
  264. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Licence" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2Ou-Sd-ynK">
  265. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  266. <autoresizingMask key="autoresizingMask"/>
  267. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  268. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  269. <nil key="highlightedColor"/>
  270. </label>
  271. </subviews>
  272. </tableViewCellContentView>
  273. <connections>
  274. <segue destination="Wea-Ps-HJX" kind="push" id="o8y-Le-WFm"/>
  275. </connections>
  276. </tableViewCell>
  277. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="py0-eN-3Op" style="IBUITableViewCellStyleDefault" id="U3E-Qa-ms3">
  278. <rect key="frame" x="0.0" y="579" width="375" height="44"/>
  279. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  280. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="U3E-Qa-ms3" id="YiK-EX-7f6">
  281. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  282. <autoresizingMask key="autoresizingMask"/>
  283. <subviews>
  284. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Avancé" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="py0-eN-3Op">
  285. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  286. <autoresizingMask key="autoresizingMask"/>
  287. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  288. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  289. <nil key="highlightedColor"/>
  290. </label>
  291. </subviews>
  292. </tableViewCellContentView>
  293. <connections>
  294. <segue destination="7pH-aa-DuY" kind="push" id="QxW-Mk-cjF"/>
  295. </connections>
  296. </tableViewCell>
  297. </cells>
  298. </tableViewSection>
  299. </sections>
  300. <connections>
  301. <outlet property="dataSource" destination="y1R-kI-4Pp" id="ysc-oU-K2m"/>
  302. <outlet property="delegate" destination="y1R-kI-4Pp" id="kYs-kH-2bW"/>
  303. </connections>
  304. </tableView>
  305. <navigationItem key="navigationItem" title="Réglages" id="Wz8-k0-mkY"/>
  306. <connections>
  307. <outlet property="connectionStatusLabel" destination="Qcw-q1-XhM" id="sJY-8D-X6Z"/>
  308. <outlet property="passcodeLockLabel" destination="vaO-K3-a0M" id="nzM-EW-9YO"/>
  309. <outlet property="versionLabel" destination="8bH-h3-6LW" id="vub-bt-62f"/>
  310. </connections>
  311. </tableViewController>
  312. <placeholder placeholderIdentifier="IBFirstResponder" id="zHz-CH-wQl" userLabel="First Responder" sceneMemberID="firstResponder"/>
  313. </objects>
  314. <point key="canvasLocation" x="1491" y="3165"/>
  315. </scene>
  316. <!--Confidentialité-->
  317. <scene sceneID="cIr-nx-zr5">
  318. <objects>
  319. <tableViewController id="3DT-Cu-DnP" customClass="PrivacySettingsViewController" sceneMemberID="viewController">
  320. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="Qp9-F7-Eia">
  321. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  322. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  323. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  324. <sections>
  325. <tableViewSection headerTitle="Contacts" id="AYq-Zn-aPI">
  326. <string key="footerTitle">Tout le monde peut vous envoyer un message. Les nouveaux contacts seront automatiquement ajoutés à l'arrivée de leur premier message.</string>
  327. <cells>
  328. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="18v-MF-Xwf">
  329. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  330. <autoresizingMask key="autoresizingMask"/>
  331. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="18v-MF-Xwf" id="5nW-0a-9bp">
  332. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  333. <autoresizingMask key="autoresizingMask"/>
  334. <subviews>
  335. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Synchroniser les contacts" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="jT9-XX-nfF">
  336. <rect key="frame" x="15" y="11" width="231" height="21"/>
  337. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  338. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  339. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  340. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  341. <nil key="highlightedColor"/>
  342. </label>
  343. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="vuE-72-swA">
  344. <rect key="frame" x="309" y="6" width="51" height="31"/>
  345. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  346. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  347. <connections>
  348. <action selector="syncContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="Ne8-0u-O17"/>
  349. </connections>
  350. </switch>
  351. </subviews>
  352. </tableViewCellContentView>
  353. </tableViewCell>
  354. <tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="2HH-IN-dw7" style="IBUITableViewCellStyleDefault" id="bZC-FQ-Tho">
  355. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  356. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  357. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="bZC-FQ-Tho" id="tcU-5v-uat">
  358. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  359. <autoresizingMask key="autoresizingMask"/>
  360. <subviews>
  361. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Liste d'exclusion de synchro" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2HH-IN-dw7">
  362. <rect key="frame" x="16" y="0.0" width="324" height="43.5"/>
  363. <autoresizingMask key="autoresizingMask"/>
  364. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  365. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  366. <nil key="highlightedColor"/>
  367. </label>
  368. </subviews>
  369. </tableViewCellContentView>
  370. <connections>
  371. <segue destination="77C-YN-K8y" kind="push" id="FsE-ea-5ad"/>
  372. </connections>
  373. </tableViewCell>
  374. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="jeI-hi-SxN">
  375. <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
  376. <autoresizingMask key="autoresizingMask"/>
  377. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jeI-hi-SxN" id="PUz-e0-b1e">
  378. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  379. <autoresizingMask key="autoresizingMask"/>
  380. <subviews>
  381. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Bloquer inconnu" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Tps-qx-ecO">
  382. <rect key="frame" x="14" y="11" width="272" height="21"/>
  383. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  384. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  385. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  386. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  387. <nil key="highlightedColor"/>
  388. </label>
  389. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="HQD-xS-L3t">
  390. <rect key="frame" x="309" y="6" width="51" height="31"/>
  391. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  392. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  393. <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  394. <connections>
  395. <action selector="blockUnknownChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="a5T-sp-aeY"/>
  396. </connections>
  397. </switch>
  398. </subviews>
  399. </tableViewCellContentView>
  400. </tableViewCell>
  401. </cells>
  402. </tableViewSection>
  403. <tableViewSection footerTitle="Select to hide Threema IDs that were inactive for more than 6 months." id="jkG-RT-sd8">
  404. <cells>
  405. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="EqO-2o-voj">
  406. <rect key="frame" x="0.0" y="259.5" width="375" height="44"/>
  407. <autoresizingMask key="autoresizingMask"/>
  408. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EqO-2o-voj" id="ckF-6r-271">
  409. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  410. <autoresizingMask key="autoresizingMask"/>
  411. <subviews>
  412. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Cacher les contacts obsolètes" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="12" adjustsLetterSpacingToFitWidth="YES" id="kDU-7i-Rj2">
  413. <rect key="frame" x="15" y="11" width="231" height="21"/>
  414. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  415. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  416. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  417. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  418. <nil key="highlightedColor"/>
  419. </label>
  420. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" id="kBF-Yp-hJg">
  421. <rect key="frame" x="309" y="6" width="51" height="31"/>
  422. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  423. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  424. <connections>
  425. <action selector="hideStaleContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="hxv-sp-knM"/>
  426. <action selector="syncContactsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="pHK-Mq-Kgt"/>
  427. </connections>
  428. </switch>
  429. </subviews>
  430. </tableViewCellContentView>
  431. </tableViewCell>
  432. </cells>
  433. </tableViewSection>
  434. <tableViewSection headerTitle="Chat" id="Fzt-jY-2Jm">
  435. <cells>
  436. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Gkt-df-am3">
  437. <rect key="frame" x="0.0" y="387.5" width="375" height="44"/>
  438. <autoresizingMask key="autoresizingMask"/>
  439. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Gkt-df-am3" id="Cv8-fS-UX1">
  440. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  441. <autoresizingMask key="autoresizingMask"/>
  442. <subviews>
  443. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Envoyer conf. de lecture" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="r6F-vi-8UO">
  444. <rect key="frame" x="15" y="11" width="231" height="21"/>
  445. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  446. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  447. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  448. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  449. <nil key="highlightedColor"/>
  450. </label>
  451. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="5Fm-bT-q6N">
  452. <rect key="frame" x="309" y="6" width="51" height="31"/>
  453. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  454. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  455. <connections>
  456. <action selector="readReceiptsChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="8Hc-XO-kaM"/>
  457. </connections>
  458. </switch>
  459. </subviews>
  460. </tableViewCellContentView>
  461. </tableViewCell>
  462. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="lrI-DS-1eP">
  463. <rect key="frame" x="0.0" y="431.5" width="375" height="44"/>
  464. <autoresizingMask key="autoresizingMask"/>
  465. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="lrI-DS-1eP" id="692-RF-7gW">
  466. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  467. <autoresizingMask key="autoresizingMask"/>
  468. <subviews>
  469. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Envoyer indic. de frappe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="soD-G3-dWi">
  470. <rect key="frame" x="15" y="11" width="231" height="21"/>
  471. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  472. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  473. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  474. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  475. <nil key="highlightedColor"/>
  476. </label>
  477. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="SnF-xk-cxb">
  478. <rect key="frame" x="309" y="6" width="51" height="31"/>
  479. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  480. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  481. <connections>
  482. <action selector="typingIndicatorChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="KJ8-UY-COs"/>
  483. </connections>
  484. </switch>
  485. </subviews>
  486. </tableViewCellContentView>
  487. </tableViewCell>
  488. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="gxu-hq-LKg">
  489. <rect key="frame" x="0.0" y="475.5" width="375" height="44"/>
  490. <autoresizingMask key="autoresizingMask"/>
  491. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gxu-hq-LKg" id="vMV-Nt-K9m">
  492. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  493. <autoresizingMask key="autoresizingMask"/>
  494. <subviews>
  495. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Choisir les POI" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="eyb-ZP-SVT">
  496. <rect key="frame" x="15" y="11" width="231" height="21"/>
  497. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  498. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  499. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  500. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  501. <nil key="highlightedColor"/>
  502. </label>
  503. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="7fA-XI-jhq">
  504. <rect key="frame" x="309" y="6" width="51" height="31"/>
  505. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  506. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  507. <connections>
  508. <action selector="poiChanged:" destination="3DT-Cu-DnP" eventType="valueChanged" id="GWV-el-wUJ"/>
  509. </connections>
  510. </switch>
  511. </subviews>
  512. </tableViewCellContentView>
  513. </tableViewCell>
  514. </cells>
  515. </tableViewSection>
  516. </sections>
  517. <connections>
  518. <outlet property="dataSource" destination="3DT-Cu-DnP" id="81Z-Af-v31"/>
  519. <outlet property="delegate" destination="3DT-Cu-DnP" id="y7N-8E-FON"/>
  520. </connections>
  521. </tableView>
  522. <navigationItem key="navigationItem" title="Confidentialité" id="fIw-mi-sE8"/>
  523. <connections>
  524. <outlet property="blockUnknownSwitch" destination="HQD-xS-L3t" id="Ira-Qr-d9N"/>
  525. <outlet property="hideStaleContactsSwitch" destination="kBF-Yp-hJg" id="0AS-19-yMP"/>
  526. <outlet property="poiSwitch" destination="7fA-XI-jhq" id="jtK-Tz-fyE"/>
  527. <outlet property="readReceiptsSwitch" destination="5Fm-bT-q6N" id="WBK-fu-D8N"/>
  528. <outlet property="syncContactsSwitch" destination="vuE-72-swA" id="Z9j-Co-HCK"/>
  529. <outlet property="typingIndicatorSwitch" destination="SnF-xk-cxb" id="FLk-07-K7d"/>
  530. </connections>
  531. </tableViewController>
  532. <placeholder placeholderIdentifier="IBFirstResponder" id="FRS-uU-8Vn" userLabel="First Responder" sceneMemberID="firstResponder"/>
  533. </objects>
  534. <point key="canvasLocation" x="2447" y="2113"/>
  535. </scene>
  536. <!--Média-->
  537. <scene sceneID="9n2-JM-W9X">
  538. <objects>
  539. <tableViewController id="MdZ-GK-jas" customClass="MediaSettingsViewController" sceneMemberID="viewController">
  540. <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">
  541. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  542. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  543. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  544. <sections>
  545. <tableViewSection id="bM9-XT-VOT">
  546. <cells>
  547. <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">
  548. <rect key="frame" x="0.0" y="35" width="375" height="44"/>
  549. <autoresizingMask key="autoresizingMask"/>
  550. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="kg0-hd-wkF" id="BWL-gE-2qP">
  551. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  552. <autoresizingMask key="autoresizingMask"/>
  553. <subviews>
  554. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Taille des images" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="dtR-IG-zuv">
  555. <rect key="frame" x="16" y="12" width="84" height="21"/>
  556. <autoresizingMask key="autoresizingMask"/>
  557. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  558. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  559. <nil key="highlightedColor"/>
  560. </label>
  561. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="al2-Js-fb2">
  562. <rect key="frame" x="296" y="12" width="44" height="21"/>
  563. <autoresizingMask key="autoresizingMask"/>
  564. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  565. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  566. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  567. </label>
  568. </subviews>
  569. </tableViewCellContentView>
  570. <connections>
  571. <segue destination="AQR-Vz-MhD" kind="push" id="ojf-XT-fRD"/>
  572. </connections>
  573. </tableViewCell>
  574. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="g4Y-lJ-Iqq" detailTextLabel="Uj2-yb-tVZ" style="IBUITableViewCellStyleValue1" id="xzu-8Q-qMl">
  575. <rect key="frame" x="0.0" y="79" width="375" height="44"/>
  576. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  577. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xzu-8Q-qMl" id="E7u-5R-8mb">
  578. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  579. <autoresizingMask key="autoresizingMask"/>
  580. <subviews>
  581. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Qualité de la vidéo" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="g4Y-lJ-Iqq">
  582. <rect key="frame" x="16" y="12" width="102" height="21"/>
  583. <autoresizingMask key="autoresizingMask"/>
  584. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  585. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  586. <nil key="highlightedColor"/>
  587. </label>
  588. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Uj2-yb-tVZ">
  589. <rect key="frame" x="296" y="12" width="44" height="21"/>
  590. <autoresizingMask key="autoresizingMask"/>
  591. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  592. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  593. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  594. </label>
  595. </subviews>
  596. </tableViewCellContentView>
  597. <connections>
  598. <segue destination="UHC-G1-hob" kind="push" id="q9b-WE-luc"/>
  599. </connections>
  600. </tableViewCell>
  601. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" rowHeight="62" id="RzH-8a-U9m">
  602. <rect key="frame" x="0.0" y="123" width="375" height="62"/>
  603. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  604. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RzH-8a-U9m" id="rQi-gB-u1d">
  605. <rect key="frame" x="0.0" y="0.0" width="375" height="61.5"/>
  606. <autoresizingMask key="autoresizingMask"/>
  607. <subviews>
  608. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sauvegarder le média dans l'album Pellicule" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="2cJ-V4-4C9">
  609. <rect key="frame" x="15" y="8" width="180" height="43"/>
  610. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  611. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  612. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  613. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  614. <nil key="highlightedColor"/>
  615. </label>
  616. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="OLc-42-qCb">
  617. <rect key="frame" x="305" y="14" width="51" height="31"/>
  618. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  619. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  620. <connections>
  621. <action selector="autoSaveMediaChanged:" destination="MdZ-GK-jas" eventType="valueChanged" id="yVv-SR-Qtz"/>
  622. </connections>
  623. </switch>
  624. </subviews>
  625. </tableViewCellContentView>
  626. </tableViewCell>
  627. </cells>
  628. </tableViewSection>
  629. </sections>
  630. <connections>
  631. <outlet property="dataSource" destination="MdZ-GK-jas" id="zJ2-3b-i3C"/>
  632. <outlet property="delegate" destination="MdZ-GK-jas" id="1nk-UQ-7kK"/>
  633. </connections>
  634. </tableView>
  635. <navigationItem key="navigationItem" title="Média" id="s46-XP-Ffa"/>
  636. <connections>
  637. <outlet property="autoSaveMediaSwitch" destination="OLc-42-qCb" id="XCE-27-KnY"/>
  638. <outlet property="imageSizeLabel" destination="al2-Js-fb2" id="WzQ-Nl-Dw6"/>
  639. <outlet property="videoQualityLabel" destination="Uj2-yb-tVZ" id="awc-Qq-Ulg"/>
  640. </connections>
  641. </tableViewController>
  642. <placeholder placeholderIdentifier="IBFirstResponder" id="vBe-Zq-lWF" userLabel="First Responder" sceneMemberID="firstResponder"/>
  643. </objects>
  644. <point key="canvasLocation" x="2442" y="6273"/>
  645. </scene>
  646. <!--Licence-->
  647. <scene sceneID="gtE-Xd-SgN">
  648. <objects>
  649. <viewController id="Wea-Ps-HJX" customClass="LicenseViewController" sceneMemberID="viewController">
  650. <view key="view" contentMode="scaleToFill" id="Mm2-HT-hGR">
  651. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  652. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  653. <subviews>
  654. <webView contentMode="scaleToFill" id="3zu-E2-S1d">
  655. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  656. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  657. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  658. <dataDetectorType key="dataDetectorTypes"/>
  659. </webView>
  660. </subviews>
  661. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  662. </view>
  663. <navigationItem key="navigationItem" title="Licence" id="LyU-ka-OX3"/>
  664. <connections>
  665. <outlet property="webView" destination="3zu-E2-S1d" id="gTM-Ai-0Of"/>
  666. </connections>
  667. </viewController>
  668. <placeholder placeholderIdentifier="IBFirstResponder" id="Zjd-EU-vDP" userLabel="First Responder" sceneMemberID="firstResponder"/>
  669. </objects>
  670. <point key="canvasLocation" x="2435" y="5659"/>
  671. </scene>
  672. <!--Affichage des conversations-->
  673. <scene sceneID="QNk-Ok-eAC">
  674. <objects>
  675. <tableViewController id="2eW-Y2-pa9" customClass="DisplaySettingsViewController" sceneMemberID="viewController">
  676. <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">
  677. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  678. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  679. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  680. <sections>
  681. <tableViewSection headerTitle="Fond d'écran" id="rbG-Ej-MES">
  682. <cells>
  683. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="178" id="iia-dY-V60">
  684. <rect key="frame" x="0.0" y="55.5" width="375" height="178"/>
  685. <autoresizingMask key="autoresizingMask"/>
  686. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="iia-dY-V60" id="m3i-ir-yYh">
  687. <rect key="frame" x="0.0" y="0.0" width="342" height="177.5"/>
  688. <autoresizingMask key="autoresizingMask"/>
  689. <subviews>
  690. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" image="WallpaperDefault.png" id="XIo-bQ-d7K">
  691. <rect key="frame" x="102" y="14" width="150" height="150"/>
  692. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  693. </imageView>
  694. </subviews>
  695. </tableViewCellContentView>
  696. </tableViewCell>
  697. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" id="OI8-lV-bIY">
  698. <rect key="frame" x="0.0" y="233.5" width="375" height="44"/>
  699. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  700. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OI8-lV-bIY" id="SdZ-C6-Cor">
  701. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  702. <autoresizingMask key="autoresizingMask"/>
  703. <subviews>
  704. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Réinitialiser le fond d'écran" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="mcs-JF-Deg">
  705. <rect key="frame" x="20" y="11" width="333" height="21"/>
  706. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  707. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  708. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  709. <nil key="highlightedColor"/>
  710. </label>
  711. </subviews>
  712. </tableViewCellContentView>
  713. <accessibility key="accessibilityConfiguration">
  714. <accessibilityTraits key="traits" button="YES"/>
  715. </accessibility>
  716. </tableViewCell>
  717. </cells>
  718. </tableViewSection>
  719. <tableViewSection headerTitle="" id="ku4-7V-ypJ">
  720. <cells>
  721. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="Sbz-zc-BXq">
  722. <rect key="frame" x="0.0" y="297.5" width="375" height="44"/>
  723. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  724. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Sbz-zc-BXq" id="uzy-ZM-mmx">
  725. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  726. <autoresizingMask key="autoresizingMask"/>
  727. <subviews>
  728. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" id="hSB-PC-m2L">
  729. <rect key="frame" x="307" y="6" width="52" height="31"/>
  730. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  731. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  732. <connections>
  733. <action selector="themeSwitchChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="HgM-uw-bZ7"/>
  734. </connections>
  735. </switch>
  736. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Apparence foncé" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="uBY-E9-MPF">
  737. <rect key="frame" x="15" y="11" width="231" height="21"/>
  738. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  739. <accessibility key="accessibilityConfiguration" label="Show Received Message Time"/>
  740. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  741. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  742. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  743. <nil key="highlightedColor"/>
  744. </label>
  745. </subviews>
  746. </tableViewCellContentView>
  747. </tableViewCell>
  748. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" detailTextLabel="Tg1-9T-28K" style="IBUITableViewCellStyleValue1" id="b1C-aj-udy">
  749. <rect key="frame" x="0.0" y="341.5" width="375" height="44"/>
  750. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  751. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="b1C-aj-udy" id="qhv-8Q-Qoe">
  752. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  753. <autoresizingMask key="autoresizingMask"/>
  754. <subviews>
  755. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Taille de la police" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qqh-7v-vmA">
  756. <rect key="frame" x="15" y="11" width="193" height="21"/>
  757. <autoresizingMask key="autoresizingMask"/>
  758. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  759. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  760. <nil key="highlightedColor"/>
  761. </label>
  762. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Detail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Tg1-9T-28K">
  763. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  764. <autoresizingMask key="autoresizingMask"/>
  765. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  766. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  767. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  768. </label>
  769. </subviews>
  770. </tableViewCellContentView>
  771. <connections>
  772. <segue destination="8nh-on-KIa" kind="push" id="wVM-hg-8Bj"/>
  773. </connections>
  774. </tableViewCell>
  775. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="dxZ-1P-oyi">
  776. <rect key="frame" x="0.0" y="385.5" width="375" height="44"/>
  777. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  778. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dxZ-1P-oyi" id="dfw-aD-PXd">
  779. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  780. <autoresizingMask key="autoresizingMask"/>
  781. <subviews>
  782. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="JhW-TN-V1o">
  783. <rect key="frame" x="307" y="6" width="52" height="31"/>
  784. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  785. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  786. <connections>
  787. <action selector="showReceivedTimestampChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="MkO-5D-J2X"/>
  788. </connections>
  789. </switch>
  790. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Heure de réception" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="gvc-dg-KHb">
  791. <rect key="frame" x="15" y="11" width="231" height="21"/>
  792. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  793. <accessibility key="accessibilityConfiguration" label="Heure de réception"/>
  794. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  795. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  796. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  797. <nil key="highlightedColor"/>
  798. </label>
  799. </subviews>
  800. </tableViewCellContentView>
  801. </tableViewCell>
  802. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" id="9K9-wE-Q1d">
  803. <rect key="frame" x="0.0" y="429.5" width="375" height="44"/>
  804. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  805. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9K9-wE-Q1d" id="I4B-dS-9Yl">
  806. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  807. <autoresizingMask key="autoresizingMask"/>
  808. <subviews>
  809. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="130-Nq-JcK">
  810. <rect key="frame" x="307" y="6" width="52" height="31"/>
  811. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  812. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  813. <connections>
  814. <action selector="returnToSendChanged:" destination="2eW-Y2-pa9" eventType="valueChanged" id="MXv-d3-B9N"/>
  815. </connections>
  816. </switch>
  817. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Retour = Envoyer" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ffN-Yo-shC">
  818. <rect key="frame" x="15" y="11" width="231" height="21"/>
  819. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  820. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  821. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  822. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  823. <nil key="highlightedColor"/>
  824. </label>
  825. </subviews>
  826. </tableViewCellContentView>
  827. </tableViewCell>
  828. </cells>
  829. </tableViewSection>
  830. </sections>
  831. <connections>
  832. <outlet property="dataSource" destination="2eW-Y2-pa9" id="ijm-bQ-uXm"/>
  833. <outlet property="delegate" destination="2eW-Y2-pa9" id="PAu-a4-PTf"/>
  834. </connections>
  835. </tableView>
  836. <navigationItem key="navigationItem" title="Affichage des conversations" id="fFN-GT-Pr9"/>
  837. <connections>
  838. <outlet property="fontSizeLabel" destination="Tg1-9T-28K" id="EEz-zu-BKq"/>
  839. <outlet property="returnToSendSwitch" destination="130-Nq-JcK" id="iyz-3Q-H06"/>
  840. <outlet property="showReceivedTimestampSwitch" destination="JhW-TN-V1o" id="fit-6Q-zfo"/>
  841. <outlet property="themeSwitch" destination="hSB-PC-m2L" id="6j3-Mc-DSw"/>
  842. <outlet property="wallpaperImageView" destination="XIo-bQ-d7K" id="vBh-u3-zi4"/>
  843. </connections>
  844. </tableViewController>
  845. <placeholder placeholderIdentifier="IBFirstResponder" id="ffR-5e-3bm" userLabel="First Responder" sceneMemberID="firstResponder"/>
  846. </objects>
  847. <point key="canvasLocation" x="2435" y="3696"/>
  848. </scene>
  849. <!--Taille de la police-->
  850. <scene sceneID="Ge7-Sv-uhZ">
  851. <objects>
  852. <tableViewController id="8nh-on-KIa" customClass="FontSizeViewController" sceneMemberID="viewController">
  853. <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">
  854. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  855. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  856. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  857. <prototypes>
  858. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="FontSizeCell" textLabel="R47-VP-gFD" style="IBUITableViewCellStyleDefault" id="3Vh-W4-Fog">
  859. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  860. <autoresizingMask key="autoresizingMask"/>
  861. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3Vh-W4-Fog" id="ub8-Td-D0t">
  862. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  863. <autoresizingMask key="autoresizingMask"/>
  864. <subviews>
  865. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="xx pt" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="R47-VP-gFD">
  866. <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
  867. <autoresizingMask key="autoresizingMask"/>
  868. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  869. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  870. <nil key="highlightedColor"/>
  871. </label>
  872. </subviews>
  873. </tableViewCellContentView>
  874. </tableViewCell>
  875. </prototypes>
  876. <sections/>
  877. <connections>
  878. <outlet property="dataSource" destination="8nh-on-KIa" id="ove-fZ-dFv"/>
  879. <outlet property="delegate" destination="8nh-on-KIa" id="J9S-hL-oY9"/>
  880. </connections>
  881. </tableView>
  882. <navigationItem key="navigationItem" title="Taille de la police" id="Fi8-nk-NDW"/>
  883. </tableViewController>
  884. <placeholder placeholderIdentifier="IBFirstResponder" id="zSG-Jc-eIs" userLabel="First Responder" sceneMemberID="firstResponder"/>
  885. </objects>
  886. <point key="canvasLocation" x="3068" y="3709"/>
  887. </scene>
  888. <!--Support-->
  889. <scene sceneID="dsZ-tX-BXr">
  890. <objects>
  891. <viewController id="dET-dz-QOT" customClass="SupportViewController" sceneMemberID="viewController">
  892. <view key="view" contentMode="scaleToFill" id="cdU-54-yb4">
  893. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  894. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  895. <subviews>
  896. <webView multipleTouchEnabled="YES" contentMode="scaleToFill" scalesPageToFit="YES" id="gVh-hu-m9y">
  897. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  898. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  899. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  900. <dataDetectorType key="dataDetectorTypes"/>
  901. </webView>
  902. </subviews>
  903. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  904. </view>
  905. <navigationItem key="navigationItem" title="Support" id="RDy-7k-EX5"/>
  906. <connections>
  907. <outlet property="webView" destination="gVh-hu-m9y" id="pZS-L1-0sn"/>
  908. </connections>
  909. </viewController>
  910. <placeholder placeholderIdentifier="IBFirstResponder" id="x5B-GO-wqJ" userLabel="First Responder" sceneMemberID="firstResponder"/>
  911. </objects>
  912. <point key="canvasLocation" x="2430" y="5049"/>
  913. </scene>
  914. <!--Taille de l'image-->
  915. <scene sceneID="7wv-iF-gCx">
  916. <objects>
  917. <tableViewController id="AQR-Vz-MhD" customClass="ImageSizeViewController" sceneMemberID="viewController">
  918. <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">
  919. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  920. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  921. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  922. <prototypes>
  923. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="checkmark" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ImageSizeCell" rowHeight="62" id="RNN-n3-Qdh" customClass="ImageSizeCell">
  924. <rect key="frame" x="0.0" y="55.5" width="375" height="62"/>
  925. <autoresizingMask key="autoresizingMask"/>
  926. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="RNN-n3-Qdh" id="S8I-p0-3SJ">
  927. <rect key="frame" x="0.0" y="0.0" width="336" height="61.5"/>
  928. <autoresizingMask key="autoresizingMask"/>
  929. <subviews>
  930. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Taille" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Kf6-Af-cZd">
  931. <rect key="frame" x="15" y="10" width="240" height="21"/>
  932. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  933. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  934. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  935. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  936. <nil key="highlightedColor"/>
  937. </label>
  938. <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">
  939. <rect key="frame" x="15" y="31" width="240" height="21"/>
  940. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  941. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  942. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  943. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  944. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  945. </label>
  946. </subviews>
  947. </tableViewCellContentView>
  948. <connections>
  949. <outlet property="sizeDetailLabel" destination="9DJ-kU-IOH" id="pyF-vO-X7f"/>
  950. <outlet property="sizeLabel" destination="Kf6-Af-cZd" id="hBc-N8-Cl3"/>
  951. </connections>
  952. </tableViewCell>
  953. </prototypes>
  954. <sections/>
  955. <connections>
  956. <outlet property="dataSource" destination="AQR-Vz-MhD" id="KGa-b5-Ycw"/>
  957. <outlet property="delegate" destination="AQR-Vz-MhD" id="RDi-Ca-d5O"/>
  958. </connections>
  959. </tableView>
  960. <navigationItem key="navigationItem" title="Taille de l'image" id="Rqf-zt-Ocq"/>
  961. </tableViewController>
  962. <placeholder placeholderIdentifier="IBFirstResponder" id="mIp-1V-xfl" userLabel="First Responder" sceneMemberID="firstResponder"/>
  963. </objects>
  964. <point key="canvasLocation" x="3153" y="5929"/>
  965. </scene>
  966. <!--Réglages-->
  967. <scene sceneID="FZG-wn-tpM">
  968. <objects>
  969. <navigationController id="OHY-cO-A6g" customClass="SettingsNavigationController" sceneMemberID="viewController">
  970. <tabBarItem key="tabBarItem" title="Réglages" image="20-gear-2.png" id="b04-Gg-ZdB"/>
  971. <toolbarItems/>
  972. <navigationBar key="navigationBar" contentMode="scaleToFill" id="vZ5-yv-BbA" customClass="StatusNavigationBar">
  973. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  974. <autoresizingMask key="autoresizingMask"/>
  975. </navigationBar>
  976. <nil name="viewControllers"/>
  977. <connections>
  978. <segue destination="y1R-kI-4Pp" kind="relationship" relationship="rootViewController" id="Lhq-bY-s7T"/>
  979. </connections>
  980. </navigationController>
  981. <placeholder placeholderIdentifier="IBFirstResponder" id="EDa-Yt-oNt" userLabel="First Responder" sceneMemberID="firstResponder"/>
  982. </objects>
  983. <point key="canvasLocation" x="915" y="2507"/>
  984. </scene>
  985. <!--Messages-->
  986. <scene sceneID="zrk-Dk-DBQ">
  987. <objects>
  988. <tableViewController storyboardIdentifier="conversationsViewController" id="Kji-Zw-ER6" customClass="ConversationsViewController" sceneMemberID="viewController">
  989. <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">
  990. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  991. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  992. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  993. <prototypes>
  994. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ConversationCell" id="rT5-pb-7l3" customClass="ConversationCell">
  995. <rect key="frame" x="0.0" y="22" width="375" height="74"/>
  996. <autoresizingMask key="autoresizingMask"/>
  997. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rT5-pb-7l3" id="dgn-JD-ljW">
  998. <rect key="frame" x="0.0" y="0.0" width="375" height="73.5"/>
  999. <autoresizingMask key="autoresizingMask"/>
  1000. <subviews>
  1001. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="100" contentMode="left" text="Nom" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="i0d-PW-Wvq">
  1002. <rect key="frame" x="77" y="6" width="204" height="22"/>
  1003. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1004. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  1005. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  1006. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1007. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1008. </label>
  1009. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Aperçu du message" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="cbw-WM-oCU" customClass="SSLabel">
  1010. <rect key="frame" x="77" y="30" width="247" height="34"/>
  1011. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1012. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  1013. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1014. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1015. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1016. </label>
  1017. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-56.png" id="V59-O6-HhR">
  1018. <rect key="frame" x="12" y="9" width="56" height="56"/>
  1019. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1020. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1021. </imageView>
  1022. <view contentMode="scaleToFill" id="bi1-G7-b3r" customClass="MKNumberBadgeView">
  1023. <rect key="frame" x="42" y="40" width="36" height="28"/>
  1024. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1025. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1026. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1027. </view>
  1028. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" image="Typing.png" highlightedImage="Typing.png" id="Xnt-jr-dbd">
  1029. <rect key="frame" x="344" y="30" width="18" height="20"/>
  1030. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1031. </imageView>
  1032. <imageView hidden="YES" userInteractionEnabled="NO" contentMode="scaleToFill" image="MessageStatusSmall_sent.png" highlightedImage="MessageStatusSmall_sent.png" id="ZCx-mc-Be1">
  1033. <rect key="frame" x="345" y="30" width="17" height="16"/>
  1034. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1035. </imageView>
  1036. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" text="Date" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="SQ8-5g-lHd">
  1037. <rect key="frame" x="285" y="9" width="77" height="20"/>
  1038. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1039. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1040. <color key="textColor" red="0.42745098039215684" green="0.42745098039215684" blue="0.42745098039215684" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1041. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1042. </label>
  1043. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="102" contentMode="left" misplaced="YES" text="Brouillon" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" adjustsFontSizeToFit="NO" id="G8c-6W-DiZ">
  1044. <rect key="frame" x="285" y="9" width="77" height="20"/>
  1045. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1046. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1047. <color key="textColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1048. <color key="highlightedColor" red="1" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1049. </label>
  1050. </subviews>
  1051. </tableViewCellContentView>
  1052. <inset key="separatorInset" minX="77" minY="0.0" maxX="0.0" maxY="0.0"/>
  1053. <connections>
  1054. <outlet property="badgeView" destination="bi1-G7-b3r" id="GMG-o6-pB4"/>
  1055. <outlet property="contactImage" destination="V59-O6-HhR" id="dGS-SP-0tY"/>
  1056. <outlet property="dateLabel" destination="SQ8-5g-lHd" id="vSk-Ou-SnZ"/>
  1057. <outlet property="draftLabel" destination="G8c-6W-DiZ" id="361-t6-t2t"/>
  1058. <outlet property="messagePreviewLabel" destination="cbw-WM-oCU" id="xPc-d8-ooZ"/>
  1059. <outlet property="nameLabel" destination="i0d-PW-Wvq" id="z9t-Cz-812"/>
  1060. <outlet property="statusIcon" destination="ZCx-mc-Be1" id="zOo-NA-TSf"/>
  1061. <outlet property="typingIndicator" destination="Xnt-jr-dbd" id="mP7-ih-9Gp"/>
  1062. </connections>
  1063. </tableViewCell>
  1064. </prototypes>
  1065. <connections>
  1066. <outlet property="dataSource" destination="Kji-Zw-ER6" id="qOQ-Zq-lST"/>
  1067. <outlet property="delegate" destination="Kji-Zw-ER6" id="Ule-cm-hhS"/>
  1068. </connections>
  1069. </tableView>
  1070. <navigationItem key="navigationItem" title="Messages" id="vkp-6o-Lct">
  1071. <barButtonItem key="leftBarButtonItem" systemItem="edit" id="yNs-w7-9pI"/>
  1072. <barButtonItem key="rightBarButtonItem" systemItem="compose" id="Hqe-Yz-nuJ">
  1073. <connections>
  1074. <action selector="newMessage:" destination="Kji-Zw-ER6" id="BD6-PH-8aA"/>
  1075. </connections>
  1076. </barButtonItem>
  1077. </navigationItem>
  1078. <connections>
  1079. <segue destination="v1R-9K-OZW" kind="push" identifier="ShowConversation" id="pFA-Tp-dth"/>
  1080. </connections>
  1081. </tableViewController>
  1082. <placeholder placeholderIdentifier="IBFirstResponder" id="pta-Eu-i3V" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1083. </objects>
  1084. <point key="canvasLocation" x="1359" y="486"/>
  1085. </scene>
  1086. <!--Contacts-->
  1087. <scene sceneID="nuw-Vv-xyq">
  1088. <objects>
  1089. <viewController storyboardIdentifier="contactsViewController" id="4Fd-lk-A1K" customClass="ContactsViewController" sceneMemberID="viewController">
  1090. <view key="view" contentMode="scaleToFill" id="9I6-Hb-Esz">
  1091. <rect key="frame" x="0.0" y="64" width="375" height="603"/>
  1092. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1093. <subviews>
  1094. <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">
  1095. <rect key="frame" x="0.0" y="0.0" width="375" height="603"/>
  1096. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1097. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1098. <inset key="contentInset" minX="0.0" minY="44" maxX="0.0" maxY="0.0"/>
  1099. <view key="tableFooterView" hidden="YES" contentMode="scaleToFill" id="GQT-ca-BYM">
  1100. <rect key="frame" x="0.0" y="132" width="375" height="140"/>
  1101. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1102. <subviews>
  1103. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Aucun contact" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="PaX-dX-iDw">
  1104. <rect key="frame" x="20" y="12" width="323" height="21"/>
  1105. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1106. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  1107. <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1108. <nil key="highlightedColor"/>
  1109. </label>
  1110. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="101" contentMode="left" text="Vous n'avez pas de contacts. Activez la synchronisation ou ajoutez manuellement des contacts à l'aide du bouton +." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="t3X-2A-HzY">
  1111. <rect key="frame" x="12" y="40" width="331" height="100"/>
  1112. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1113. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1114. <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1115. <nil key="highlightedColor"/>
  1116. </label>
  1117. </subviews>
  1118. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1119. </view>
  1120. <prototypes>
  1121. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="dFb-Wa-VKz" customClass="ContactCell">
  1122. <rect key="frame" x="0.0" y="28" width="375" height="44"/>
  1123. <autoresizingMask key="autoresizingMask"/>
  1124. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dFb-Wa-VKz" id="eHR-pD-pVa">
  1125. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1126. <autoresizingMask key="autoresizingMask"/>
  1127. <subviews>
  1128. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Prénom Nom" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="xMb-E3-83s" customClass="ContactNameLabel">
  1129. <rect key="frame" x="10" y="11" width="276" height="23"/>
  1130. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1131. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1132. <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
  1133. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1134. <nil key="highlightedColor"/>
  1135. </label>
  1136. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="IDENTITÉ" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="uPX-lJ-jo5">
  1137. <rect key="frame" x="291" y="18" width="75" height="21"/>
  1138. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1139. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1140. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1141. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1142. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1143. </label>
  1144. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" id="Te1-8r-Kpe">
  1145. <rect key="frame" x="334" y="9" width="32" height="8"/>
  1146. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1147. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1148. </imageView>
  1149. </subviews>
  1150. </tableViewCellContentView>
  1151. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1152. <connections>
  1153. <outlet property="identityLabel" destination="uPX-lJ-jo5" id="ExJ-ud-89x"/>
  1154. <outlet property="nameLabel" destination="xMb-E3-83s" id="vPc-yz-wse"/>
  1155. <outlet property="verificationLevel" destination="Te1-8r-Kpe" id="GE1-07-boa"/>
  1156. </connections>
  1157. </tableViewCell>
  1158. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" rowHeight="60" id="LPm-Ak-I7T" customClass="GroupCell">
  1159. <rect key="frame" x="0.0" y="72" width="375" height="60"/>
  1160. <autoresizingMask key="autoresizingMask"/>
  1161. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LPm-Ak-I7T" id="C47-PO-Vse">
  1162. <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
  1163. <autoresizingMask key="autoresizingMask"/>
  1164. <subviews>
  1165. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# membres" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Wb5-yH-lj0">
  1166. <rect key="frame" x="219" y="36" width="135" height="14"/>
  1167. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1168. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1169. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1170. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1171. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1172. </label>
  1173. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nom du groupe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="SEL-U7-diX">
  1174. <rect key="frame" x="10" y="10" width="352" height="22"/>
  1175. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1176. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1177. <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
  1178. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1179. <nil key="highlightedColor"/>
  1180. </label>
  1181. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Créateur de groupe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="3Il-OE-3n8">
  1182. <rect key="frame" x="10" y="36" width="256" height="14"/>
  1183. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1184. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1185. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1186. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1187. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1188. </label>
  1189. </subviews>
  1190. </tableViewCellContentView>
  1191. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1192. <connections>
  1193. <outlet property="countMemberLabel" destination="Wb5-yH-lj0" id="aqv-NO-vqb"/>
  1194. <outlet property="creatorLabel" destination="3Il-OE-3n8" id="Fsl-YF-1hl"/>
  1195. <outlet property="groupNameLabel" destination="SEL-U7-diX" id="suv-UC-BN5"/>
  1196. </connections>
  1197. </tableViewCell>
  1198. </prototypes>
  1199. <connections>
  1200. <outlet property="dataSource" destination="4Fd-lk-A1K" id="gsg-CL-vR5"/>
  1201. <outlet property="delegate" destination="4Fd-lk-A1K" id="vTM-B1-KLb"/>
  1202. </connections>
  1203. </tableView>
  1204. <searchBar contentMode="redraw" placeholder="Rechercher" id="dUh-vm-0d6">
  1205. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1206. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1207. <textInputTraits key="textInputTraits"/>
  1208. <connections>
  1209. <outlet property="delegate" destination="4Fd-lk-A1K" id="3vX-Eo-PK2"/>
  1210. </connections>
  1211. </searchBar>
  1212. </subviews>
  1213. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1214. </view>
  1215. <extendedEdge key="edgesForExtendedLayout" bottom="YES"/>
  1216. <navigationItem key="navigationItem" title="Contacts" id="eEz-yJ-GLV">
  1217. <barButtonItem key="leftBarButtonItem" systemItem="edit" id="Hid-rG-ZSO"/>
  1218. <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="xpR-ok-Lej">
  1219. <rect key="frame" x="118" y="8" width="139" height="29"/>
  1220. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1221. <segments>
  1222. <segment title="Contacts"/>
  1223. <segment title="Groupes"/>
  1224. </segments>
  1225. <connections>
  1226. <action selector="segmentedControlChanged:" destination="4Fd-lk-A1K" eventType="valueChanged" id="HO2-Ko-EGJ"/>
  1227. </connections>
  1228. </segmentedControl>
  1229. <barButtonItem key="rightBarButtonItem" systemItem="add" id="xaS-12-Ims">
  1230. <connections>
  1231. <action selector="addAction:" destination="4Fd-lk-A1K" id="rFa-0j-G93"/>
  1232. </connections>
  1233. </barButtonItem>
  1234. </navigationItem>
  1235. <connections>
  1236. <outlet property="noContactsMessageLabel" destination="t3X-2A-HzY" id="HW1-mM-Th0"/>
  1237. <outlet property="noContactsTitleLabel" destination="PaX-dX-iDw" id="qqy-fz-4bz"/>
  1238. <outlet property="noContactsView" destination="GQT-ca-BYM" id="GHJ-Kv-WGC"/>
  1239. <outlet property="searchBar" destination="dUh-vm-0d6" id="deS-Yz-gXa"/>
  1240. <outlet property="searchDisplayController" destination="aT7-Sh-PTR" id="uOn-WQ-2Vb"/>
  1241. <outlet property="segmentedControl" destination="xpR-ok-Lej" id="Unz-g9-cmB"/>
  1242. <outlet property="tableView" destination="oA5-UX-CCe" id="zpi-AV-wV2"/>
  1243. <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="Akb-Cn-eQX"/>
  1244. </connections>
  1245. </viewController>
  1246. <searchDisplayController id="aT7-Sh-PTR">
  1247. <connections>
  1248. <outlet property="delegate" destination="4Fd-lk-A1K" id="hGW-3A-GFm"/>
  1249. <outlet property="searchBar" destination="dUh-vm-0d6" id="wzN-uM-BOm"/>
  1250. <outlet property="searchContentsController" destination="4Fd-lk-A1K" id="kUA-RZ-KNB"/>
  1251. <outlet property="searchResultsDataSource" destination="4Fd-lk-A1K" id="ztG-2F-d81"/>
  1252. <outlet property="searchResultsDelegate" destination="4Fd-lk-A1K" id="JAT-Qg-BB3"/>
  1253. </connections>
  1254. </searchDisplayController>
  1255. <placeholder placeholderIdentifier="IBFirstResponder" id="ZJq-lP-hJG" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1256. </objects>
  1257. <point key="canvasLocation" x="1430" y="-843"/>
  1258. </scene>
  1259. <!--ContactDetails-->
  1260. <scene sceneID="pxa-1i-UrO">
  1261. <objects>
  1262. <tableViewController storyboardIdentifier="contactDetailsViewController" id="MbJ-IV-2f9" userLabel="ContactDetails" customClass="ContactDetailsViewController" sceneMemberID="viewController">
  1263. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="pXs-iG-LIG">
  1264. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1265. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1266. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1267. <view key="tableHeaderView" contentMode="scaleToFill" id="4J2-j2-aqd">
  1268. <rect key="frame" x="0.0" y="0.0" width="375" height="116"/>
  1269. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1270. <subviews>
  1271. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nom de la société" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="wLS-iM-q79">
  1272. <rect key="frame" x="110" y="59" width="225" height="25"/>
  1273. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1274. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  1275. <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1276. <nil key="highlightedColor"/>
  1277. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1278. <size key="shadowOffset" width="0.0" height="1"/>
  1279. </label>
  1280. <imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="unknown-person-56.png" id="C5h-Sy-nCc">
  1281. <rect key="frame" x="12" y="16" width="84" height="84"/>
  1282. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1283. </imageView>
  1284. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="7Yp-xa-uaa">
  1285. <rect key="frame" x="341" y="47" width="22" height="22"/>
  1286. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1287. <state key="normal">
  1288. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1289. </state>
  1290. </button>
  1291. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Prénom Nom" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="DfM-u6-9Pl">
  1292. <rect key="frame" x="110" y="32" width="225" height="25"/>
  1293. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1294. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  1295. <nil key="highlightedColor"/>
  1296. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1297. <size key="shadowOffset" width="0.0" height="1"/>
  1298. </label>
  1299. </subviews>
  1300. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  1301. </view>
  1302. <prototypes>
  1303. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="IdentityCell" id="ebt-GD-Kmo">
  1304. <rect key="frame" x="0.0" y="171.5" width="375" height="44"/>
  1305. <autoresizingMask key="autoresizingMask"/>
  1306. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ebt-GD-Kmo" id="Szm-Fg-4IJ">
  1307. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1308. <autoresizingMask key="autoresizingMask"/>
  1309. <subviews>
  1310. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID Threema" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="2lp-u3-z6M">
  1311. <rect key="frame" x="15" y="12" width="133" height="21"/>
  1312. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1313. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1314. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1315. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1316. <nil key="highlightedColor"/>
  1317. </label>
  1318. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" tag="100" contentMode="left" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="C5A-xz-98f" customClass="CopyLabel">
  1319. <rect key="frame" x="226" y="12" width="133" height="21"/>
  1320. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1321. <inset key="insetFor6xAndEarlier" minX="0.0" minY="0.0" maxX="4" maxY="0.0"/>
  1322. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1323. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1324. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1325. </label>
  1326. </subviews>
  1327. </tableViewCellContentView>
  1328. </tableViewCell>
  1329. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="PublicNicknameCell" id="DJ2-VR-wR5">
  1330. <rect key="frame" x="0.0" y="215.5" width="375" height="44"/>
  1331. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1332. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="DJ2-VR-wR5" id="gXP-iB-7UN">
  1333. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1334. <autoresizingMask key="autoresizingMask"/>
  1335. <subviews>
  1336. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Pseudo" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="JzM-yJ-0jt">
  1337. <rect key="frame" x="15" y="12" width="160" height="21"/>
  1338. <autoresizingMask key="autoresizingMask"/>
  1339. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1340. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1341. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1342. <nil key="highlightedColor"/>
  1343. </label>
  1344. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" tag="101" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="12" id="rKY-9X-f5A">
  1345. <rect key="frame" x="230" y="12" width="129" height="21"/>
  1346. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1347. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1348. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1349. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1350. </label>
  1351. </subviews>
  1352. </tableViewCellContentView>
  1353. </tableViewCell>
  1354. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="LinkedContactCell" id="dh6-UK-5RP" customClass="LinkedContactCell">
  1355. <rect key="frame" x="0.0" y="259.5" width="375" height="44"/>
  1356. <autoresizingMask key="autoresizingMask"/>
  1357. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="dh6-UK-5RP" id="HWb-CA-uNi">
  1358. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1359. <autoresizingMask key="autoresizingMask"/>
  1360. <subviews>
  1361. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Contact lié" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jxm-71-tQg">
  1362. <rect key="frame" x="15" y="12" width="160" height="21"/>
  1363. <autoresizingMask key="autoresizingMask"/>
  1364. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1365. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1366. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1367. <nil key="highlightedColor"/>
  1368. </label>
  1369. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="12" id="MnD-TA-cUn">
  1370. <rect key="frame" x="230" y="12" width="129" height="21"/>
  1371. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1372. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1373. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1374. <nil key="highlightedColor"/>
  1375. </label>
  1376. </subviews>
  1377. </tableViewCellContentView>
  1378. <connections>
  1379. <outlet property="displayNameLabel" destination="MnD-TA-cUn" id="F5w-kV-BSt"/>
  1380. </connections>
  1381. </tableViewCell>
  1382. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupMembershipCell" id="558-CC-EbB" userLabel="GroupMembershipCell">
  1383. <rect key="frame" x="0.0" y="303.5" width="375" height="44"/>
  1384. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1385. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="558-CC-EbB" id="Ko4-uG-xwm">
  1386. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1387. <autoresizingMask key="autoresizingMask"/>
  1388. <subviews>
  1389. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Membre des groupes" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="zPS-CU-EpF">
  1390. <rect key="frame" x="15" y="13" width="200" height="21"/>
  1391. <autoresizingMask key="autoresizingMask"/>
  1392. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1393. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1394. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1395. <nil key="highlightedColor"/>
  1396. </label>
  1397. <label opaque="NO" multipleTouchEnabled="YES" tag="102" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="JZI-7I-M9p">
  1398. <rect key="frame" x="306" y="12" width="53" height="21"/>
  1399. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1400. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1401. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1402. <nil key="highlightedColor"/>
  1403. </label>
  1404. </subviews>
  1405. </tableViewCellContentView>
  1406. </tableViewCell>
  1407. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="VerificationLevelCell" id="FWP-sL-MrC" customClass="VerificationLevelCell">
  1408. <rect key="frame" x="0.0" y="347.5" width="375" height="44"/>
  1409. <autoresizingMask key="autoresizingMask"/>
  1410. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="FWP-sL-MrC" id="8t9-nj-TOi">
  1411. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1412. <autoresizingMask key="autoresizingMask"/>
  1413. <subviews>
  1414. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Niveau de vérification" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="a5L-dT-f28">
  1415. <rect key="frame" x="15" y="11" width="211" height="21"/>
  1416. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1417. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1418. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1419. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1420. <nil key="highlightedColor"/>
  1421. </label>
  1422. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="dH9-db-1tt">
  1423. <rect key="frame" x="310" y="16" width="49" height="11"/>
  1424. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1425. </imageView>
  1426. </subviews>
  1427. </tableViewCellContentView>
  1428. <connections>
  1429. <outlet property="levelImage" destination="dH9-db-1tt" id="Kjz-Zm-Tkt"/>
  1430. <segue destination="BHJ-uI-yhd" kind="push" id="YgO-Yg-3hN"/>
  1431. </connections>
  1432. </tableViewCell>
  1433. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="KeyFingerprintCell" rowHeight="65" id="X6a-sN-vzb" customClass="KeyFingerprintCell">
  1434. <rect key="frame" x="0.0" y="391.5" width="375" height="65"/>
  1435. <autoresizingMask key="autoresizingMask"/>
  1436. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="X6a-sN-vzb" id="IHC-sA-asZ">
  1437. <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
  1438. <autoresizingMask key="autoresizingMask"/>
  1439. <subviews>
  1440. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Empreinte de clé" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4Qg-5s-hU5">
  1441. <rect key="frame" x="15" y="11" width="270" height="21"/>
  1442. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1443. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1444. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1445. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1446. <nil key="highlightedColor"/>
  1447. </label>
  1448. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="okP-aA-zDM" customClass="CopyLabel">
  1449. <rect key="frame" x="14" y="34" width="351" height="21"/>
  1450. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1451. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1452. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1453. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1454. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1455. </label>
  1456. </subviews>
  1457. </tableViewCellContentView>
  1458. <connections>
  1459. <outlet property="fingerprintLabel" destination="okP-aA-zDM" id="mfA-dE-GO7"/>
  1460. </connections>
  1461. </tableViewCell>
  1462. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="SendMessageCell" textLabel="LQb-Ut-2Zt" style="IBUITableViewCellStyleDefault" id="17h-OP-2ko">
  1463. <rect key="frame" x="0.0" y="456.5" width="375" height="44"/>
  1464. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1465. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="17h-OP-2ko" id="K26-H1-AUc">
  1466. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1467. <autoresizingMask key="autoresizingMask"/>
  1468. <subviews>
  1469. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Envoyer un message" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="LQb-Ut-2Zt">
  1470. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  1471. <autoresizingMask key="autoresizingMask"/>
  1472. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1473. <color key="textColor" red="0.0" green="0.47843137254901957" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1474. <nil key="highlightedColor"/>
  1475. </label>
  1476. </subviews>
  1477. </tableViewCellContentView>
  1478. </tableViewCell>
  1479. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="EmailConversationCell" textLabel="SEG-4d-fVM" style="IBUITableViewCellStyleDefault" id="wla-k2-wfy">
  1480. <rect key="frame" x="0.0" y="500.5" width="375" height="44"/>
  1481. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1482. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="wla-k2-wfy" id="ltm-vP-Oyz">
  1483. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1484. <autoresizingMask key="autoresizingMask"/>
  1485. <subviews>
  1486. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Conversation par courriel" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="SEG-4d-fVM">
  1487. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  1488. <autoresizingMask key="autoresizingMask"/>
  1489. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1490. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1491. <nil key="highlightedColor"/>
  1492. </label>
  1493. </subviews>
  1494. </tableViewCellContentView>
  1495. </tableViewCell>
  1496. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="BlockCell" id="OyV-Kc-kkl" customClass="BlockContactCell">
  1497. <rect key="frame" x="0.0" y="544.5" width="375" height="44"/>
  1498. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1499. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="OyV-Kc-kkl" id="yq1-pz-P7n">
  1500. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1501. <autoresizingMask key="autoresizingMask"/>
  1502. <subviews>
  1503. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Bloquer le contact" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0Er-iu-Csc">
  1504. <rect key="frame" x="15" y="11" width="231" height="21"/>
  1505. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1506. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1507. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1508. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1509. <nil key="highlightedColor"/>
  1510. </label>
  1511. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="ME3-2q-nDU">
  1512. <rect key="frame" x="309" y="6" width="50" height="31"/>
  1513. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1514. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1515. <color key="onTintColor" red="1" green="0.23137254900000001" blue="0.18823529410000001" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1516. <connections>
  1517. <action selector="blockSwitchChanged:" destination="OyV-Kc-kkl" eventType="valueChanged" id="OOD-p7-iAy"/>
  1518. </connections>
  1519. </switch>
  1520. </subviews>
  1521. </tableViewCellContentView>
  1522. <connections>
  1523. <outlet property="blockSwitch" destination="ME3-2q-nDU" id="ZVl-bn-D6e"/>
  1524. </connections>
  1525. </tableViewCell>
  1526. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="NoPushNotificationCell" id="mcC-YE-Riw" customClass="NoPushNotificationCell">
  1527. <rect key="frame" x="0.0" y="588.5" width="375" height="44"/>
  1528. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1529. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="mcC-YE-Riw" id="FS9-5s-lWa">
  1530. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1531. <autoresizingMask key="autoresizingMask"/>
  1532. <subviews>
  1533. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Disable push notifications" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumScaleFactor="0.59999999999999998" id="l5u-Ab-UfT">
  1534. <rect key="frame" x="15" y="11" width="231" height="21"/>
  1535. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1536. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1537. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1538. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1539. <nil key="highlightedColor"/>
  1540. </label>
  1541. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="Tf6-41-5vE">
  1542. <rect key="frame" x="309" y="6" width="50" height="31"/>
  1543. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1544. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  1545. <connections>
  1546. <action selector="pushSwitchChanged:" destination="mcC-YE-Riw" eventType="valueChanged" id="ql3-Xv-WzQ"/>
  1547. </connections>
  1548. </switch>
  1549. </subviews>
  1550. </tableViewCellContentView>
  1551. <connections>
  1552. <outlet property="pushSwitch" destination="Tf6-41-5vE" id="hrS-Ap-89l"/>
  1553. </connections>
  1554. </tableViewCell>
  1555. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="ScanIDCell" textLabel="Sl8-eU-GWX" style="IBUITableViewCellStyleDefault" id="B9p-4r-4nI">
  1556. <rect key="frame" x="0.0" y="632.5" width="375" height="44"/>
  1557. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1558. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="B9p-4r-4nI" id="NRI-gB-MJC">
  1559. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1560. <autoresizingMask key="autoresizingMask"/>
  1561. <subviews>
  1562. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Scanner l'ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Sl8-eU-GWX">
  1563. <rect key="frame" x="15" y="0.0" width="345" height="44"/>
  1564. <autoresizingMask key="autoresizingMask"/>
  1565. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1566. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1567. <nil key="highlightedColor"/>
  1568. </label>
  1569. </subviews>
  1570. </tableViewCellContentView>
  1571. </tableViewCell>
  1572. </prototypes>
  1573. <sections/>
  1574. <connections>
  1575. <outlet property="dataSource" destination="MbJ-IV-2f9" id="VQ6-nd-9e4"/>
  1576. <outlet property="delegate" destination="MbJ-IV-2f9" id="6Rc-lt-Ehf"/>
  1577. </connections>
  1578. </tableView>
  1579. <navigationItem key="navigationItem" title="Prénom Nom" id="Wsn-z9-eRi">
  1580. <barButtonItem key="rightBarButtonItem" systemItem="camera" id="ydd-ZP-cHN">
  1581. <connections>
  1582. <action selector="scanIdentityAction:" destination="MbJ-IV-2f9" id="ZBC-Gt-C0y"/>
  1583. </connections>
  1584. </barButtonItem>
  1585. </navigationItem>
  1586. <connections>
  1587. <outlet property="companyNameLabel" destination="wLS-iM-q79" id="rQo-wF-0UW"/>
  1588. <outlet property="disclosureButton" destination="7Yp-xa-uaa" id="ozN-LX-QiE"/>
  1589. <outlet property="headerView" destination="4J2-j2-aqd" id="nu9-xE-Scc"/>
  1590. <outlet property="imageView" destination="C5h-Sy-nCc" id="CoE-js-cSN"/>
  1591. <outlet property="nameLabel" destination="DfM-u6-9Pl" id="XoH-fN-tsE"/>
  1592. </connections>
  1593. </tableViewController>
  1594. <placeholder placeholderIdentifier="IBFirstResponder" id="1eN-yn-5dz" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1595. </objects>
  1596. <point key="canvasLocation" x="2598" y="-505"/>
  1597. </scene>
  1598. <!--Contact Group Membership View Controller-->
  1599. <scene sceneID="FZb-Rm-ih3">
  1600. <objects>
  1601. <tableViewController storyboardIdentifier="contactGroupMembershipViewController" id="NM5-wF-syo" customClass="ContactGroupMembershipViewController" sceneMemberID="viewController">
  1602. <tableView key="view" clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="O26-dn-MxF">
  1603. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1604. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1605. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1606. <prototypes>
  1607. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactGroupCell" rowHeight="54" id="hBA-HR-lwj" userLabel="PickerGroupCell" customClass="ContactGroupCell">
  1608. <rect key="frame" x="0.0" y="22" width="375" height="54"/>
  1609. <autoresizingMask key="autoresizingMask"/>
  1610. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="hBA-HR-lwj" id="jZM-Dc-Ifk">
  1611. <rect key="frame" x="0.0" y="0.0" width="375" height="53.5"/>
  1612. <autoresizingMask key="autoresizingMask"/>
  1613. <subviews>
  1614. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nom du groupe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="84M-Lu-fSm">
  1615. <rect key="frame" x="65" y="6" width="298" height="23"/>
  1616. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1617. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1618. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  1619. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1620. <nil key="highlightedColor"/>
  1621. </label>
  1622. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-56.png" id="qlm-UZ-1WI">
  1623. <rect key="frame" x="12" y="6" width="42" height="42"/>
  1624. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1625. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1626. </imageView>
  1627. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nom du créateur" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Dpn-zH-CmL" userLabel="Creator name">
  1628. <rect key="frame" x="65" y="28" width="206" height="20"/>
  1629. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1630. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1631. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  1632. <color key="textColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1633. <color key="highlightedColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1634. </label>
  1635. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# membres" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="tWn-7d-peV">
  1636. <rect key="frame" x="263" y="28" width="100" height="20"/>
  1637. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1638. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1639. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  1640. <color key="textColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1641. <color key="highlightedColor" red="0.24412089649999999" green="0.24412089649999999" blue="0.24412089649999999" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1642. </label>
  1643. </subviews>
  1644. </tableViewCellContentView>
  1645. <connections>
  1646. <outlet property="avatarImage" destination="qlm-UZ-1WI" id="c0X-2W-sQZ"/>
  1647. <outlet property="countMembersLabel" destination="tWn-7d-peV" id="zpd-NC-Sgi"/>
  1648. <outlet property="creatorNameLabel" destination="Dpn-zH-CmL" id="pfR-iv-ICU"/>
  1649. <outlet property="nameLabel" destination="84M-Lu-fSm" id="HrP-Qi-COE"/>
  1650. </connections>
  1651. </tableViewCell>
  1652. </prototypes>
  1653. <connections>
  1654. <outlet property="dataSource" destination="NM5-wF-syo" id="AZ8-ou-ky9"/>
  1655. <outlet property="delegate" destination="NM5-wF-syo" id="5L3-fm-JRE"/>
  1656. </connections>
  1657. </tableView>
  1658. </tableViewController>
  1659. <placeholder placeholderIdentifier="IBFirstResponder" id="cSz-CB-Ik8" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1660. </objects>
  1661. <point key="canvasLocation" x="3044" y="-1252"/>
  1662. </scene>
  1663. <!--Modifier le contact-->
  1664. <scene sceneID="VNo-4r-iGn">
  1665. <objects>
  1666. <tableViewController storyboardIdentifier="EditContactViewController" id="B4x-zQ-paX" customClass="EditContactViewController" sceneMemberID="viewController">
  1667. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="9B2-uJ-PYl">
  1668. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1669. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1670. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1671. <sections>
  1672. <tableViewSection id="bCA-fU-mLq">
  1673. <cells>
  1674. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="100" id="rfi-kc-yYx">
  1675. <rect key="frame" x="0.0" y="35" width="375" height="100"/>
  1676. <autoresizingMask key="autoresizingMask"/>
  1677. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rfi-kc-yYx" id="1Aq-Ag-ucy">
  1678. <rect key="frame" x="0.0" y="0.0" width="375" height="99.5"/>
  1679. <autoresizingMask key="autoresizingMask"/>
  1680. <subviews>
  1681. <view contentMode="scaleToFill" id="zbC-wn-7Hd" customClass="EditableAvatarView">
  1682. <rect key="frame" x="12" y="8" width="84" height="84"/>
  1683. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1684. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1685. </view>
  1686. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Prénom" minimumFontSize="17" clearButtonMode="whileEditing" id="uv8-Zw-8w0">
  1687. <rect key="frame" x="109" y="18" width="254" height="30"/>
  1688. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1689. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1690. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1691. <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
  1692. </textField>
  1693. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Nom" minimumFontSize="17" clearButtonMode="whileEditing" id="wpY-cw-D2O">
  1694. <rect key="frame" x="109" y="52" width="254" height="30"/>
  1695. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1696. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1697. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1698. <textInputTraits key="textInputTraits" autocapitalizationType="words"/>
  1699. </textField>
  1700. </subviews>
  1701. </tableViewCellContentView>
  1702. </tableViewCell>
  1703. </cells>
  1704. </tableViewSection>
  1705. </sections>
  1706. <connections>
  1707. <outlet property="dataSource" destination="B4x-zQ-paX" id="emW-0o-qYZ"/>
  1708. <outlet property="delegate" destination="B4x-zQ-paX" id="w1S-2u-X36"/>
  1709. </connections>
  1710. </tableView>
  1711. <navigationItem key="navigationItem" title="Modifier le contact" id="Leg-Pw-PQ8"/>
  1712. <connections>
  1713. <outlet property="avatarView" destination="zbC-wn-7Hd" id="RyT-AV-aEz"/>
  1714. <outlet property="firstNameTextField" destination="uv8-Zw-8w0" id="J2A-0V-Zix"/>
  1715. <outlet property="lastNameTextField" destination="wpY-cw-D2O" id="9kW-JM-aQd"/>
  1716. </connections>
  1717. </tableViewController>
  1718. <placeholder placeholderIdentifier="IBFirstResponder" id="b8z-Hz-rif" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1719. </objects>
  1720. <point key="canvasLocation" x="3044" y="-707"/>
  1721. </scene>
  1722. <!--Sélectionner un contact-->
  1723. <scene sceneID="Ixe-lK-McQ">
  1724. <objects>
  1725. <viewController id="OvB-ud-WFO" customClass="ContactPickerViewController" sceneMemberID="viewController">
  1726. <view key="view" contentMode="scaleToFill" id="976-Ac-Msp">
  1727. <rect key="frame" x="0.0" y="64" width="375" height="603"/>
  1728. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1729. <subviews>
  1730. <tableView opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="5iW-dy-4an">
  1731. <rect key="frame" x="0.0" y="0.0" width="375" height="603"/>
  1732. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1733. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1734. <inset key="contentInset" minX="0.0" minY="44" maxX="0.0" maxY="0.0"/>
  1735. <prototypes>
  1736. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ContactCell" id="WR3-R8-O61" customClass="ContactCell">
  1737. <rect key="frame" x="0.0" y="22" width="375" height="44"/>
  1738. <autoresizingMask key="autoresizingMask"/>
  1739. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="WR3-R8-O61" id="Epf-Rg-KDe">
  1740. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1741. <autoresizingMask key="autoresizingMask"/>
  1742. <subviews>
  1743. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Prénom Nom" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="yS3-b1-W8Z" customClass="ContactNameLabel">
  1744. <rect key="frame" x="15" y="11" width="272" height="23"/>
  1745. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1746. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1747. <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
  1748. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1749. <nil key="highlightedColor"/>
  1750. </label>
  1751. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="IDENTITÉ" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="q73-1s-ijc">
  1752. <rect key="frame" x="296" y="18" width="72" height="21"/>
  1753. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1754. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1755. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1756. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1757. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1758. </label>
  1759. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification32-2.png" id="lzw-Mh-nCn">
  1760. <rect key="frame" x="334" y="9" width="32" height="8"/>
  1761. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1762. <inset key="insetFor6xAndEarlier" minX="-5" minY="0.0" maxX="5" maxY="0.0"/>
  1763. </imageView>
  1764. </subviews>
  1765. </tableViewCellContentView>
  1766. <connections>
  1767. <outlet property="identityLabel" destination="q73-1s-ijc" id="NRg-B0-V9h"/>
  1768. <outlet property="nameLabel" destination="yS3-b1-W8Z" id="Af2-qC-ikU"/>
  1769. <outlet property="verificationLevel" destination="lzw-Mh-nCn" id="Pes-wx-zzk"/>
  1770. </connections>
  1771. </tableViewCell>
  1772. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CreateGroupCell" rowHeight="60" id="Zkc-Cg-Lb6" customClass="CreateGroupCell">
  1773. <rect key="frame" x="0.0" y="66" width="375" height="60"/>
  1774. <autoresizingMask key="autoresizingMask"/>
  1775. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Zkc-Cg-Lb6" id="Qx2-Sf-jia">
  1776. <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
  1777. <autoresizingMask key="autoresizingMask"/>
  1778. <subviews>
  1779. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Créer un nouveau groupe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="WlP-nR-QGc">
  1780. <rect key="frame" x="15" y="18" width="272" height="23"/>
  1781. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1782. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1783. <fontDescription key="fontDescription" type="system" pointSize="19"/>
  1784. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1785. <nil key="highlightedColor"/>
  1786. </label>
  1787. </subviews>
  1788. </tableViewCellContentView>
  1789. <connections>
  1790. <outlet property="titleLabel" destination="WlP-nR-QGc" id="LmP-ko-Bdc"/>
  1791. </connections>
  1792. </tableViewCell>
  1793. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupCell" rowHeight="60" id="Ijh-vJ-b1G" customClass="GroupCell">
  1794. <rect key="frame" x="0.0" y="126" width="375" height="60"/>
  1795. <autoresizingMask key="autoresizingMask"/>
  1796. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Ijh-vJ-b1G" id="bqo-MU-g3B">
  1797. <rect key="frame" x="0.0" y="0.0" width="375" height="59.5"/>
  1798. <autoresizingMask key="autoresizingMask"/>
  1799. <subviews>
  1800. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="# membres" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="xRB-Jy-pi3">
  1801. <rect key="frame" x="220" y="36" width="133" height="14"/>
  1802. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1803. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1804. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1805. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1806. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1807. </label>
  1808. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nom du groupe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="SOs-ZG-GL4">
  1809. <rect key="frame" x="9" y="10" width="350" height="22"/>
  1810. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1811. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="5" maxY="0.0"/>
  1812. <fontDescription key="fontDescription" type="boldSystem" pointSize="19"/>
  1813. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1814. <nil key="highlightedColor"/>
  1815. </label>
  1816. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Créateur de groupe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="3Ud-EH-DX4">
  1817. <rect key="frame" x="8" y="36" width="255" height="14"/>
  1818. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1819. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1820. <fontDescription key="fontDescription" type="system" pointSize="11"/>
  1821. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1822. <color key="highlightedColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1823. </label>
  1824. </subviews>
  1825. </tableViewCellContentView>
  1826. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1827. <connections>
  1828. <outlet property="countMemberLabel" destination="xRB-Jy-pi3" id="dzc-ta-MJi"/>
  1829. <outlet property="creatorLabel" destination="3Ud-EH-DX4" id="4lv-Au-OAn"/>
  1830. <outlet property="groupNameLabel" destination="SOs-ZG-GL4" id="4YD-KS-TBg"/>
  1831. </connections>
  1832. </tableViewCell>
  1833. </prototypes>
  1834. <connections>
  1835. <outlet property="dataSource" destination="OvB-ud-WFO" id="3bF-1n-nf4"/>
  1836. <outlet property="delegate" destination="OvB-ud-WFO" id="IGI-aC-z3S"/>
  1837. </connections>
  1838. </tableView>
  1839. <searchBar contentMode="redraw" placeholder="Rechercher" id="CLe-XW-8g8">
  1840. <rect key="frame" x="0.0" y="0.0" width="375" height="44"/>
  1841. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1842. <textInputTraits key="textInputTraits"/>
  1843. <connections>
  1844. <outlet property="delegate" destination="OvB-ud-WFO" id="1fl-tf-JEF"/>
  1845. </connections>
  1846. </searchBar>
  1847. </subviews>
  1848. </view>
  1849. <extendedEdge key="edgesForExtendedLayout"/>
  1850. <navigationItem key="navigationItem" title="Sélectionner un contact" id="cNq-Pt-Uma">
  1851. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="j0Z-qX-yv0">
  1852. <connections>
  1853. <action selector="cancelAction:" destination="OvB-ud-WFO" id="ekI-B1-O1R"/>
  1854. </connections>
  1855. </barButtonItem>
  1856. <segmentedControl key="titleView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="9mW-FX-ba3">
  1857. <rect key="frame" x="124" y="7" width="128" height="30"/>
  1858. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1859. <segments>
  1860. <segment title="Solo"/>
  1861. <segment title="Groupe"/>
  1862. </segments>
  1863. <connections>
  1864. <action selector="segmentedControlChanged:" destination="OvB-ud-WFO" eventType="valueChanged" id="4yc-4d-osa"/>
  1865. </connections>
  1866. </segmentedControl>
  1867. <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="ddH-MT-HLn"/>
  1868. </navigationItem>
  1869. <connections>
  1870. <outlet property="searchBar" destination="CLe-XW-8g8" id="JfI-pf-dgg"/>
  1871. <outlet property="searchDisplayController" destination="AJK-sI-CyX" id="FLS-wz-l0t"/>
  1872. <outlet property="segmentedControl" destination="9mW-FX-ba3" id="lyQ-bl-hSC"/>
  1873. <outlet property="tableView" destination="5iW-dy-4an" id="u72-fo-6AJ"/>
  1874. </connections>
  1875. </viewController>
  1876. <placeholder placeholderIdentifier="IBFirstResponder" id="mXW-PO-p2r" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1877. <searchDisplayController id="AJK-sI-CyX">
  1878. <connections>
  1879. <outlet property="delegate" destination="OvB-ud-WFO" id="Usv-uV-3zv"/>
  1880. <outlet property="searchBar" destination="CLe-XW-8g8" id="zEf-HF-0Fi"/>
  1881. <outlet property="searchContentsController" destination="OvB-ud-WFO" id="Icu-Mv-cXS"/>
  1882. <outlet property="searchResultsDataSource" destination="OvB-ud-WFO" id="chN-ce-Yhv"/>
  1883. <outlet property="searchResultsDelegate" destination="OvB-ud-WFO" id="ARm-0E-NkC"/>
  1884. </connections>
  1885. </searchDisplayController>
  1886. </objects>
  1887. <point key="canvasLocation" x="5672" y="161"/>
  1888. </scene>
  1889. <!--Messages-->
  1890. <scene sceneID="JMs-VF-NWu">
  1891. <objects>
  1892. <navigationController storyboardIdentifier="chatNavigationController" id="4Fs-j8-Z1S" customClass="ChatNavigationController" sceneMemberID="viewController">
  1893. <tabBarItem key="tabBarItem" title="Messages" image="08-chat.png" id="nZg-gf-uED"/>
  1894. <toolbarItems/>
  1895. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3xP-bT-Tja" customClass="StatusNavigationBar">
  1896. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  1897. <autoresizingMask key="autoresizingMask"/>
  1898. </navigationBar>
  1899. <nil name="viewControllers"/>
  1900. <connections>
  1901. <segue destination="Kji-Zw-ER6" kind="relationship" relationship="rootViewController" id="6Jn-Ta-Ldg"/>
  1902. </connections>
  1903. </navigationController>
  1904. <placeholder placeholderIdentifier="IBFirstResponder" id="n2J-3l-9bm" userLabel="First Responder" sceneMemberID="firstResponder"/>
  1905. </objects>
  1906. <point key="canvasLocation" x="863" y="486"/>
  1907. </scene>
  1908. <!--Mon ID-->
  1909. <scene sceneID="Ng9-o6-LBD">
  1910. <objects>
  1911. <tableViewController storyboardIdentifier="myIdentityViewController" id="I0k-J8-Vtl" customClass="MyIdentityViewController" sceneMemberID="viewController">
  1912. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="QV7-Cf-0FU">
  1913. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  1914. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  1915. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1916. <sections>
  1917. <tableViewSection id="QUc-at-DuC">
  1918. <cells>
  1919. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="P2B-cF-oTk">
  1920. <rect key="frame" x="0.0" y="35" width="375" height="44"/>
  1921. <autoresizingMask key="autoresizingMask"/>
  1922. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="P2B-cF-oTk" id="ED9-Xa-OTK">
  1923. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  1924. <autoresizingMask key="autoresizingMask"/>
  1925. <subviews>
  1926. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID Threema" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="9yr-AD-cUK">
  1927. <rect key="frame" x="15" y="11" width="133" height="21"/>
  1928. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1929. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1930. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1931. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1932. <nil key="highlightedColor"/>
  1933. </label>
  1934. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="lkL-5x-V15" customClass="CopyLabel">
  1935. <rect key="frame" x="225" y="11" width="135" height="21"/>
  1936. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  1937. <inset key="insetFor6xAndEarlier" minX="0.0" minY="0.0" maxX="4" maxY="0.0"/>
  1938. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1939. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1940. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1941. </label>
  1942. </subviews>
  1943. </tableViewCellContentView>
  1944. </tableViewCell>
  1945. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="64" id="gvv-id-Pmc">
  1946. <rect key="frame" x="0.0" y="79" width="375" height="64"/>
  1947. <autoresizingMask key="autoresizingMask"/>
  1948. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gvv-id-Pmc" id="omR-0q-8vv">
  1949. <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
  1950. <autoresizingMask key="autoresizingMask"/>
  1951. <subviews>
  1952. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Empreinte de clé" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="s24-iI-yAz">
  1953. <rect key="frame" x="15" y="11" width="261" height="21"/>
  1954. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1955. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1956. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  1957. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1958. <nil key="highlightedColor"/>
  1959. </label>
  1960. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="amq-yB-BQV" customClass="CopyLabel">
  1961. <rect key="frame" x="14" y="34" width="352" height="21"/>
  1962. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  1963. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  1964. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  1965. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1966. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  1967. </label>
  1968. </subviews>
  1969. </tableViewCellContentView>
  1970. </tableViewCell>
  1971. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="236" id="u9k-C5-OBI">
  1972. <rect key="frame" x="0.0" y="143" width="375" height="236"/>
  1973. <autoresizingMask key="autoresizingMask"/>
  1974. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="u9k-C5-OBI" id="fVH-Te-y8E">
  1975. <rect key="frame" x="0.0" y="0.0" width="375" height="235.5"/>
  1976. <autoresizingMask key="autoresizingMask"/>
  1977. <subviews>
  1978. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="Az6-Ak-eaE">
  1979. <rect key="frame" x="85" y="18" width="200" height="200"/>
  1980. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  1981. </imageView>
  1982. </subviews>
  1983. </tableViewCellContentView>
  1984. </tableViewCell>
  1985. </cells>
  1986. </tableViewSection>
  1987. <tableViewSection id="PTc-Jj-PHF">
  1988. <string key="footerTitle">Le fait de lier votre adresse électronique ou numéro de téléphone portable à votre ID permet aux autres personnes de vous trouver automatiquement sur Threema si vous faites partie de leurs contacts dans leur carnet d'adresses.</string>
  1989. <cells>
  1990. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="y1P-yl-vpA" detailTextLabel="QJA-8c-HMa" style="IBUITableViewCellStyleValue1" id="sJC-sz-v4G">
  1991. <rect key="frame" x="0.0" y="399" width="375" height="44"/>
  1992. <autoresizingMask key="autoresizingMask"/>
  1993. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="sJC-sz-v4G" id="988-gI-LiJ">
  1994. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  1995. <autoresizingMask key="autoresizingMask"/>
  1996. <subviews>
  1997. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="E-mail lié" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="y1P-yl-vpA">
  1998. <rect key="frame" x="16" y="12" width="96" height="20"/>
  1999. <autoresizingMask key="autoresizingMask"/>
  2000. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2001. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2002. <nil key="highlightedColor"/>
  2003. </label>
  2004. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="QJA-8c-HMa">
  2005. <rect key="frame" x="296" y="12" width="44" height="20"/>
  2006. <autoresizingMask key="autoresizingMask"/>
  2007. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2008. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2009. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2010. </label>
  2011. </subviews>
  2012. </tableViewCellContentView>
  2013. <connections>
  2014. <segue destination="7Bw-bZ-Nl3" kind="modal" id="1uw-nq-mr5"/>
  2015. </connections>
  2016. </tableViewCell>
  2017. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="1Hj-1l-hxJ" detailTextLabel="kHj-SA-fKt" style="IBUITableViewCellStyleValue1" id="Swj-yx-caI">
  2018. <rect key="frame" x="0.0" y="443" width="375" height="44"/>
  2019. <autoresizingMask key="autoresizingMask"/>
  2020. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Swj-yx-caI" id="Ozc-L4-VZ3">
  2021. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2022. <autoresizingMask key="autoresizingMask"/>
  2023. <subviews>
  2024. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Numéro lié" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="1Hj-1l-hxJ">
  2025. <rect key="frame" x="16" y="12" width="117" height="20"/>
  2026. <autoresizingMask key="autoresizingMask"/>
  2027. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2028. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2029. <nil key="highlightedColor"/>
  2030. </label>
  2031. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="kHj-SA-fKt">
  2032. <rect key="frame" x="296" y="12" width="44" height="20"/>
  2033. <autoresizingMask key="autoresizingMask"/>
  2034. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2035. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2036. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2037. </label>
  2038. </subviews>
  2039. </tableViewCellContentView>
  2040. </tableViewCell>
  2041. </cells>
  2042. </tableViewSection>
  2043. <tableViewSection footerTitle="Le surnom public s'affiche au destinataire lorsqu'il reçoit une notification Push d'un message que vous lui avez envoyé." id="L3t-4B-qec">
  2044. <cells>
  2045. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Y7W-17-bwW" detailTextLabel="5Ev-4B-WDK" style="IBUITableViewCellStyleValue1" id="UMK-uT-KJe">
  2046. <rect key="frame" x="0.0" y="591" width="375" height="44"/>
  2047. <autoresizingMask key="autoresizingMask"/>
  2048. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UMK-uT-KJe" id="uhc-jM-HYT">
  2049. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2050. <autoresizingMask key="autoresizingMask"/>
  2051. <subviews>
  2052. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Surnom public" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Y7W-17-bwW">
  2053. <rect key="frame" x="16" y="12" width="77" height="20"/>
  2054. <autoresizingMask key="autoresizingMask"/>
  2055. <accessibility key="accessibilityConfiguration" label="Surnom public"/>
  2056. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2057. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2058. <nil key="highlightedColor"/>
  2059. </label>
  2060. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="5Ev-4B-WDK">
  2061. <rect key="frame" x="296" y="12" width="44" height="20"/>
  2062. <autoresizingMask key="autoresizingMask"/>
  2063. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2064. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2065. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2066. </label>
  2067. </subviews>
  2068. </tableViewCellContentView>
  2069. <connections>
  2070. <segue destination="1K5-up-8kR" kind="modal" identifier="SetPublicNickname" id="RdV-8v-dgs"/>
  2071. </connections>
  2072. </tableViewCell>
  2073. </cells>
  2074. </tableViewSection>
  2075. <tableViewSection footerTitle="" id="XC2-xB-TVD">
  2076. <cells>
  2077. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="BackupCell" textLabel="0v5-EP-EDx" style="IBUITableViewCellStyleDefault" id="pam-C2-jA3">
  2078. <rect key="frame" x="0.0" y="707" width="375" height="44"/>
  2079. <autoresizingMask key="autoresizingMask"/>
  2080. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="pam-C2-jA3" id="oKl-js-aWU">
  2081. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2082. <autoresizingMask key="autoresizingMask"/>
  2083. <subviews>
  2084. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sauvegarder" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0v5-EP-EDx">
  2085. <rect key="frame" x="15" y="0.0" width="325" height="43"/>
  2086. <autoresizingMask key="autoresizingMask"/>
  2087. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2088. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2089. <nil key="highlightedColor"/>
  2090. </label>
  2091. </subviews>
  2092. </tableViewCellContentView>
  2093. </tableViewCell>
  2094. </cells>
  2095. </tableViewSection>
  2096. <tableViewSection id="cvq-3z-Jgu">
  2097. <cells>
  2098. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="IDRecoveryCell" textLabel="b4Z-TN-4jn" detailTextLabel="UYI-5G-D23" style="IBUITableViewCellStyleValue1" id="BIQ-jY-ebd">
  2099. <rect key="frame" x="0.0" y="771" width="375" height="44"/>
  2100. <autoresizingMask key="autoresizingMask"/>
  2101. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="BIQ-jY-ebd" id="HYD-Lr-Tyh">
  2102. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2103. <autoresizingMask key="autoresizingMask"/>
  2104. <subviews>
  2105. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Mot de passe de suppression d'ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" id="b4Z-TN-4jn">
  2106. <rect key="frame" x="15" y="12" width="174" height="19"/>
  2107. <autoresizingMask key="autoresizingMask"/>
  2108. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2109. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2110. <nil key="highlightedColor"/>
  2111. </label>
  2112. <label opaque="NO" multipleTouchEnabled="YES" contentMode="left" text="..." textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" minimumFontSize="10" id="UYI-5G-D23">
  2113. <rect key="frame" x="327" y="12" width="13" height="19"/>
  2114. <autoresizingMask key="autoresizingMask"/>
  2115. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  2116. <color key="textColor" red="0.55686274509803924" green="0.55686274509803924" blue="0.57647058823529407" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2117. <nil key="highlightedColor"/>
  2118. </label>
  2119. </subviews>
  2120. </tableViewCellContentView>
  2121. </tableViewCell>
  2122. </cells>
  2123. </tableViewSection>
  2124. <tableViewSection footerTitle="" id="rpD-Oi-fOo">
  2125. <cells>
  2126. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="tZ9-Lw-a05" style="IBUITableViewCellStyleDefault" id="jiq-15-y5Y">
  2127. <rect key="frame" x="0.0" y="835" width="375" height="44"/>
  2128. <autoresizingMask key="autoresizingMask"/>
  2129. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jiq-15-y5Y" id="bXz-r6-sy2">
  2130. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2131. <autoresizingMask key="autoresizingMask"/>
  2132. <subviews>
  2133. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Supprimer l'ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="tZ9-Lw-a05">
  2134. <rect key="frame" x="15" y="0.0" width="345" height="43"/>
  2135. <autoresizingMask key="autoresizingMask"/>
  2136. <accessibility key="accessibilityConfiguration">
  2137. <accessibilityTraits key="traits" button="YES" staticText="YES"/>
  2138. </accessibility>
  2139. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2140. <color key="textColor" red="1" green="0.23137254901960785" blue="0.18823529411764706" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2141. <nil key="highlightedColor"/>
  2142. </label>
  2143. </subviews>
  2144. </tableViewCellContentView>
  2145. </tableViewCell>
  2146. </cells>
  2147. </tableViewSection>
  2148. </sections>
  2149. <connections>
  2150. <outlet property="dataSource" destination="I0k-J8-Vtl" id="icO-Yi-qfd"/>
  2151. <outlet property="delegate" destination="I0k-J8-Vtl" id="j9k-nq-dg9"/>
  2152. </connections>
  2153. </tableView>
  2154. <navigationItem key="navigationItem" title="Mon ID" id="5ap-VU-9eg">
  2155. <barButtonItem key="rightBarButtonItem" systemItem="camera" id="EED-Sp-HrR">
  2156. <connections>
  2157. <action selector="scanIdentity:" destination="I0k-J8-Vtl" id="Zvx-tY-LFX"/>
  2158. </connections>
  2159. </barButtonItem>
  2160. </navigationItem>
  2161. <connections>
  2162. <outlet property="identityLabel" destination="lkL-5x-V15" id="ESl-Ko-Vg9"/>
  2163. <outlet property="keyFingerprintLabel" destination="amq-yB-BQV" id="9yJ-3H-gIK"/>
  2164. <outlet property="linkedEmailLabel" destination="QJA-8c-HMa" id="yb6-FE-HRE"/>
  2165. <outlet property="linkedMobileNoLabel" destination="kHj-SA-fKt" id="Sor-aS-3qA"/>
  2166. <outlet property="pushFromNameLabel" destination="5Ev-4B-WDK" id="7dU-gs-hHE"/>
  2167. <outlet property="qrImageView" destination="Az6-Ak-eaE" id="eQj-Vp-ATT"/>
  2168. <outlet property="revocationLabelDetail" destination="UYI-5G-D23" id="PTt-KT-WjN"/>
  2169. <segue destination="L44-Xr-JJu" kind="modal" identifier="LinkMobileNo" id="yV1-R7-Pko"/>
  2170. <segue destination="wPu-1J-vpq" kind="modal" identifier="EnterCode" id="w23-ym-3jW"/>
  2171. </connections>
  2172. </tableViewController>
  2173. <placeholder placeholderIdentifier="IBFirstResponder" id="gmo-qI-mCg" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2174. </objects>
  2175. <point key="canvasLocation" x="1471" y="1265"/>
  2176. </scene>
  2177. <!--Notifications-->
  2178. <scene sceneID="UYi-jV-Yvw">
  2179. <objects>
  2180. <tableViewController id="Qt8-lZ-oDY" customClass="NotificationSettingsViewController" sceneMemberID="viewController">
  2181. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="6Pr-Xa-c1H">
  2182. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2183. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2184. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2185. <sections>
  2186. <tableViewSection headerTitle="Dans l'appli" id="E3e-w1-EBY">
  2187. <cells>
  2188. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="uOZ-Lo-9JS">
  2189. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2190. <autoresizingMask key="autoresizingMask"/>
  2191. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uOZ-Lo-9JS" id="Eqs-ip-ZjK">
  2192. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2193. <autoresizingMask key="autoresizingMask"/>
  2194. <subviews>
  2195. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sons" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="h8v-3h-U2A">
  2196. <rect key="frame" x="14" y="11" width="289" height="21"/>
  2197. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2198. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2199. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2200. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2201. <nil key="highlightedColor"/>
  2202. </label>
  2203. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="TJZ-Sf-O6a">
  2204. <rect key="frame" x="305" y="6" width="50" height="31"/>
  2205. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2206. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2207. <connections>
  2208. <action selector="inAppSoundsChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="eSz-4q-AWd"/>
  2209. </connections>
  2210. </switch>
  2211. </subviews>
  2212. </tableViewCellContentView>
  2213. </tableViewCell>
  2214. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="9Yv-aB-4BH">
  2215. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  2216. <autoresizingMask key="autoresizingMask"/>
  2217. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9Yv-aB-4BH" id="l33-4o-s1k">
  2218. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2219. <autoresizingMask key="autoresizingMask"/>
  2220. <subviews>
  2221. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Vibreur" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Gcx-w6-qiQ">
  2222. <rect key="frame" x="14" y="11" width="289" height="21"/>
  2223. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2224. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2225. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2226. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2227. <nil key="highlightedColor"/>
  2228. </label>
  2229. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="pef-mK-8be">
  2230. <rect key="frame" x="305" y="6" width="50" height="31"/>
  2231. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2232. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2233. <connections>
  2234. <action selector="inAppVibrateChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="pqP-S7-wGn"/>
  2235. </connections>
  2236. </switch>
  2237. </subviews>
  2238. </tableViewCellContentView>
  2239. </tableViewCell>
  2240. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="3e4-Io-d81">
  2241. <rect key="frame" x="0.0" y="143.5" width="375" height="44"/>
  2242. <autoresizingMask key="autoresizingMask"/>
  2243. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3e4-Io-d81" id="g3w-oW-7pt">
  2244. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2245. <autoresizingMask key="autoresizingMask"/>
  2246. <subviews>
  2247. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Aperçu" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="KE5-2h-Odt">
  2248. <rect key="frame" x="14" y="11" width="289" height="21"/>
  2249. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2250. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2251. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2252. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2253. <nil key="highlightedColor"/>
  2254. </label>
  2255. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="RHm-Rd-mqd">
  2256. <rect key="frame" x="305" y="6" width="50" height="31"/>
  2257. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2258. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2259. <connections>
  2260. <action selector="inAppPreviewChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="lDT-qp-geP"/>
  2261. </connections>
  2262. </switch>
  2263. </subviews>
  2264. </tableViewCellContentView>
  2265. </tableViewCell>
  2266. </cells>
  2267. </tableViewSection>
  2268. <tableViewSection headerTitle="Notifications Push" id="m6X-1g-Z2I">
  2269. <cells>
  2270. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="HEL-r7-3ad" detailTextLabel="GKA-0Y-RnP" style="IBUITableViewCellStyleValue1" id="vTM-n3-jaO">
  2271. <rect key="frame" x="0.0" y="235.5" width="375" height="44"/>
  2272. <autoresizingMask key="autoresizingMask"/>
  2273. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="vTM-n3-jaO" id="Dcl-Qs-OSv">
  2274. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2275. <autoresizingMask key="autoresizingMask"/>
  2276. <subviews>
  2277. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Son" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HEL-r7-3ad">
  2278. <rect key="frame" x="15" y="12" width="49.5" height="20.5"/>
  2279. <autoresizingMask key="autoresizingMask"/>
  2280. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2281. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2282. <nil key="highlightedColor"/>
  2283. </label>
  2284. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GKA-0Y-RnP">
  2285. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  2286. <autoresizingMask key="autoresizingMask"/>
  2287. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2288. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2289. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2290. </label>
  2291. </subviews>
  2292. </tableViewCellContentView>
  2293. <connections>
  2294. <segue destination="Phx-x2-Ggd" kind="push" id="AfW-k9-0yS"/>
  2295. </connections>
  2296. </tableViewCell>
  2297. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Rb2-cP-tmR">
  2298. <rect key="frame" x="0.0" y="279.5" width="375" height="44"/>
  2299. <autoresizingMask key="autoresizingMask"/>
  2300. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Rb2-cP-tmR" id="MFv-Sl-T50">
  2301. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2302. <autoresizingMask key="autoresizingMask"/>
  2303. <subviews>
  2304. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="8lc-Zk-gyS">
  2305. <rect key="frame" x="305" y="6" width="50" height="31"/>
  2306. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2307. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2308. <connections>
  2309. <action selector="pushGroupChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="S70-UY-uPu"/>
  2310. </connections>
  2311. </switch>
  2312. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" misplaced="YES" text="Notifications de groupes" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="syQ-cU-B7P">
  2313. <rect key="frame" x="15" y="11" width="285" height="21"/>
  2314. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2315. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2316. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2317. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2318. <nil key="highlightedColor"/>
  2319. </label>
  2320. </subviews>
  2321. </tableViewCellContentView>
  2322. </tableViewCell>
  2323. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="GTL-R7-ZdU" detailTextLabel="AFn-cS-yu4" style="IBUITableViewCellStyleValue1" id="XbG-As-U8R">
  2324. <rect key="frame" x="0.0" y="323.5" width="375" height="44"/>
  2325. <autoresizingMask key="autoresizingMask"/>
  2326. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="XbG-As-U8R" id="c2v-OJ-2rz">
  2327. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2328. <autoresizingMask key="autoresizingMask"/>
  2329. <subviews>
  2330. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Son du groupe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="GTL-R7-ZdU">
  2331. <rect key="frame" x="15" y="12" width="101" height="20.5"/>
  2332. <autoresizingMask key="autoresizingMask"/>
  2333. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2334. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2335. <nil key="highlightedColor"/>
  2336. </label>
  2337. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AFn-cS-yu4">
  2338. <rect key="frame" x="296" y="12" width="44" height="20.5"/>
  2339. <autoresizingMask key="autoresizingMask"/>
  2340. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2341. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2342. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2343. </label>
  2344. </subviews>
  2345. </tableViewCellContentView>
  2346. <connections>
  2347. <segue destination="dtN-aU-IlJ" kind="push" identifier="EditPushGroupSound" id="yqf-dq-zZS"/>
  2348. </connections>
  2349. </tableViewCell>
  2350. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="jyB-3R-QIP">
  2351. <rect key="frame" x="0.0" y="367.5" width="375" height="44"/>
  2352. <autoresizingMask key="autoresizingMask"/>
  2353. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jyB-3R-QIP" id="zOQ-Xf-qKb">
  2354. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2355. <autoresizingMask key="autoresizingMask"/>
  2356. <subviews>
  2357. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="6Ft-y2-OZY">
  2358. <rect key="frame" x="305" y="6" width="49" height="31"/>
  2359. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2360. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  2361. <connections>
  2362. <action selector="pushGroupChanged:" destination="Qt8-lZ-oDY" eventType="valueChanged" id="LFc-Ya-GMO"/>
  2363. </connections>
  2364. </switch>
  2365. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" misplaced="YES" text="Decrypt Notification" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="1RW-ke-SeD" userLabel="Decrypt Notification">
  2366. <rect key="frame" x="15" y="11" width="285" height="21"/>
  2367. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2368. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2369. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2370. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2371. <nil key="highlightedColor"/>
  2372. </label>
  2373. </subviews>
  2374. </tableViewCellContentView>
  2375. </tableViewCell>
  2376. </cells>
  2377. </tableViewSection>
  2378. </sections>
  2379. <connections>
  2380. <outlet property="dataSource" destination="Qt8-lZ-oDY" id="s78-vN-FWj"/>
  2381. <outlet property="delegate" destination="Qt8-lZ-oDY" id="5MC-dA-sLU"/>
  2382. </connections>
  2383. </tableView>
  2384. <navigationItem key="navigationItem" title="Notifications" id="3bR-To-00h"/>
  2385. <connections>
  2386. <outlet property="inAppPreviewSwitch" destination="RHm-Rd-mqd" id="bJE-hN-FxY"/>
  2387. <outlet property="inAppSoundsSwitch" destination="TJZ-Sf-O6a" id="7vw-lB-ZZw"/>
  2388. <outlet property="inAppVibrateSwitch" destination="pef-mK-8be" id="JuQ-NH-no4"/>
  2389. <outlet property="pushGroupSoundCell" destination="XbG-As-U8R" id="Pfu-zB-z0V"/>
  2390. <outlet property="pushGroupSoundLabel" destination="AFn-cS-yu4" id="Xru-nf-oal"/>
  2391. <outlet property="pushGroupSwitch" destination="8lc-Zk-gyS" id="1dY-Wu-7D0"/>
  2392. <outlet property="pushSoundLabel" destination="GKA-0Y-RnP" id="Gwa-WU-1Xw"/>
  2393. </connections>
  2394. </tableViewController>
  2395. <placeholder placeholderIdentifier="IBFirstResponder" id="fia-tG-v4N" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2396. </objects>
  2397. <point key="canvasLocation" x="2442" y="2912"/>
  2398. </scene>
  2399. <!--Son Push-->
  2400. <scene sceneID="DRo-tk-lDy">
  2401. <objects>
  2402. <tableViewController id="Phx-x2-Ggd" customClass="PushSoundViewController" sceneMemberID="viewController">
  2403. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="Y9Z-L5-pHX">
  2404. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2405. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2406. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2407. <prototypes>
  2408. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="D32-Ax-dYd" style="IBUITableViewCellStyleDefault" id="9hh-7D-nOp">
  2409. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2410. <autoresizingMask key="autoresizingMask"/>
  2411. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="9hh-7D-nOp" id="Fha-gP-uxq">
  2412. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2413. <autoresizingMask key="autoresizingMask"/>
  2414. <subviews>
  2415. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Nom du son" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="D32-Ax-dYd">
  2416. <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
  2417. <autoresizingMask key="autoresizingMask"/>
  2418. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2419. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2420. <nil key="highlightedColor"/>
  2421. </label>
  2422. </subviews>
  2423. </tableViewCellContentView>
  2424. </tableViewCell>
  2425. </prototypes>
  2426. <connections>
  2427. <outlet property="dataSource" destination="Phx-x2-Ggd" id="mP9-YP-eOF"/>
  2428. <outlet property="delegate" destination="Phx-x2-Ggd" id="ndv-Ir-hfx"/>
  2429. </connections>
  2430. </tableView>
  2431. <navigationItem key="navigationItem" title="Son Push" id="022-qx-zgG"/>
  2432. </tableViewController>
  2433. <placeholder placeholderIdentifier="IBFirstResponder" id="QeY-qR-4dv" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2434. </objects>
  2435. <point key="canvasLocation" x="3068" y="3104"/>
  2436. </scene>
  2437. <!--Liste d'exclusion de synchro-->
  2438. <scene sceneID="wqf-3S-n3F">
  2439. <objects>
  2440. <tableViewController id="77C-YN-K8y" customClass="SyncExclusionListViewController" sceneMemberID="viewController">
  2441. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="9Nh-Eg-WTd">
  2442. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2443. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2444. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2445. <prototypes>
  2446. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="ExclusionCell" textLabel="Mxf-oi-QRp" style="IBUITableViewCellStyleDefault" id="4Qx-6f-8cY">
  2447. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  2448. <autoresizingMask key="autoresizingMask"/>
  2449. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="4Qx-6f-8cY" id="nwq-je-jHl">
  2450. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2451. <autoresizingMask key="autoresizingMask"/>
  2452. <subviews>
  2453. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Titre" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Mxf-oi-QRp">
  2454. <rect key="frame" x="16" y="0.0" width="344" height="43.5"/>
  2455. <autoresizingMask key="autoresizingMask"/>
  2456. <fontDescription key="fontDescription" type="system" pointSize="18"/>
  2457. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2458. <nil key="highlightedColor"/>
  2459. </label>
  2460. </subviews>
  2461. </tableViewCellContentView>
  2462. </tableViewCell>
  2463. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" reuseIdentifier="AddCell" id="prh-UQ-YjS">
  2464. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  2465. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2466. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="prh-UQ-YjS" id="QAR-w9-aFF">
  2467. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2468. <autoresizingMask key="autoresizingMask"/>
  2469. <subviews>
  2470. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="PlusButton.png" id="aa8-wa-dpo">
  2471. <rect key="frame" x="15" y="11" width="22" height="22"/>
  2472. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2473. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2474. </imageView>
  2475. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Ajouter une exclusion..." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="RAy-BD-jyZ">
  2476. <rect key="frame" x="47" y="11" width="255" height="21"/>
  2477. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2478. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2479. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2480. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2481. <nil key="highlightedColor"/>
  2482. </label>
  2483. </subviews>
  2484. </tableViewCellContentView>
  2485. </tableViewCell>
  2486. </prototypes>
  2487. <connections>
  2488. <outlet property="dataSource" destination="77C-YN-K8y" id="ycu-sf-HhS"/>
  2489. <outlet property="delegate" destination="77C-YN-K8y" id="SDc-gW-FIi"/>
  2490. </connections>
  2491. </tableView>
  2492. <navigationItem key="navigationItem" title="Liste d'exclusion de synchro" id="h4A-vg-OB6"/>
  2493. </tableViewController>
  2494. <placeholder placeholderIdentifier="IBFirstResponder" id="vWW-iP-9DM" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2495. </objects>
  2496. <point key="canvasLocation" x="3068" y="1946"/>
  2497. </scene>
  2498. <!--Lier l'adresse électronique-->
  2499. <scene sceneID="l5d-Rw-IEc">
  2500. <objects>
  2501. <tableViewController id="QYa-wj-UfF" customClass="LinkEmailViewController" sceneMemberID="viewController">
  2502. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="bzU-SP-j9U">
  2503. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2504. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2505. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2506. <sections>
  2507. <tableViewSection id="C6x-Ig-Wrf">
  2508. <string key="footerTitle">Le fait de lier votre adresse électronique à votre ID permet aux autres personnes de vous trouver automatiquement sur Threema si votre adresse électronique est enregistrée dans leur carnet d'adresses.</string>
  2509. <cells>
  2510. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="1Xk-xD-yqQ">
  2511. <rect key="frame" x="0.0" y="35" width="375" height="85"/>
  2512. <autoresizingMask key="autoresizingMask"/>
  2513. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1Xk-xD-yqQ" id="E9F-9Q-tzr">
  2514. <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
  2515. <autoresizingMask key="autoresizingMask"/>
  2516. <subviews>
  2517. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="votre adresse électronique" minimumFontSize="17" clearButtonMode="always" id="wBP-jq-sAz">
  2518. <rect key="frame" x="14" y="39" width="349" height="34"/>
  2519. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2520. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2521. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2522. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  2523. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="emailAddress" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  2524. <connections>
  2525. <action selector="saveAction:" destination="QYa-wj-UfF" eventType="editingDidEndOnExit" id="eIv-LE-rgN"/>
  2526. </connections>
  2527. </textField>
  2528. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Adresse électronique" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="myc-qo-tN6">
  2529. <rect key="frame" x="15" y="11" width="294" height="21"/>
  2530. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2531. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2532. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2533. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2534. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2535. </label>
  2536. </subviews>
  2537. </tableViewCellContentView>
  2538. </tableViewCell>
  2539. </cells>
  2540. </tableViewSection>
  2541. </sections>
  2542. <connections>
  2543. <outlet property="dataSource" destination="QYa-wj-UfF" id="O02-Ou-aJp"/>
  2544. <outlet property="delegate" destination="QYa-wj-UfF" id="MCg-d2-DxN"/>
  2545. </connections>
  2546. </tableView>
  2547. <navigationItem key="navigationItem" title="Lier l'adresse électronique" id="2NV-Wg-po2">
  2548. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="pWS-hq-fg0">
  2549. <connections>
  2550. <action selector="cancelAction:" destination="QYa-wj-UfF" id="cJS-1p-sJ3"/>
  2551. </connections>
  2552. </barButtonItem>
  2553. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="Mti-zj-akb">
  2554. <connections>
  2555. <action selector="saveAction:" destination="QYa-wj-UfF" id="IBg-jA-q0G"/>
  2556. </connections>
  2557. </barButtonItem>
  2558. </navigationItem>
  2559. <connections>
  2560. <outlet property="emailTextField" destination="wBP-jq-sAz" id="15h-89-WQ1"/>
  2561. </connections>
  2562. </tableViewController>
  2563. <placeholder placeholderIdentifier="IBFirstResponder" id="J44-bd-DuA" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2564. </objects>
  2565. <point key="canvasLocation" x="4791" y="2912"/>
  2566. </scene>
  2567. <!--Surnom public-->
  2568. <scene sceneID="rkn-AV-9ja">
  2569. <objects>
  2570. <tableViewController id="3Ka-Iq-ckG" customClass="PushNameViewController" sceneMemberID="viewController">
  2571. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="J0W-Mz-exD">
  2572. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2573. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2574. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2575. <sections>
  2576. <tableViewSection id="sdp-VL-j5M">
  2577. <string key="footerTitle">Le surnom public est inclus dans les notifications Push des messages que vous envoyez. Nous vous recommandons d'utiliser seulement votre prénom ou un pseudonyme.</string>
  2578. <cells>
  2579. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="uVA-G0-69Y">
  2580. <rect key="frame" x="0.0" y="35" width="375" height="85"/>
  2581. <autoresizingMask key="autoresizingMask"/>
  2582. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="uVA-G0-69Y" id="BhV-s3-58Y">
  2583. <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
  2584. <autoresizingMask key="autoresizingMask"/>
  2585. <subviews>
  2586. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="votre surnom public" minimumFontSize="17" clearButtonMode="always" id="pfX-nx-dys">
  2587. <rect key="frame" x="13" y="39" width="350" height="34"/>
  2588. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2589. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2590. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2591. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  2592. <textInputTraits key="textInputTraits" autocapitalizationType="words" autocorrectionType="no" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  2593. <connections>
  2594. <action selector="saveAction:" destination="3Ka-Iq-ckG" eventType="editingDidEndOnExit" id="JIk-ib-Ro2"/>
  2595. <outlet property="delegate" destination="3Ka-Iq-ckG" id="Osu-sO-iQZ"/>
  2596. </connections>
  2597. </textField>
  2598. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Surnom public" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="gGZ-U4-LbT">
  2599. <rect key="frame" x="15" y="11" width="268" height="21"/>
  2600. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2601. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  2602. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2603. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2604. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2605. </label>
  2606. </subviews>
  2607. </tableViewCellContentView>
  2608. </tableViewCell>
  2609. </cells>
  2610. </tableViewSection>
  2611. </sections>
  2612. <connections>
  2613. <outlet property="dataSource" destination="3Ka-Iq-ckG" id="n3o-wI-HMe"/>
  2614. <outlet property="delegate" destination="3Ka-Iq-ckG" id="CWB-KT-fiC"/>
  2615. </connections>
  2616. </tableView>
  2617. <navigationItem key="navigationItem" title="Surnom public" id="dNk-Ua-Fm2">
  2618. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="Vu6-wK-6ZO">
  2619. <connections>
  2620. <action selector="cancelAction:" destination="3Ka-Iq-ckG" id="GlV-xo-Gw2"/>
  2621. </connections>
  2622. </barButtonItem>
  2623. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="Cit-3C-pId">
  2624. <connections>
  2625. <action selector="saveAction:" destination="3Ka-Iq-ckG" id="gzP-4H-3hR"/>
  2626. </connections>
  2627. </barButtonItem>
  2628. </navigationItem>
  2629. <connections>
  2630. <outlet property="pushNameTextField" destination="pfX-nx-dys" id="ENh-Q6-3KA"/>
  2631. </connections>
  2632. </tableViewController>
  2633. <placeholder placeholderIdentifier="IBFirstResponder" id="cbj-Hx-SFu" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2634. </objects>
  2635. <point key="canvasLocation" x="5278" y="1005"/>
  2636. </scene>
  2637. <!--Nouveau contact-->
  2638. <scene sceneID="VLu-R9-fjo">
  2639. <objects>
  2640. <tableViewController id="bcN-Ct-OaD" customClass="NewScannedContactViewController" sceneMemberID="viewController">
  2641. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="Bmo-Py-2FX">
  2642. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2643. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2644. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2645. <view key="tableHeaderView" contentMode="scaleToFill" id="DOF-uj-3Fc">
  2646. <rect key="frame" x="0.0" y="0.0" width="375" height="90"/>
  2647. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2648. <subviews>
  2649. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="First Last" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="vVr-Sj-fJm">
  2650. <rect key="frame" x="90" y="32" width="247" height="25"/>
  2651. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2652. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  2653. <nil key="highlightedColor"/>
  2654. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2655. <size key="shadowOffset" width="0.0" height="1"/>
  2656. </label>
  2657. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" adjustsImageWhenDisabled="NO" lineBreakMode="middleTruncation" id="z0R-2s-fbs">
  2658. <rect key="frame" x="11" y="15" width="66" height="66"/>
  2659. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2660. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  2661. <state key="normal" image="unknown-person-56.png">
  2662. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2663. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2664. </state>
  2665. <state key="highlighted">
  2666. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2667. </state>
  2668. </button>
  2669. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="ljc-gO-9Hd">
  2670. <rect key="frame" x="345" y="34" width="22" height="22"/>
  2671. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2672. <inset key="insetFor6xAndEarlier" minX="0.0" minY="5" maxX="0.0" maxY="-5"/>
  2673. <fontDescription key="fontDescription" type="boldSystem" pointSize="15"/>
  2674. <state key="normal">
  2675. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2676. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2677. </state>
  2678. <state key="highlighted">
  2679. <color key="titleColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2680. </state>
  2681. <connections>
  2682. <segue destination="B4x-zQ-paX" kind="push" identifier="EditName" id="DIb-qz-hrs"/>
  2683. </connections>
  2684. </button>
  2685. </subviews>
  2686. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  2687. </view>
  2688. <sections>
  2689. <tableViewSection id="hid-mP-yqG">
  2690. <cells>
  2691. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Cdn-Kp-IS7">
  2692. <rect key="frame" x="0.0" y="90" width="375" height="44"/>
  2693. <autoresizingMask key="autoresizingMask"/>
  2694. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Cdn-Kp-IS7" id="hLi-10-QMB">
  2695. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2696. <autoresizingMask key="autoresizingMask"/>
  2697. <subviews>
  2698. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID Threema" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="HyL-3h-V50">
  2699. <rect key="frame" x="15" y="11" width="169" height="21"/>
  2700. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2701. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2702. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2703. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2704. <nil key="highlightedColor"/>
  2705. </label>
  2706. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="UZL-DO-9Jw" customClass="CopyLabel">
  2707. <rect key="frame" x="221" y="11" width="137" height="21"/>
  2708. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2709. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2710. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2711. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2712. </label>
  2713. </subviews>
  2714. </tableViewCellContentView>
  2715. </tableViewCell>
  2716. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="Cyg-Ay-24d" customClass="KeyFingerprintCell">
  2717. <rect key="frame" x="0.0" y="134" width="375" height="65"/>
  2718. <autoresizingMask key="autoresizingMask"/>
  2719. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Cyg-Ay-24d" id="bSY-YH-2UE">
  2720. <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
  2721. <autoresizingMask key="autoresizingMask"/>
  2722. <subviews>
  2723. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Empreinte de clé" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="yV8-s4-QCa">
  2724. <rect key="frame" x="15" y="11" width="277" height="21"/>
  2725. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2726. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2727. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2728. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2729. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2730. </label>
  2731. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="w7I-fn-WgV" customClass="CopyLabel">
  2732. <rect key="frame" x="14" y="34" width="350" height="21"/>
  2733. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2734. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2735. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  2736. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2737. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2738. </label>
  2739. </subviews>
  2740. </tableViewCellContentView>
  2741. <connections>
  2742. <outlet property="fingerprintLabel" destination="w7I-fn-WgV" id="cvZ-QD-pQa"/>
  2743. </connections>
  2744. </tableViewCell>
  2745. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Aed-tu-6pe" customClass="VerificationLevelCell">
  2746. <rect key="frame" x="0.0" y="199" width="375" height="44"/>
  2747. <autoresizingMask key="autoresizingMask"/>
  2748. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Aed-tu-6pe" id="di1-EX-iXJ">
  2749. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2750. <autoresizingMask key="autoresizingMask"/>
  2751. <subviews>
  2752. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Niveau de vérification" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="BZD-JQ-d5y">
  2753. <rect key="frame" x="15" y="11" width="211" height="21"/>
  2754. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2755. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2756. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2757. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2758. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2759. </label>
  2760. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="dh6-P2-gpG">
  2761. <rect key="frame" x="304" y="16" width="48" height="11"/>
  2762. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2763. </imageView>
  2764. </subviews>
  2765. </tableViewCellContentView>
  2766. <connections>
  2767. <outlet property="levelImage" destination="dh6-P2-gpG" id="hP1-XL-Lls"/>
  2768. </connections>
  2769. </tableViewCell>
  2770. </cells>
  2771. </tableViewSection>
  2772. <tableViewSection id="kqn-ag-dj2">
  2773. <cells>
  2774. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="eOy-rx-zHg">
  2775. <rect key="frame" x="0.0" y="263" width="375" height="65"/>
  2776. <autoresizingMask key="autoresizingMask"/>
  2777. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="eOy-rx-zHg" id="DXX-JY-KD5">
  2778. <rect key="frame" x="0.0" y="0.0" width="342" height="64.5"/>
  2779. <autoresizingMask key="autoresizingMask"/>
  2780. <subviews>
  2781. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Lier au contact" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="otC-iO-wzt">
  2782. <rect key="frame" x="15" y="11" width="270" height="21"/>
  2783. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2784. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2785. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2786. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2787. <nil key="highlightedColor"/>
  2788. </label>
  2789. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Jean Dupont" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="iJa-K2-2uc">
  2790. <rect key="frame" x="14" y="34" width="315" height="21"/>
  2791. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2792. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2793. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  2794. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2795. <color key="highlightedColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2796. </label>
  2797. </subviews>
  2798. </tableViewCellContentView>
  2799. </tableViewCell>
  2800. </cells>
  2801. </tableViewSection>
  2802. </sections>
  2803. <connections>
  2804. <outlet property="dataSource" destination="bcN-Ct-OaD" id="ipn-iV-5Ib"/>
  2805. <outlet property="delegate" destination="bcN-Ct-OaD" id="EUy-ek-oeQ"/>
  2806. </connections>
  2807. </tableView>
  2808. <navigationItem key="navigationItem" title="Nouveau contact" id="BAB-op-TwI">
  2809. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="azp-gT-Imw">
  2810. <connections>
  2811. <action selector="cancel:" destination="bcN-Ct-OaD" id="LV1-iu-ccE"/>
  2812. </connections>
  2813. </barButtonItem>
  2814. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="yh8-Dg-I1o">
  2815. <connections>
  2816. <action selector="save:" destination="bcN-Ct-OaD" id="YqD-KL-VXp"/>
  2817. </connections>
  2818. </barButtonItem>
  2819. </navigationItem>
  2820. <connections>
  2821. <outlet property="contactImage" destination="z0R-2s-fbs" id="m7d-8n-iZi"/>
  2822. <outlet property="editNameButton" destination="ljc-gO-9Hd" id="GGi-YL-zeX"/>
  2823. <outlet property="headerView" destination="DOF-uj-3Fc" id="jV3-vz-jKR"/>
  2824. <outlet property="identityLabel" destination="UZL-DO-9Jw" id="jmo-Q5-z3S"/>
  2825. <outlet property="keyFingerprintCell" destination="Cyg-Ay-24d" id="bOb-Fb-EKZ"/>
  2826. <outlet property="linkToContactCell" destination="eOy-rx-zHg" id="Yrp-YK-4fH"/>
  2827. <outlet property="linkedContactNameLabel" destination="iJa-K2-2uc" id="ggG-bA-XqH"/>
  2828. <outlet property="nameLabel" destination="vVr-Sj-fJm" id="3ry-aw-0pA"/>
  2829. <outlet property="verificationLevelCell" destination="Aed-tu-6pe" id="7pL-hs-EeF"/>
  2830. </connections>
  2831. </tableViewController>
  2832. <placeholder placeholderIdentifier="IBFirstResponder" id="jtL-yP-Df5" userLabel="First Responder" sceneMemberID="firstResponder"/>
  2833. </objects>
  2834. <point key="canvasLocation" x="6191" y="952"/>
  2835. </scene>
  2836. <!--Détails du groupe-->
  2837. <scene sceneID="0Bo-NM-iRc">
  2838. <objects>
  2839. <tableViewController storyboardIdentifier="groupDetailsViewController" id="Ms8-he-mHa" customClass="GroupDetailsViewController" sceneMemberID="viewController">
  2840. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="64" sectionHeaderHeight="10" sectionFooterHeight="10" id="jYd-6J-1Qe">
  2841. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  2842. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  2843. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2844. <view key="tableHeaderView" contentMode="scaleToFill" id="6x8-hM-L5f">
  2845. <rect key="frame" x="0.0" y="0.0" width="375" height="102"/>
  2846. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2847. <subviews>
  2848. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Créateur : nom" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="cNf-3j-eOO" userLabel="Creator">
  2849. <rect key="frame" x="110" y="59" width="225" height="25"/>
  2850. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2851. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  2852. <color key="textColor" red="0.29803921570000003" green="0.33725490200000002" blue="0.42352941179999998" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2853. <nil key="highlightedColor"/>
  2854. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2855. <size key="shadowOffset" width="0.0" height="1"/>
  2856. </label>
  2857. <imageView contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="unknown-group-56.png" id="esF-fQ-ZaG">
  2858. <rect key="frame" x="12" y="16" width="84" height="84"/>
  2859. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2860. </imageView>
  2861. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" buttonType="detailDisclosure" lineBreakMode="middleTruncation" id="NJS-s6-F65">
  2862. <rect key="frame" x="341" y="47" width="22" height="22"/>
  2863. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  2864. <state key="normal">
  2865. <color key="titleShadowColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2866. </state>
  2867. </button>
  2868. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Nom du groupe" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Jri-Jp-Hpu" userLabel="Group Name">
  2869. <rect key="frame" x="110" y="32" width="225" height="25"/>
  2870. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2871. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  2872. <nil key="highlightedColor"/>
  2873. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2874. <size key="shadowOffset" width="0.0" height="1"/>
  2875. </label>
  2876. </subviews>
  2877. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  2878. </view>
  2879. <prototypes>
  2880. <tableViewCell tag="3" contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="GroupMemberCell" rowHeight="60" id="Uo2-o4-j8V" customClass="GroupMemberCell">
  2881. <rect key="frame" x="0.0" y="157.5" width="375" height="60"/>
  2882. <autoresizingMask key="autoresizingMask"/>
  2883. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Uo2-o4-j8V" id="pmm-iT-OFC">
  2884. <rect key="frame" x="0.0" y="0.0" width="342" height="59.5"/>
  2885. <autoresizingMask key="autoresizingMask"/>
  2886. <subviews>
  2887. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="unknown-person-48.png" id="wOG-v3-9L7">
  2888. <rect key="frame" x="11" y="6" width="48" height="48"/>
  2889. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2890. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2891. </imageView>
  2892. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Jean Dupont" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="g8r-Dc-Sp0" customClass="ContactNameLabel">
  2893. <rect key="frame" x="68" y="19" width="248" height="21"/>
  2894. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  2895. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="0.0" maxY="0.0"/>
  2896. <fontDescription key="fontDescription" type="boldSystem" pointSize="17"/>
  2897. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2898. <nil key="highlightedColor"/>
  2899. </label>
  2900. </subviews>
  2901. </tableViewCellContentView>
  2902. <connections>
  2903. <outlet property="contactImage" destination="wOG-v3-9L7" id="iQL-ko-Yyb"/>
  2904. <outlet property="nameLabel" destination="g8r-Dc-Sp0" id="2F6-SG-pDK"/>
  2905. </connections>
  2906. </tableViewCell>
  2907. <tableViewCell contentMode="scaleToFill" selectionStyle="default" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="AddMemberCell" rowHeight="44" id="fC4-24-uG5" customClass="AddMemberCell">
  2908. <rect key="frame" x="0.0" y="217.5" width="375" height="44"/>
  2909. <autoresizingMask key="autoresizingMask"/>
  2910. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="fC4-24-uG5" id="AKi-Qr-4oL">
  2911. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  2912. <autoresizingMask key="autoresizingMask"/>
  2913. <subviews>
  2914. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="PlusButton.png" id="4yk-L5-gn8">
  2915. <rect key="frame" x="15" y="11" width="22" height="22"/>
  2916. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2917. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2918. </imageView>
  2919. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Modifier les membres..." lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="AHX-FD-Cmx">
  2920. <rect key="frame" x="47" y="11" width="232" height="21"/>
  2921. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2922. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2923. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2924. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2925. <nil key="highlightedColor"/>
  2926. </label>
  2927. </subviews>
  2928. </tableViewCellContentView>
  2929. <connections>
  2930. <outlet property="addLabel" destination="AHX-FD-Cmx" id="gY6-Om-C45"/>
  2931. <outlet property="plusImage" destination="4yk-L5-gn8" id="Ge5-9A-2FU"/>
  2932. </connections>
  2933. </tableViewCell>
  2934. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SyncCell" rowHeight="44" id="xXC-Dv-KXG" customClass="GroupSyncCell">
  2935. <rect key="frame" x="0.0" y="261.5" width="375" height="44"/>
  2936. <autoresizingMask key="autoresizingMask"/>
  2937. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="xXC-Dv-KXG" id="2cg-ld-dil">
  2938. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2939. <autoresizingMask key="autoresizingMask"/>
  2940. <subviews>
  2941. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="759-refresh-2.png" id="fb0-Jl-ahI">
  2942. <rect key="frame" x="15" y="11" width="22" height="22"/>
  2943. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2944. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2945. </imageView>
  2946. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Synchroniser les membres" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="MEa-Te-wbA">
  2947. <rect key="frame" x="47" y="11" width="232" height="21"/>
  2948. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2949. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  2950. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2951. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2952. <nil key="highlightedColor"/>
  2953. </label>
  2954. </subviews>
  2955. </tableViewCellContentView>
  2956. <connections>
  2957. <outlet property="syncGroupImageView" destination="fb0-Jl-ahI" id="ftZ-c1-57P"/>
  2958. </connections>
  2959. </tableViewCell>
  2960. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="SendMessageCell" textLabel="fJh-mN-bfb" style="IBUITableViewCellStyleDefault" id="CS9-Sh-lQN">
  2961. <rect key="frame" x="0.0" y="305.5" width="375" height="64"/>
  2962. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2963. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CS9-Sh-lQN" id="6kA-0a-tpf">
  2964. <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
  2965. <autoresizingMask key="autoresizingMask"/>
  2966. <subviews>
  2967. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Envoyer un message" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="fJh-mN-bfb">
  2968. <rect key="frame" x="16" y="0.0" width="344" height="64"/>
  2969. <autoresizingMask key="autoresizingMask"/>
  2970. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2971. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2972. <nil key="highlightedColor"/>
  2973. </label>
  2974. </subviews>
  2975. </tableViewCellContentView>
  2976. </tableViewCell>
  2977. <tableViewCell contentMode="scaleToFill" selectionStyle="default" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="EmailConversationCell" textLabel="dyI-k8-1HL" rowHeight="44" style="IBUITableViewCellStyleDefault" id="rE8-9I-AaV">
  2978. <rect key="frame" x="0.0" y="369.5" width="375" height="44"/>
  2979. <autoresizingMask key="autoresizingMask"/>
  2980. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="rE8-9I-AaV" id="Mtk-qb-hL2">
  2981. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  2982. <autoresizingMask key="autoresizingMask"/>
  2983. <subviews>
  2984. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Conversation par courriel" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="dyI-k8-1HL">
  2985. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  2986. <autoresizingMask key="autoresizingMask"/>
  2987. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  2988. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  2989. <nil key="highlightedColor"/>
  2990. </label>
  2991. </subviews>
  2992. </tableViewCellContentView>
  2993. </tableViewCell>
  2994. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="LeaveGroupCell" textLabel="74M-ip-a37" style="IBUITableViewCellStyleDefault" id="gpp-XW-9pS">
  2995. <rect key="frame" x="0.0" y="413.5" width="375" height="64"/>
  2996. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  2997. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gpp-XW-9pS" id="KAV-n6-XbO">
  2998. <rect key="frame" x="0.0" y="0.0" width="375" height="63.5"/>
  2999. <autoresizingMask key="autoresizingMask"/>
  3000. <subviews>
  3001. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Quitter le groupe" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="74M-ip-a37">
  3002. <rect key="frame" x="16" y="0.0" width="344" height="64"/>
  3003. <autoresizingMask key="autoresizingMask"/>
  3004. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3005. <color key="textColor" red="1" green="0.14489134100141676" blue="0.028320687089866792" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3006. <nil key="highlightedColor"/>
  3007. </label>
  3008. </subviews>
  3009. </tableViewCellContentView>
  3010. </tableViewCell>
  3011. </prototypes>
  3012. <connections>
  3013. <outlet property="dataSource" destination="Ms8-he-mHa" id="Wjd-4D-frU"/>
  3014. <outlet property="delegate" destination="Ms8-he-mHa" id="3W6-xU-yBi"/>
  3015. </connections>
  3016. </tableView>
  3017. <navigationItem key="navigationItem" title="Détails du groupe" id="oEX-1h-I2a"/>
  3018. <connections>
  3019. <outlet property="creatorLabel" destination="cNf-3j-eOO" id="Xhd-5v-iXo"/>
  3020. <outlet property="disclosureButton" destination="NJS-s6-F65" id="PFJ-aA-xpz"/>
  3021. <outlet property="headerView" destination="6x8-hM-L5f" id="H9T-VK-mXg"/>
  3022. <outlet property="imageView" destination="esF-fQ-ZaG" id="DBT-D1-xKT"/>
  3023. <outlet property="nameLabel" destination="Jri-Jp-Hpu" id="cYZ-Ef-jzA"/>
  3024. <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="oPU-me-pkQ"/>
  3025. </connections>
  3026. </tableViewController>
  3027. <placeholder placeholderIdentifier="IBFirstResponder" id="PFS-PI-sZe" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3028. </objects>
  3029. <point key="canvasLocation" x="2569" y="187"/>
  3030. </scene>
  3031. <!--Niveau de vérification-->
  3032. <scene sceneID="X1e-I4-oAv">
  3033. <objects>
  3034. <viewController id="BHJ-uI-yhd" customClass="VerificationViewController" sceneMemberID="viewController">
  3035. <view key="view" contentMode="scaleToFill" id="IK2-gw-H44">
  3036. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3037. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3038. <subviews>
  3039. <scrollView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" showsHorizontalScrollIndicator="NO" id="nk0-Pv-adz">
  3040. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3041. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3042. <subviews>
  3043. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" text="Les points sont un indicateur du niveau de vérification d'un contact." id="ZUs-Jj-igv">
  3044. <rect key="frame" x="12" y="18" width="341" height="60"/>
  3045. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3046. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3047. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  3048. </textView>
  3049. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Seul un scan en personne du code QR d'un contact permet d'atteindre le niveau de vérification le plus élevé." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Zxb-Je-9CC" customClass="SSLabel">
  3050. <rect key="frame" x="84" y="88" width="269" height="90"/>
  3051. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3052. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3053. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3054. <nil key="highlightedColor"/>
  3055. </label>
  3056. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-1.png" id="iDJ-jh-Gt9">
  3057. <rect key="frame" x="18" y="196" width="50" height="12"/>
  3058. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3059. </imageView>
  3060. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Le contact correspond à un numéro de téléphone ou à une adresse e-mail figurant dans votre répertoire." lineBreakMode="tailTruncation" numberOfLines="6" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Y9L-O2-c5C" customClass="SSLabel">
  3061. <rect key="frame" x="84" y="192" width="269" height="90"/>
  3062. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3063. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3064. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3065. <nil key="highlightedColor"/>
  3066. </label>
  3067. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-0.png" id="GFO-oV-PP3">
  3068. <rect key="frame" x="18" y="300" width="50" height="12"/>
  3069. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3070. </imageView>
  3071. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Contact anonyme. L'identifiant ne correspond à aucun contact figurant dans votre répertoire." lineBreakMode="tailTruncation" numberOfLines="5" baselineAdjustment="alignBaselines" minimumFontSize="12" id="1xB-q0-ZXX" customClass="SSLabel">
  3072. <rect key="frame" x="84" y="296" width="269" height="90"/>
  3073. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3074. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3075. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3076. <nil key="highlightedColor"/>
  3077. </label>
  3078. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="JV7-wB-ei5">
  3079. <rect key="frame" x="18" y="92" width="50" height="12"/>
  3080. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3081. </imageView>
  3082. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-3.png" id="qY0-DT-vWa">
  3083. <rect key="frame" x="18" y="403" width="50" height="12"/>
  3084. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3085. </imageView>
  3086. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Threema Work contact. The administrator has pre-configured this contact." lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" minimumFontSize="12" id="Dkl-lv-Gfl" customClass="SSLabel">
  3087. <rect key="frame" x="84" y="399" width="269" height="63"/>
  3088. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3089. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  3090. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3091. <nil key="highlightedColor"/>
  3092. </label>
  3093. </subviews>
  3094. </scrollView>
  3095. </subviews>
  3096. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3097. </view>
  3098. <navigationItem key="navigationItem" title="Niveau de vérification" id="RYr-oG-d5j"/>
  3099. <nil key="simulatedBottomBarMetrics"/>
  3100. <connections>
  3101. <outlet property="descriptionTextView" destination="ZUs-Jj-igv" id="GjV-od-Ldm"/>
  3102. <outlet property="imageLevel0" destination="GFO-oV-PP3" id="CmD-kj-AXc"/>
  3103. <outlet property="imageLevel1" destination="iDJ-jh-Gt9" id="VAS-hw-WXf"/>
  3104. <outlet property="imageLevel2" destination="JV7-wB-ei5" id="owp-g3-SWf"/>
  3105. <outlet property="imageLevel3" destination="qY0-DT-vWa" id="cDe-Z5-mqF"/>
  3106. <outlet property="labelLevel0" destination="1xB-q0-ZXX" id="u8h-UT-7bx"/>
  3107. <outlet property="labelLevel1" destination="Y9L-O2-c5C" id="Nwp-3c-C5r"/>
  3108. <outlet property="labelLevel2" destination="Zxb-Je-9CC" id="T4F-md-SLa"/>
  3109. <outlet property="labelLevel3" destination="Dkl-lv-Gfl" id="XNW-9F-dfu"/>
  3110. <outlet property="scrollView" destination="nk0-Pv-adz" id="tHE-oa-v06"/>
  3111. </connections>
  3112. </viewController>
  3113. <placeholder placeholderIdentifier="IBFirstResponder" id="O9J-dO-Gby" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3114. </objects>
  3115. <point key="canvasLocation" x="3056" y="-94"/>
  3116. </scene>
  3117. <!--Ajouter un contact-->
  3118. <scene sceneID="oOX-bu-bWV">
  3119. <objects>
  3120. <tableViewController id="G1V-ju-hH8" customClass="AddContactViewController" sceneMemberID="viewController">
  3121. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="K6b-41-Rkh">
  3122. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3123. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3124. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3125. <sections>
  3126. <tableViewSection id="72X-QI-1f3">
  3127. <cells>
  3128. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="89" id="al9-Xu-cio">
  3129. <rect key="frame" x="0.0" y="35" width="375" height="89"/>
  3130. <autoresizingMask key="autoresizingMask"/>
  3131. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="al9-Xu-cio" id="3J9-nj-Hgy">
  3132. <rect key="frame" x="0.0" y="0.0" width="375" height="88.5"/>
  3133. <autoresizingMask key="autoresizingMask"/>
  3134. <subviews>
  3135. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="ID" minimumFontSize="17" id="YoS-Np-Z37">
  3136. <rect key="frame" x="14" y="42" width="344" height="34"/>
  3137. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3138. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3139. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3140. <fontDescription key="fontDescription" type="system" pointSize="28"/>
  3141. <textInputTraits key="textInputTraits" autocapitalizationType="allCharacters" autocorrectionType="no" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  3142. <connections>
  3143. <outlet property="delegate" destination="G1V-ju-hH8" id="3rH-1t-iUw"/>
  3144. </connections>
  3145. </textField>
  3146. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Saisir l'ID manuellement" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="zYA-qz-iwe">
  3147. <rect key="frame" x="15" y="11" width="268" height="21"/>
  3148. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3149. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3150. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3151. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3152. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3153. </label>
  3154. </subviews>
  3155. </tableViewCellContentView>
  3156. </tableViewCell>
  3157. </cells>
  3158. </tableViewSection>
  3159. <tableViewSection id="e9k-VH-lsl">
  3160. <cells>
  3161. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="YPC-ic-pTa" imageView="BKc-YV-enp" style="IBUITableViewCellStyleDefault" id="cdb-1L-fZu">
  3162. <rect key="frame" x="0.0" y="144" width="375" height="44"/>
  3163. <autoresizingMask key="autoresizingMask"/>
  3164. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="cdb-1L-fZu" id="xik-ar-cyW">
  3165. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  3166. <autoresizingMask key="autoresizingMask"/>
  3167. <subviews>
  3168. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Scanner un ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="YPC-ic-pTa">
  3169. <rect key="frame" x="54" y="0.0" width="286" height="43"/>
  3170. <autoresizingMask key="autoresizingMask"/>
  3171. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3172. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3173. <nil key="highlightedColor"/>
  3174. </label>
  3175. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="86-camera.png" highlightedImage="86-camera.png" id="BKc-YV-enp">
  3176. <rect key="frame" x="16" y="12" width="23" height="18"/>
  3177. <autoresizingMask key="autoresizingMask"/>
  3178. </imageView>
  3179. </subviews>
  3180. </tableViewCellContentView>
  3181. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  3182. </tableViewCell>
  3183. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="disclosureIndicator" indentationWidth="10" textLabel="xRZ-tM-3dS" style="IBUITableViewCellStyleDefault" id="Tr4-JV-PPU">
  3184. <rect key="frame" x="0.0" y="188" width="375" height="44"/>
  3185. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3186. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Tr4-JV-PPU" id="6SY-iN-gCj">
  3187. <rect key="frame" x="0.0" y="0.0" width="342" height="43.5"/>
  3188. <autoresizingMask key="autoresizingMask"/>
  3189. <subviews>
  3190. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Inviter un ami" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="xRZ-tM-3dS">
  3191. <rect key="frame" x="16" y="0.0" width="324" height="43"/>
  3192. <autoresizingMask key="autoresizingMask"/>
  3193. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3194. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3195. <nil key="highlightedColor"/>
  3196. </label>
  3197. </subviews>
  3198. </tableViewCellContentView>
  3199. </tableViewCell>
  3200. </cells>
  3201. </tableViewSection>
  3202. </sections>
  3203. <connections>
  3204. <outlet property="dataSource" destination="G1V-ju-hH8" id="lOd-gQ-aA4"/>
  3205. <outlet property="delegate" destination="G1V-ju-hH8" id="prm-rV-y9u"/>
  3206. </connections>
  3207. </tableView>
  3208. <navigationItem key="navigationItem" title="Ajouter un contact" id="Eq0-ED-f11">
  3209. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="1WQ-02-3J0">
  3210. <connections>
  3211. <action selector="cancelAction:" destination="G1V-ju-hH8" id="4tc-43-LcQ"/>
  3212. </connections>
  3213. </barButtonItem>
  3214. <barButtonItem key="rightBarButtonItem" enabled="NO" style="done" systemItem="done" id="VEq-T8-yyu">
  3215. <connections>
  3216. <action selector="doneAction:" destination="G1V-ju-hH8" id="TMy-Sd-G9r"/>
  3217. </connections>
  3218. </barButtonItem>
  3219. </navigationItem>
  3220. <connections>
  3221. <outlet property="identityTextField" destination="YoS-Np-Z37" id="h0l-zX-7fe"/>
  3222. <outlet property="scanIdentityCell" destination="cdb-1L-fZu" id="TWi-lx-If4"/>
  3223. </connections>
  3224. </tableViewController>
  3225. <placeholder placeholderIdentifier="IBFirstResponder" id="WWb-st-0qa" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3226. </objects>
  3227. <point key="canvasLocation" x="2534" y="-1158"/>
  3228. </scene>
  3229. <!--Animated Navigation Controller-->
  3230. <scene sceneID="VaV-F2-hej">
  3231. <objects>
  3232. <navigationController id="jkA-kt-EVh" customClass="AnimatedNavigationController" sceneMemberID="viewController">
  3233. <tabBarItem key="tabBarItem" systemItem="contacts" id="JXW-2V-ftV"/>
  3234. <toolbarItems/>
  3235. <navigationBar key="navigationBar" contentMode="scaleToFill" id="5Ob-0j-Mcg" customClass="StatusNavigationBar">
  3236. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3237. <autoresizingMask key="autoresizingMask"/>
  3238. </navigationBar>
  3239. <nil name="viewControllers"/>
  3240. <connections>
  3241. <segue destination="4Fd-lk-A1K" kind="relationship" relationship="rootViewController" id="yke-Pd-pZG"/>
  3242. </connections>
  3243. </navigationController>
  3244. <placeholder placeholderIdentifier="IBFirstResponder" id="DXi-bE-KsG" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3245. </objects>
  3246. <point key="canvasLocation" x="857" y="-337"/>
  3247. </scene>
  3248. <!--Mon ID-->
  3249. <scene sceneID="Juw-dJ-4IQ">
  3250. <objects>
  3251. <navigationController id="uvv-Ko-dQ8" customClass="MyIdentityNavigationController" sceneMemberID="viewController">
  3252. <tabBarItem key="tabBarItem" title="Mon ID" image="123-id-card.png" id="5lj-oy-IYs"/>
  3253. <toolbarItems/>
  3254. <navigationBar key="navigationBar" contentMode="scaleToFill" id="ySu-3e-OwE" customClass="StatusNavigationBar">
  3255. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3256. <autoresizingMask key="autoresizingMask"/>
  3257. </navigationBar>
  3258. <nil name="viewControllers"/>
  3259. <connections>
  3260. <segue destination="I0k-J8-Vtl" kind="relationship" relationship="rootViewController" id="Ez4-Zw-CQh"/>
  3261. </connections>
  3262. </navigationController>
  3263. <placeholder placeholderIdentifier="IBFirstResponder" id="RxJ-yK-Fe6" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3264. </objects>
  3265. <point key="canvasLocation" x="887" y="1277"/>
  3266. </scene>
  3267. <!--Modal Navigation Controller-->
  3268. <scene sceneID="oa6-Aq-F4t">
  3269. <objects>
  3270. <navigationController storyboardIdentifier="NewScannedContact" id="udX-d0-cyB" customClass="ModalNavigationController" sceneMemberID="viewController">
  3271. <toolbarItems/>
  3272. <navigationBar key="navigationBar" contentMode="scaleToFill" id="Q0G-EA-t5Z" customClass="StatusNavigationBar">
  3273. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3274. <autoresizingMask key="autoresizingMask"/>
  3275. </navigationBar>
  3276. <nil name="viewControllers"/>
  3277. <connections>
  3278. <segue destination="bcN-Ct-OaD" kind="relationship" relationship="rootViewController" id="MvH-hT-pfP"/>
  3279. </connections>
  3280. </navigationController>
  3281. <placeholder placeholderIdentifier="IBFirstResponder" id="Tst-lN-YQp" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3282. </objects>
  3283. <point key="canvasLocation" x="5753" y="973"/>
  3284. </scene>
  3285. <!--Chat View Controller-->
  3286. <scene sceneID="0PO-DN-NhL">
  3287. <objects>
  3288. <viewController storyboardIdentifier="chatViewController" autoresizesArchivedViewToFullSize="NO" hidesBottomBarWhenPushed="YES" id="v1R-9K-OZW" customClass="ChatViewController" sceneMemberID="viewController">
  3289. <view key="view" contentMode="scaleToFill" id="qMd-WF-uDa">
  3290. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3291. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3292. <subviews>
  3293. <view contentMode="scaleToFill" id="ZhQ-2Z-mYP">
  3294. <rect key="frame" x="0.0" y="0.0" width="375" height="40"/>
  3295. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3296. <subviews>
  3297. <button opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" lineBreakMode="middleTruncation" id="WuX-yK-0RJ">
  3298. <rect key="frame" x="8" y="4" width="358" height="32"/>
  3299. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3300. <fontDescription key="fontDescription" type="boldSystem" pointSize="14"/>
  3301. <size key="titleShadowOffset" width="1" height="1"/>
  3302. <state key="normal" title="Charger les messages antérieurs">
  3303. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3304. <color key="titleShadowColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3305. </state>
  3306. <state key="highlighted">
  3307. <color key="titleColor" red="0.19607843459999999" green="0.30980393290000002" blue="0.52156865600000002" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3308. </state>
  3309. <connections>
  3310. <action selector="loadEarlierMessagesAction:" destination="v1R-9K-OZW" eventType="touchUpInside" id="IcO-Sz-Dj3"/>
  3311. </connections>
  3312. </button>
  3313. </subviews>
  3314. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3315. </view>
  3316. </subviews>
  3317. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3318. </view>
  3319. <navigationItem key="navigationItem" id="uYf-zy-tOB"/>
  3320. <connections>
  3321. <outlet property="chatContentHeader" destination="ZhQ-2Z-mYP" id="7vq-AJ-cwL"/>
  3322. <outlet property="headerView" destination="ZhQ-2Z-mYP" id="zqP-cB-jca"/>
  3323. <outlet property="loadEarlierMessages" destination="WuX-yK-0RJ" id="vcS-wC-de0"/>
  3324. <segue destination="MbJ-IV-2f9" kind="push" identifier="ShowContact" id="rOK-24-MIK"/>
  3325. <segue destination="FVk-BM-jrL" kind="push" identifier="ShowLocation" id="WV3-3M-WJY"/>
  3326. <segue destination="E7y-fb-wyM" kind="push" identifier="ShowDetails" id="c6z-1E-Rur"/>
  3327. <segue destination="Ms8-he-mHa" kind="push" identifier="ShowGroupInfo" id="iDo-S6-WeN"/>
  3328. </connections>
  3329. </viewController>
  3330. <placeholder placeholderIdentifier="IBFirstResponder" id="bM3-IQ-bac" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3331. </objects>
  3332. <point key="canvasLocation" x="1874" y="486"/>
  3333. </scene>
  3334. <!--Aperçu-->
  3335. <scene sceneID="ZQM-N7-ABW">
  3336. <objects>
  3337. <viewController storyboardIdentifier="PreviewImage" id="xFf-fm-QrO" customClass="PreviewImageViewController" sceneMemberID="viewController">
  3338. <view key="view" contentMode="scaleToFill" id="eVy-LW-gwf">
  3339. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3340. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3341. <subviews>
  3342. <imageView userInteractionEnabled="NO" contentMode="scaleAspectFit" id="94h-MW-FVh">
  3343. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3344. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3345. </imageView>
  3346. </subviews>
  3347. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3348. </view>
  3349. <navigationItem key="navigationItem" title="Aperçu" id="wPu-F7-kf1">
  3350. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="YCy-tZ-DQg">
  3351. <connections>
  3352. <action selector="cancelAction:" destination="xFf-fm-QrO" id="33e-eE-gCh"/>
  3353. </connections>
  3354. </barButtonItem>
  3355. <barButtonItem key="rightBarButtonItem" title="Envoyer" style="done" id="25C-Te-sfW">
  3356. <connections>
  3357. <action selector="sendAction:" destination="xFf-fm-QrO" id="GMR-ZL-Qz8"/>
  3358. </connections>
  3359. </barButtonItem>
  3360. </navigationItem>
  3361. <simulatedNavigationBarMetrics key="simulatedTopBarMetrics" barStyle="black" prompted="NO"/>
  3362. <connections>
  3363. <outlet property="imageView" destination="94h-MW-FVh" id="15h-Ag-y2z"/>
  3364. </connections>
  3365. </viewController>
  3366. <placeholder placeholderIdentifier="IBFirstResponder" id="LwV-KW-DFP" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3367. </objects>
  3368. <point key="canvasLocation" x="5803" y="-1524"/>
  3369. </scene>
  3370. <!--Modal Navigation Controller-->
  3371. <scene sceneID="I9d-0A-aFE">
  3372. <objects>
  3373. <navigationController storyboardIdentifier="ContactPickerNav" id="X2J-pF-E4b" customClass="ModalNavigationController" sceneMemberID="viewController">
  3374. <toolbarItems/>
  3375. <navigationBar key="navigationBar" contentMode="scaleToFill" id="ZlH-8V-PkV" customClass="StatusNavigationBar">
  3376. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3377. <autoresizingMask key="autoresizingMask"/>
  3378. </navigationBar>
  3379. <nil name="viewControllers"/>
  3380. <connections>
  3381. <segue destination="OvB-ud-WFO" kind="relationship" relationship="rootViewController" id="ls1-VK-yb6"/>
  3382. </connections>
  3383. </navigationController>
  3384. <placeholder placeholderIdentifier="IBFirstResponder" id="nxw-Dj-CRk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3385. </objects>
  3386. <point key="canvasLocation" x="5197" y="-125"/>
  3387. </scene>
  3388. <!--Modal Navigation Controller-->
  3389. <scene sceneID="D9S-JR-67e">
  3390. <objects>
  3391. <navigationController storyboardIdentifier="VerifyScannedContact" id="c2x-1I-hYh" customClass="ModalNavigationController" sceneMemberID="viewController">
  3392. <toolbarItems/>
  3393. <navigationBar key="navigationBar" contentMode="scaleToFill" id="ife-ea-aDH" customClass="StatusNavigationBar">
  3394. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3395. <autoresizingMask key="autoresizingMask"/>
  3396. </navigationBar>
  3397. <nil name="viewControllers"/>
  3398. <connections>
  3399. <segue destination="CJa-dK-jp4" kind="relationship" relationship="rootViewController" id="718-Kk-eTH"/>
  3400. </connections>
  3401. </navigationController>
  3402. <placeholder placeholderIdentifier="IBFirstResponder" id="pO8-XU-dTk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3403. </objects>
  3404. <point key="canvasLocation" x="5967" y="1666"/>
  3405. </scene>
  3406. <!--ID vérifié-->
  3407. <scene sceneID="QYY-E3-5fH">
  3408. <objects>
  3409. <tableViewController id="CJa-dK-jp4" customClass="IdentityVerifiedViewController" sceneMemberID="viewController">
  3410. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="yAX-VY-6pV">
  3411. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3412. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3413. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3414. <view key="tableHeaderView" contentMode="scaleToFill" id="QYE-YD-T2a">
  3415. <rect key="frame" x="0.0" y="0.0" width="375" height="90"/>
  3416. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3417. <subviews>
  3418. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="fRK-k7-Yj2">
  3419. <rect key="frame" x="11" y="15" width="66" height="66"/>
  3420. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3421. </imageView>
  3422. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Prénom Nom" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="wV3-0n-mKm">
  3423. <rect key="frame" x="90" y="32" width="265" height="25"/>
  3424. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3425. <fontDescription key="fontDescription" type="boldSystem" pointSize="18"/>
  3426. <nil key="highlightedColor"/>
  3427. <color key="shadowColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3428. <size key="shadowOffset" width="0.0" height="1"/>
  3429. </label>
  3430. </subviews>
  3431. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3432. </view>
  3433. <view key="tableFooterView" contentMode="scaleToFill" id="XW3-1v-D2N">
  3434. <rect key="frame" x="0.0" y="253" width="375" height="148"/>
  3435. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3436. <subviews>
  3437. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="L'ID et la clé publique de ce contact ont été vérifiés." textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="3" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="4Js-Fh-l8T">
  3438. <rect key="frame" x="112" y="88" width="280" height="47"/>
  3439. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3440. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3441. <color key="textColor" red="0.5" green="0.5" blue="0.5" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3442. <nil key="highlightedColor"/>
  3443. </label>
  3444. <imageView userInteractionEnabled="NO" alpha="0.69999999999999996" contentMode="scaleToFill" image="verificationbig-2.png" id="sqy-M6-DC0">
  3445. <rect key="frame" x="107" y="31" width="163" height="37"/>
  3446. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3447. </imageView>
  3448. </subviews>
  3449. <color key="backgroundColor" red="0.0" green="0.0" blue="0.0" alpha="0.0" colorSpace="custom" customColorSpace="sRGB"/>
  3450. </view>
  3451. <sections>
  3452. <tableViewSection id="U03-zs-DLa">
  3453. <cells>
  3454. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Isx-Cp-ked">
  3455. <rect key="frame" x="0.0" y="90" width="375" height="44"/>
  3456. <autoresizingMask key="autoresizingMask"/>
  3457. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Isx-Cp-ked" id="KKa-wH-Eaq">
  3458. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3459. <autoresizingMask key="autoresizingMask"/>
  3460. <subviews>
  3461. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="ID Threema" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ItP-on-vcR">
  3462. <rect key="frame" x="15" y="11" width="177" height="21"/>
  3463. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3464. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3465. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3466. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3467. <nil key="highlightedColor"/>
  3468. </label>
  3469. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXXXXXX" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Xw9-xE-J2A" customClass="CopyLabel">
  3470. <rect key="frame" x="219" y="11" width="140" height="21"/>
  3471. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  3472. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3473. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3474. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3475. </label>
  3476. </subviews>
  3477. </tableViewCellContentView>
  3478. </tableViewCell>
  3479. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="65" id="7ES-9X-FzW" customClass="KeyFingerprintCell">
  3480. <rect key="frame" x="0.0" y="134" width="375" height="65"/>
  3481. <autoresizingMask key="autoresizingMask"/>
  3482. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="7ES-9X-FzW" id="GiK-bE-pDN">
  3483. <rect key="frame" x="0.0" y="0.0" width="375" height="64.5"/>
  3484. <autoresizingMask key="autoresizingMask"/>
  3485. <subviews>
  3486. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Empreinte de clé" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="hBg-1A-bxa">
  3487. <rect key="frame" x="15" y="11" width="277" height="21"/>
  3488. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3489. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3490. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3491. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3492. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3493. </label>
  3494. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="00000000000000000000000000000000" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="Civ-ss-xfc" customClass="CopyLabel">
  3495. <rect key="frame" x="13" y="34" width="355" height="21"/>
  3496. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3497. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3498. <fontDescription key="fontDescription" type="system" pointSize="15"/>
  3499. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3500. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3501. </label>
  3502. </subviews>
  3503. </tableViewCellContentView>
  3504. <connections>
  3505. <outlet property="fingerprintLabel" destination="Civ-ss-xfc" id="vTh-pj-KzJ"/>
  3506. </connections>
  3507. </tableViewCell>
  3508. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="Uc3-sE-KSh" customClass="VerificationLevelCell">
  3509. <rect key="frame" x="0.0" y="199" width="375" height="44"/>
  3510. <autoresizingMask key="autoresizingMask"/>
  3511. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Uc3-sE-KSh" id="uTT-dl-O1R">
  3512. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3513. <autoresizingMask key="autoresizingMask"/>
  3514. <subviews>
  3515. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Niveau de vérification" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="YcG-2m-hqt">
  3516. <rect key="frame" x="15" y="11" width="218" height="21"/>
  3517. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3518. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  3519. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3520. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3521. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3522. </label>
  3523. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" image="verification-2.png" id="qSZ-3s-TnW">
  3524. <rect key="frame" x="308" y="16" width="48" height="11"/>
  3525. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  3526. </imageView>
  3527. </subviews>
  3528. </tableViewCellContentView>
  3529. <connections>
  3530. <outlet property="levelImage" destination="qSZ-3s-TnW" id="qXu-0g-xTO"/>
  3531. </connections>
  3532. </tableViewCell>
  3533. </cells>
  3534. </tableViewSection>
  3535. </sections>
  3536. <connections>
  3537. <outlet property="dataSource" destination="CJa-dK-jp4" id="n4A-Pp-fHy"/>
  3538. <outlet property="delegate" destination="CJa-dK-jp4" id="nqO-dn-tRc"/>
  3539. </connections>
  3540. </tableView>
  3541. <navigationItem key="navigationItem" title="ID vérifié" id="sik-yL-35n">
  3542. <barButtonItem key="rightBarButtonItem" systemItem="done" id="StH-Kj-2q2">
  3543. <connections>
  3544. <action selector="done:" destination="CJa-dK-jp4" id="RWR-bW-cRX"/>
  3545. </connections>
  3546. </barButtonItem>
  3547. </navigationItem>
  3548. <connections>
  3549. <outlet property="contactImage" destination="fRK-k7-Yj2" id="fgO-az-Wlx"/>
  3550. <outlet property="identityLabel" destination="Xw9-xE-J2A" id="gVN-xm-7Ja"/>
  3551. <outlet property="keyFingerprintCell" destination="7ES-9X-FzW" id="45a-bu-kgG"/>
  3552. <outlet property="nameLabel" destination="wV3-0n-mKm" id="Xga-Ij-0Xv"/>
  3553. <outlet property="verificationLevelCell" destination="Uc3-sE-KSh" id="a6y-uO-fc4"/>
  3554. <outlet property="verificationLevelImage" destination="sqy-M6-DC0" id="Eze-Qb-R2Q"/>
  3555. </connections>
  3556. </tableViewController>
  3557. <placeholder placeholderIdentifier="IBFirstResponder" id="uwR-It-Ztf" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3558. </objects>
  3559. <point key="canvasLocation" x="6415" y="1666"/>
  3560. </scene>
  3561. <!--Modal Navigation Controller-->
  3562. <scene sceneID="YhH-yK-u78">
  3563. <objects>
  3564. <navigationController storyboardIdentifier="AddContactNavigationController" id="f9d-eO-Il0" customClass="ModalNavigationController" sceneMemberID="viewController">
  3565. <toolbarItems/>
  3566. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3xB-fy-EQG" customClass="StatusNavigationBar">
  3567. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3568. <autoresizingMask key="autoresizingMask"/>
  3569. </navigationBar>
  3570. <nil name="viewControllers"/>
  3571. <connections>
  3572. <segue destination="G1V-ju-hH8" kind="relationship" relationship="rootViewController" id="M0V-He-65Y"/>
  3573. </connections>
  3574. </navigationController>
  3575. <placeholder placeholderIdentifier="IBFirstResponder" id="TMY-VX-QLz" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3576. </objects>
  3577. <point key="canvasLocation" x="2118" y="-1158"/>
  3578. </scene>
  3579. <!--Modal Navigation Controller-->
  3580. <scene sceneID="pcJ-SG-F1U">
  3581. <objects>
  3582. <navigationController id="7Bw-bZ-Nl3" customClass="ModalNavigationController" sceneMemberID="viewController">
  3583. <toolbarItems/>
  3584. <navigationBar key="navigationBar" contentMode="scaleToFill" id="tTO-Xu-vfc" customClass="StatusNavigationBar">
  3585. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3586. <autoresizingMask key="autoresizingMask"/>
  3587. </navigationBar>
  3588. <nil name="viewControllers"/>
  3589. <connections>
  3590. <segue destination="QYa-wj-UfF" kind="relationship" relationship="rootViewController" id="aab-VZ-8dj"/>
  3591. </connections>
  3592. </navigationController>
  3593. <placeholder placeholderIdentifier="IBFirstResponder" id="y6Z-f3-iQg" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3594. </objects>
  3595. <point key="canvasLocation" x="4372" y="2912"/>
  3596. </scene>
  3597. <!--Lier un numéro-->
  3598. <scene sceneID="cwE-WB-aV0">
  3599. <objects>
  3600. <tableViewController id="FTG-53-tLO" customClass="LinkMobileNoViewController" sceneMemberID="viewController">
  3601. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="hwG-eE-LUX">
  3602. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3603. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3604. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3605. <sections>
  3606. <tableViewSection id="GVL-lo-B4c">
  3607. <string key="footerTitle">Le fait de lier votre numéro de téléphone portable à votre ID permet aux autres personnes de vous trouver automatiquement sur Threema si votre numéro de téléphone portable est enregistré dans leur carnet d'adresses.</string>
  3608. <cells>
  3609. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="nVN-0d-l2S">
  3610. <rect key="frame" x="0.0" y="35" width="375" height="85"/>
  3611. <autoresizingMask key="autoresizingMask"/>
  3612. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="nVN-0d-l2S" id="tsO-er-eBC">
  3613. <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
  3614. <autoresizingMask key="autoresizingMask"/>
  3615. <subviews>
  3616. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="votre numéro de téléphone portable" minimumFontSize="17" clearButtonMode="always" id="GiH-ve-alq">
  3617. <rect key="frame" x="15" y="39" width="350" height="34"/>
  3618. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3619. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3620. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3621. <fontDescription key="fontDescription" type="system" pointSize="20"/>
  3622. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="phonePad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  3623. <connections>
  3624. <action selector="saveAction:" destination="FTG-53-tLO" eventType="editingDidEndOnExit" id="p29-wF-bP0"/>
  3625. </connections>
  3626. </textField>
  3627. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Numéro de portable" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="mI7-lX-IwE">
  3628. <rect key="frame" x="15" y="11" width="294" height="21"/>
  3629. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3630. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3631. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3632. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3633. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3634. </label>
  3635. </subviews>
  3636. </tableViewCellContentView>
  3637. </tableViewCell>
  3638. </cells>
  3639. </tableViewSection>
  3640. </sections>
  3641. <connections>
  3642. <outlet property="dataSource" destination="FTG-53-tLO" id="2bs-Cv-IsT"/>
  3643. <outlet property="delegate" destination="FTG-53-tLO" id="36m-vy-E3m"/>
  3644. </connections>
  3645. </tableView>
  3646. <navigationItem key="navigationItem" title="Lier un numéro" id="yBJ-QE-4Oj">
  3647. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="Wet-Qt-8aZ">
  3648. <connections>
  3649. <action selector="cancelAction:" destination="FTG-53-tLO" id="MlA-ax-1CJ"/>
  3650. </connections>
  3651. </barButtonItem>
  3652. <barButtonItem key="rightBarButtonItem" style="done" systemItem="save" id="mKW-aV-Aet">
  3653. <connections>
  3654. <action selector="saveAction:" destination="FTG-53-tLO" id="YTw-P0-vCM"/>
  3655. </connections>
  3656. </barButtonItem>
  3657. </navigationItem>
  3658. <connections>
  3659. <outlet property="mobileNoTextField" destination="GiH-ve-alq" id="Xl9-lQ-LEq"/>
  3660. </connections>
  3661. </tableViewController>
  3662. <placeholder placeholderIdentifier="IBFirstResponder" id="T0x-hf-MnI" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3663. </objects>
  3664. <point key="canvasLocation" x="5317" y="2310"/>
  3665. </scene>
  3666. <!--Modal Navigation Controller-->
  3667. <scene sceneID="Z63-nW-wvG">
  3668. <objects>
  3669. <navigationController id="L44-Xr-JJu" customClass="ModalNavigationController" sceneMemberID="viewController">
  3670. <toolbarItems/>
  3671. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3ET-SO-jDn" customClass="StatusNavigationBar">
  3672. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  3673. <autoresizingMask key="autoresizingMask"/>
  3674. </navigationBar>
  3675. <nil name="viewControllers"/>
  3676. <connections>
  3677. <segue destination="FTG-53-tLO" kind="relationship" relationship="rootViewController" id="3hw-gz-eJK"/>
  3678. </connections>
  3679. </navigationController>
  3680. <placeholder placeholderIdentifier="IBFirstResponder" id="GK4-Ge-d0d" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3681. </objects>
  3682. <point key="canvasLocation" x="4898" y="2310"/>
  3683. </scene>
  3684. <!--Saisir le code-->
  3685. <scene sceneID="5v0-HU-0As">
  3686. <objects>
  3687. <tableViewController id="mgQ-xL-6Dq" customClass="EnterCodeViewController" sceneMemberID="viewController">
  3688. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="IC1-Ev-N7U">
  3689. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3690. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3691. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3692. <sections>
  3693. <tableViewSection footerTitle="Numéro : +41 79 123 45 67" id="kBl-1G-n3b">
  3694. <cells>
  3695. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="85" id="3i6-d7-iVq">
  3696. <rect key="frame" x="0.0" y="35" width="375" height="85"/>
  3697. <autoresizingMask key="autoresizingMask"/>
  3698. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="3i6-d7-iVq" id="3T4-db-lIp">
  3699. <rect key="frame" x="0.0" y="0.0" width="375" height="84.5"/>
  3700. <autoresizingMask key="autoresizingMask"/>
  3701. <subviews>
  3702. <textField opaque="NO" clipsSubviews="YES" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="code" minimumFontSize="17" clearButtonMode="always" id="vU1-gh-2Ky">
  3703. <rect key="frame" x="11" y="39" width="352" height="38"/>
  3704. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3705. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3706. <color key="textColor" red="0.21960784310000001" green="0.3294117647" blue="0.52941176469999995" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3707. <fontDescription key="fontDescription" type="system" pointSize="32"/>
  3708. <textInputTraits key="textInputTraits" autocorrectionType="no" keyboardType="numberPad" returnKeyType="done" enablesReturnKeyAutomatically="YES"/>
  3709. <connections>
  3710. <action selector="doneAction:" destination="mgQ-xL-6Dq" eventType="editingDidEndOnExit" id="6bI-jC-2a4"/>
  3711. </connections>
  3712. </textField>
  3713. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Saisir le code" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jen-Sr-AdH">
  3714. <rect key="frame" x="15" y="11" width="182" height="21"/>
  3715. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3716. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  3717. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3718. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3719. <nil key="highlightedColor"/>
  3720. </label>
  3721. </subviews>
  3722. </tableViewCellContentView>
  3723. </tableViewCell>
  3724. </cells>
  3725. </tableViewSection>
  3726. <tableViewSection footerTitle="" id="viU-8v-3Zn">
  3727. <cells>
  3728. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="0qj-v8-SYq" detailTextLabel="LeM-DS-j2t" imageView="3is-c6-Zld" style="IBUITableViewCellStyleValue1" id="872-Br-rm3">
  3729. <rect key="frame" x="0.0" y="160" width="375" height="44"/>
  3730. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3731. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="872-Br-rm3" id="cQf-a2-f8b">
  3732. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3733. <autoresizingMask key="autoresizingMask"/>
  3734. <subviews>
  3735. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Demander un appel" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontSizeToFit="NO" id="0qj-v8-SYq">
  3736. <rect key="frame" x="55" y="12" width="96" height="20"/>
  3737. <autoresizingMask key="autoresizingMask"/>
  3738. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3739. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3740. <nil key="highlightedColor"/>
  3741. </label>
  3742. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="05:00" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" enabled="NO" adjustsFontSizeToFit="NO" id="LeM-DS-j2t">
  3743. <rect key="frame" x="314" y="12" width="46" height="20"/>
  3744. <autoresizingMask key="autoresizingMask"/>
  3745. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3746. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3747. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3748. </label>
  3749. <imageView opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" image="75-phone.png" highlightedImage="75-phone.png" id="3is-c6-Zld">
  3750. <rect key="frame" x="16" y="9" width="24" height="24"/>
  3751. <autoresizingMask key="autoresizingMask"/>
  3752. </imageView>
  3753. </subviews>
  3754. </tableViewCellContentView>
  3755. <inset key="separatorInset" minX="15" minY="0.0" maxX="0.0" maxY="0.0"/>
  3756. </tableViewCell>
  3757. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Y4O-oA-cpv" style="IBUITableViewCellStyleDefault" id="UYz-hD-Dez">
  3758. <rect key="frame" x="0.0" y="204" width="375" height="44"/>
  3759. <autoresizingMask key="autoresizingMask"/>
  3760. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="UYz-hD-Dez" id="NXW-eF-zAr">
  3761. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3762. <autoresizingMask key="autoresizingMask"/>
  3763. <subviews>
  3764. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Abandonner la vérification" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Y4O-oA-cpv">
  3765. <rect key="frame" x="16" y="0.0" width="344" height="43"/>
  3766. <autoresizingMask key="autoresizingMask"/>
  3767. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  3768. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3769. <nil key="highlightedColor"/>
  3770. </label>
  3771. </subviews>
  3772. </tableViewCellContentView>
  3773. </tableViewCell>
  3774. </cells>
  3775. </tableViewSection>
  3776. </sections>
  3777. <connections>
  3778. <outlet property="dataSource" destination="mgQ-xL-6Dq" id="T3V-UM-tv3"/>
  3779. <outlet property="delegate" destination="mgQ-xL-6Dq" id="aE8-mx-3DG"/>
  3780. </connections>
  3781. </tableView>
  3782. <navigationItem key="navigationItem" title="Saisir le code" id="avO-96-WCf">
  3783. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="dyx-sl-uAk">
  3784. <connections>
  3785. <action selector="cancelAction:" destination="mgQ-xL-6Dq" id="oiZ-n0-JJ3"/>
  3786. </connections>
  3787. </barButtonItem>
  3788. <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="sIq-fl-853">
  3789. <connections>
  3790. <action selector="doneAction:" destination="mgQ-xL-6Dq" id="cRw-Uz-qIO"/>
  3791. </connections>
  3792. </barButtonItem>
  3793. </navigationItem>
  3794. <connections>
  3795. <outlet property="callMeCell" destination="872-Br-rm3" id="7FL-ra-oxu"/>
  3796. <outlet property="codeTextField" destination="vU1-gh-2Ky" id="mKm-la-uKf"/>
  3797. </connections>
  3798. </tableViewController>
  3799. <placeholder placeholderIdentifier="IBFirstResponder" id="5nz-cQ-Jem" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3800. </objects>
  3801. <point key="canvasLocation" x="4153" y="1394"/>
  3802. </scene>
  3803. <!--Emplacement-->
  3804. <scene sceneID="WKh-CG-rTy">
  3805. <objects>
  3806. <viewController id="Wkx-66-6GX" customClass="PreviewLocationViewController" sceneMemberID="viewController">
  3807. <view key="view" contentMode="scaleToFill" id="iQb-3C-dOf">
  3808. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3809. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3810. <subviews>
  3811. <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" mapType="standard" showsUserLocation="YES" id="Je0-Vz-Lkn">
  3812. <rect key="frame" x="0.0" y="0.0" width="375" height="359"/>
  3813. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES" flexibleMaxY="YES"/>
  3814. <connections>
  3815. <outlet property="delegate" destination="Wkx-66-6GX" id="Ilv-OF-du2"/>
  3816. </connections>
  3817. </mapView>
  3818. <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="22" sectionFooterHeight="22" id="FDN-uT-vuM">
  3819. <rect key="frame" x="0.0" y="361" width="375" height="306"/>
  3820. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES" heightSizable="YES"/>
  3821. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3822. <view key="tableFooterView" contentMode="scaleToFill" id="scM-AV-qVR">
  3823. <rect key="frame" x="0.0" y="154" width="375" height="89"/>
  3824. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3825. <subviews>
  3826. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="powered-by-google-on-white.png" id="QSD-rS-Xn4">
  3827. <rect key="frame" x="264" y="5" width="104" height="16"/>
  3828. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  3829. </imageView>
  3830. <textView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" scrollEnabled="NO" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" editable="NO" id="hXf-no-kDy">
  3831. <rect key="frame" x="8" y="20" width="360" height="62"/>
  3832. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3833. <fontDescription key="fontDescription" type="system" pointSize="12"/>
  3834. <textInputTraits key="textInputTraits" autocapitalizationType="sentences"/>
  3835. </textView>
  3836. </subviews>
  3837. </view>
  3838. <prototypes>
  3839. <tableViewCell contentMode="scaleToFill" selectionStyle="default" indentationWidth="10" reuseIdentifier="PoiCell" id="gOl-pQ-2il" customClass="PoiTableViewCell">
  3840. <rect key="frame" x="0.0" y="22" width="375" height="44"/>
  3841. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3842. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="gOl-pQ-2il" id="0cp-mH-50I">
  3843. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3844. <autoresizingMask key="autoresizingMask"/>
  3845. <subviews>
  3846. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" horizontalHuggingPriority="251" verticalHuggingPriority="251" id="yu5-1d-d0A">
  3847. <rect key="frame" x="15" y="6" width="32" height="32"/>
  3848. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3849. </imageView>
  3850. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="hoT-eO-rmt">
  3851. <rect key="frame" x="55" y="3" width="311" height="21"/>
  3852. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3853. <fontDescription key="fontDescription" type="system" pointSize="16"/>
  3854. <nil key="highlightedColor"/>
  3855. </label>
  3856. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="XKh-pU-f5v">
  3857. <rect key="frame" x="55" y="21" width="311" height="21"/>
  3858. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3859. <fontDescription key="fontDescription" type="system" pointSize="13"/>
  3860. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3861. <nil key="highlightedColor"/>
  3862. </label>
  3863. </subviews>
  3864. </tableViewCellContentView>
  3865. <connections>
  3866. <outlet property="addressLabel" destination="XKh-pU-f5v" id="dy9-rn-nnO"/>
  3867. <outlet property="iconView" destination="yu5-1d-d0A" id="eRg-z9-R23"/>
  3868. <outlet property="nameLabel" destination="hoT-eO-rmt" id="gM1-nm-DQ0"/>
  3869. </connections>
  3870. </tableViewCell>
  3871. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="NoPlacesFoundCell" id="ZEa-VT-VrF">
  3872. <rect key="frame" x="0.0" y="66" width="375" height="44"/>
  3873. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3874. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="ZEa-VT-VrF" id="xEF-es-Ppz">
  3875. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3876. <autoresizingMask key="autoresizingMask"/>
  3877. <subviews>
  3878. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Aucun POI trouvé à l'emplacement actuel" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="jSK-DO-xV2">
  3879. <rect key="frame" x="15" y="11" width="339" height="21"/>
  3880. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3881. <fontDescription key="fontDescription" type="italicSystem" pointSize="14"/>
  3882. <color key="textColor" red="0.66666666666666663" green="0.66666666666666663" blue="0.66666666666666663" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3883. <nil key="highlightedColor"/>
  3884. </label>
  3885. </subviews>
  3886. </tableViewCellContentView>
  3887. </tableViewCell>
  3888. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" reuseIdentifier="SpinnerCell" id="t7Z-a3-P0r">
  3889. <rect key="frame" x="0.0" y="110" width="375" height="44"/>
  3890. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3891. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="t7Z-a3-P0r" id="u3F-pD-HYF">
  3892. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  3893. <autoresizingMask key="autoresizingMask"/>
  3894. <subviews>
  3895. <activityIndicatorView opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" animating="YES" style="gray" id="pQw-UF-py6">
  3896. <rect key="frame" x="174" y="12" width="20" height="20"/>
  3897. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3898. </activityIndicatorView>
  3899. </subviews>
  3900. </tableViewCellContentView>
  3901. </tableViewCell>
  3902. </prototypes>
  3903. <connections>
  3904. <outlet property="dataSource" destination="Wkx-66-6GX" id="ATU-i1-c8v"/>
  3905. <outlet property="delegate" destination="Wkx-66-6GX" id="f3c-vQ-Lpc"/>
  3906. </connections>
  3907. </tableView>
  3908. <searchBar contentMode="redraw" id="ONP-GH-deN">
  3909. <rect key="frame" x="0.0" y="64" width="375" height="44"/>
  3910. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  3911. <textInputTraits key="textInputTraits"/>
  3912. <connections>
  3913. <outlet property="delegate" destination="Wkx-66-6GX" id="sJc-Za-kpa"/>
  3914. </connections>
  3915. </searchBar>
  3916. </subviews>
  3917. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  3918. </view>
  3919. <navigationItem key="navigationItem" title="Emplacement" id="eXF-nx-MbG">
  3920. <barButtonItem key="leftBarButtonItem" systemItem="cancel" id="gbL-qc-nD4">
  3921. <connections>
  3922. <action selector="cancelAction:" destination="Wkx-66-6GX" id="3wq-nj-z6i"/>
  3923. </connections>
  3924. </barButtonItem>
  3925. <barButtonItem key="rightBarButtonItem" title="Envoyer" style="done" id="aQb-a9-JtU">
  3926. <connections>
  3927. <action selector="sendAction:" destination="Wkx-66-6GX" id="vj5-3j-sA0"/>
  3928. </connections>
  3929. </barButtonItem>
  3930. </navigationItem>
  3931. <connections>
  3932. <outlet property="attributionTextView" destination="hXf-no-kDy" id="ZVE-xk-cP7"/>
  3933. <outlet property="mapView" destination="Je0-Vz-Lkn" id="b6u-Rt-HOF"/>
  3934. <outlet property="poiTableView" destination="FDN-uT-vuM" id="Be4-BD-mFX"/>
  3935. <outlet property="searchBar" destination="ONP-GH-deN" id="ERR-oq-oiL"/>
  3936. <outlet property="searchDisplayController" destination="8jz-Dp-vbY" id="OEm-2B-jCS"/>
  3937. </connections>
  3938. </viewController>
  3939. <placeholder placeholderIdentifier="IBFirstResponder" id="cAf-3k-pix" userLabel="First Responder" sceneMemberID="firstResponder"/>
  3940. <searchDisplayController id="8jz-Dp-vbY">
  3941. <connections>
  3942. <outlet property="delegate" destination="Wkx-66-6GX" id="vhx-KY-4H3"/>
  3943. <outlet property="searchBar" destination="ONP-GH-deN" id="s3v-Ff-61c"/>
  3944. <outlet property="searchContentsController" destination="Wkx-66-6GX" id="q31-0q-UTg"/>
  3945. <outlet property="searchResultsDataSource" destination="Wkx-66-6GX" id="tSQ-gI-rCs"/>
  3946. <outlet property="searchResultsDelegate" destination="Wkx-66-6GX" id="zeK-j2-Uf2"/>
  3947. </connections>
  3948. </searchDisplayController>
  3949. </objects>
  3950. <point key="canvasLocation" x="5721" y="-843"/>
  3951. </scene>
  3952. <!--Emplacement-->
  3953. <scene sceneID="Z2f-4e-iax">
  3954. <objects>
  3955. <viewController id="FVk-BM-jrL" customClass="LocationViewController" sceneMemberID="viewController">
  3956. <view key="view" contentMode="scaleToFill" id="rJc-tG-ypl">
  3957. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  3958. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3959. <subviews>
  3960. <mapView clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="scaleToFill" mapType="standard" id="S8H-J6-Ghl">
  3961. <rect key="frame" x="0.0" y="0.0" width="375" height="623"/>
  3962. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  3963. <connections>
  3964. <outlet property="delegate" destination="FVk-BM-jrL" id="B0B-6H-r0n"/>
  3965. </connections>
  3966. </mapView>
  3967. <toolbar opaque="NO" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="Pwh-dA-MBJ">
  3968. <rect key="frame" x="0.0" y="623" width="375" height="44"/>
  3969. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMinY="YES"/>
  3970. <items>
  3971. <barButtonItem image="947-target-reticle-toolbar.png" id="5k3-jD-RBI">
  3972. <connections>
  3973. <action selector="gotoUserLocationButtonTapped:" destination="FVk-BM-jrL" id="wLI-dZ-HUZ"/>
  3974. </connections>
  3975. </barButtonItem>
  3976. <barButtonItem style="plain" systemItem="flexibleSpace" id="ZKQ-1p-YQv"/>
  3977. <barButtonItem style="plain" id="gQF-5H-Z1H">
  3978. <segmentedControl key="customView" opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="left" contentVerticalAlignment="top" segmentControlStyle="bar" selectedSegmentIndex="0" id="M1P-ix-V2L">
  3979. <rect key="frame" x="82" y="7.5" width="210" height="29"/>
  3980. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  3981. <segments>
  3982. <segment title="Standard"/>
  3983. <segment title="Mixte"/>
  3984. <segment title="Satellite"/>
  3985. </segments>
  3986. <connections>
  3987. <action selector="mapTypeChanged:" destination="FVk-BM-jrL" eventType="valueChanged" id="VxI-Gv-4nf"/>
  3988. </connections>
  3989. </segmentedControl>
  3990. </barButtonItem>
  3991. <barButtonItem style="plain" systemItem="flexibleSpace" id="Oxk-XT-dDa"/>
  3992. <barButtonItem image="940-pin-toolbar.png" id="C0u-5z-beZ">
  3993. <connections>
  3994. <action selector="gotoLocationButtonTapped:" destination="FVk-BM-jrL" id="UbN-h8-KQu"/>
  3995. </connections>
  3996. </barButtonItem>
  3997. <barButtonItem width="4" style="plain" systemItem="fixedSpace" id="YBk-mo-fhm"/>
  3998. </items>
  3999. </toolbar>
  4000. </subviews>
  4001. <color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4002. </view>
  4003. <navigationItem key="navigationItem" title="Emplacement" id="uA6-FU-2ms">
  4004. <barButtonItem key="rightBarButtonItem" systemItem="action" id="g63-mL-9aV">
  4005. <connections>
  4006. <action selector="actionButton:" destination="FVk-BM-jrL" id="k7Z-FE-B7H"/>
  4007. </connections>
  4008. </barButtonItem>
  4009. </navigationItem>
  4010. <connections>
  4011. <outlet property="mapTypeControl" destination="M1P-ix-V2L" id="SYk-3D-PWa"/>
  4012. <outlet property="mapView" destination="S8H-J6-Ghl" id="9CB-fL-wrH"/>
  4013. </connections>
  4014. </viewController>
  4015. <placeholder placeholderIdentifier="IBFirstResponder" id="imr-ga-5Ay" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4016. </objects>
  4017. <point key="canvasLocation" x="3190" y="574"/>
  4018. </scene>
  4019. <!--Modal Navigation Controller-->
  4020. <scene sceneID="T0c-rO-0aC">
  4021. <objects>
  4022. <navigationController id="wPu-1J-vpq" customClass="ModalNavigationController" sceneMemberID="viewController">
  4023. <toolbarItems/>
  4024. <navigationBar key="navigationBar" contentMode="scaleToFill" id="3vI-kR-Vy4" customClass="StatusNavigationBar">
  4025. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4026. <autoresizingMask key="autoresizingMask"/>
  4027. </navigationBar>
  4028. <nil name="viewControllers"/>
  4029. <connections>
  4030. <segue destination="mgQ-xL-6Dq" kind="relationship" relationship="rootViewController" id="IHh-4d-k73"/>
  4031. </connections>
  4032. </navigationController>
  4033. <placeholder placeholderIdentifier="IBFirstResponder" id="20Z-22-fYk" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4034. </objects>
  4035. <point key="canvasLocation" x="3614" y="1394"/>
  4036. </scene>
  4037. <!--Modal Navigation Controller-->
  4038. <scene sceneID="1Tf-5Q-14e">
  4039. <objects>
  4040. <navigationController id="1K5-up-8kR" customClass="ModalNavigationController" sceneMemberID="viewController">
  4041. <toolbarItems/>
  4042. <navigationBar key="navigationBar" contentMode="scaleToFill" id="RJ5-Lc-a2K" customClass="StatusNavigationBar">
  4043. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4044. <autoresizingMask key="autoresizingMask"/>
  4045. </navigationBar>
  4046. <nil name="viewControllers"/>
  4047. <connections>
  4048. <segue destination="3Ka-Iq-ckG" kind="relationship" relationship="rootViewController" id="U7x-fc-44G"/>
  4049. </connections>
  4050. </navigationController>
  4051. <placeholder placeholderIdentifier="IBFirstResponder" id="dxI-LE-gWO" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4052. </objects>
  4053. <point key="canvasLocation" x="4840" y="1005"/>
  4054. </scene>
  4055. <!--Sauvegarder-->
  4056. <scene sceneID="aZM-S6-hXI">
  4057. <objects>
  4058. <tableViewController storyboardIdentifier="BackupIdentityViewController" id="gAo-8A-eYi" customClass="BackupIdentityViewController" sceneMemberID="viewController">
  4059. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="sZM-Dq-rH8">
  4060. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4061. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4062. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4063. <sections>
  4064. <tableViewSection footerTitle="#do not translate#The encrypted ID backup will be included when you back up your phone via iTunes or iCloud." id="eEV-l3-MXP">
  4065. <cells>
  4066. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="62" id="e3O-9W-VlG">
  4067. <rect key="frame" x="0.0" y="35" width="375" height="62"/>
  4068. <autoresizingMask key="autoresizingMask"/>
  4069. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="e3O-9W-VlG" id="Sxn-kq-jG9">
  4070. <rect key="frame" x="0.0" y="0.0" width="375" height="61.5"/>
  4071. <autoresizingMask key="autoresizingMask"/>
  4072. <subviews>
  4073. <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Inclure dans la sauvegarde du téléphone" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="MXp-9z-7FN">
  4074. <rect key="frame" x="15" y="9" width="210" height="43"/>
  4075. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4076. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4077. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4078. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4079. <nil key="highlightedColor"/>
  4080. </label>
  4081. <switch opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="750" verticalHuggingPriority="750" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="jvu-Hd-FqV">
  4082. <rect key="frame" x="302" y="14" width="52" height="31"/>
  4083. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  4084. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  4085. <connections>
  4086. <action selector="phoneBackupSwitchChanged:" destination="gAo-8A-eYi" eventType="valueChanged" id="oB9-I2-kIE"/>
  4087. </connections>
  4088. </switch>
  4089. </subviews>
  4090. </tableViewCellContentView>
  4091. </tableViewCell>
  4092. </cells>
  4093. </tableViewSection>
  4094. <tableViewSection id="dgK-0J-UrZ">
  4095. <string key="footerTitle">Ces données et le mot de passe que vous avez choisi peuvent être utilisés pour restaurer votre ID sur un autre appareil. Vous pouvez le copier et le coller en lieu sûr, vous l'envoyer par courriel ou scanner le code QR à l'aide d'un autre appareil.</string>
  4096. <cells>
  4097. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="197" id="CCC-bg-9EV">
  4098. <rect key="frame" x="0.0" y="169" width="375" height="197"/>
  4099. <autoresizingMask key="autoresizingMask"/>
  4100. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CCC-bg-9EV" id="6vo-th-Uu5">
  4101. <rect key="frame" x="0.0" y="0.0" width="375" height="196.5"/>
  4102. <autoresizingMask key="autoresizingMask"/>
  4103. <subviews>
  4104. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Sauvegarde de votre ID" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ZIq-dn-JdH">
  4105. <rect key="frame" x="15" y="11" width="268" height="21"/>
  4106. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4107. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  4108. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4109. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4110. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4111. </label>
  4112. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX-XXXX" lineBreakMode="wordWrap" numberOfLines="8" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="UbM-As-itV" customClass="CopyLabel">
  4113. <rect key="frame" x="15" y="44" width="285" height="136"/>
  4114. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4115. <inset key="insetFor6xAndEarlier" minX="3" minY="0.0" maxX="-3" maxY="0.0"/>
  4116. <fontDescription key="fontDescription" name="Courier" family="Courier" pointSize="22"/>
  4117. <color key="textColor" red="0.33333333333333331" green="0.33333333333333331" blue="0.33333333333333331" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4118. <color key="highlightedColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4119. </label>
  4120. </subviews>
  4121. </tableViewCellContentView>
  4122. </tableViewCell>
  4123. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" rowHeight="236" id="i0e-YI-l7h">
  4124. <rect key="frame" x="0.0" y="366" width="375" height="236"/>
  4125. <autoresizingMask key="autoresizingMask"/>
  4126. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="i0e-YI-l7h" id="QPu-lW-7f1">
  4127. <rect key="frame" x="0.0" y="0.0" width="375" height="235.5"/>
  4128. <autoresizingMask key="autoresizingMask"/>
  4129. <subviews>
  4130. <imageView userInteractionEnabled="NO" contentMode="scaleToFill" id="kRn-kl-WMg">
  4131. <rect key="frame" x="86" y="18" width="200" height="200"/>
  4132. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4133. </imageView>
  4134. </subviews>
  4135. </tableViewCellContentView>
  4136. </tableViewCell>
  4137. </cells>
  4138. </tableViewSection>
  4139. </sections>
  4140. <connections>
  4141. <outlet property="dataSource" destination="gAo-8A-eYi" id="se1-gl-h6d"/>
  4142. <outlet property="delegate" destination="gAo-8A-eYi" id="6gX-95-2Ir"/>
  4143. </connections>
  4144. </tableView>
  4145. <navigationItem key="navigationItem" title="Sauvegarder" id="tUV-iz-VQc">
  4146. <barButtonItem key="leftBarButtonItem" systemItem="action" id="6rx-8S-8dN">
  4147. <connections>
  4148. <action selector="actionAction:" destination="gAo-8A-eYi" id="HoY-DV-TVY"/>
  4149. </connections>
  4150. </barButtonItem>
  4151. <barButtonItem key="rightBarButtonItem" style="done" systemItem="done" id="BHs-xY-jVH">
  4152. <connections>
  4153. <action selector="doneAction:" destination="gAo-8A-eYi" id="sPG-bB-UgV"/>
  4154. </connections>
  4155. </barButtonItem>
  4156. </navigationItem>
  4157. <connections>
  4158. <outlet property="identityBackupLabel" destination="UbM-As-itV" id="snU-Nd-bbt"/>
  4159. <outlet property="phoneBackupSwitch" destination="jvu-Hd-FqV" id="Ohm-4f-7pv"/>
  4160. <outlet property="qrImageView" destination="kRn-kl-WMg" id="UpV-b7-z41"/>
  4161. </connections>
  4162. </tableViewController>
  4163. <placeholder placeholderIdentifier="IBFirstResponder" id="b8h-ot-G05" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4164. </objects>
  4165. <point key="canvasLocation" x="5721" y="4167"/>
  4166. </scene>
  4167. <!--Modal Navigation Controller-->
  4168. <scene sceneID="6uV-Dd-70q">
  4169. <objects>
  4170. <navigationController storyboardIdentifier="PreviewImageNav" id="DJG-Qa-Yg3" customClass="ModalNavigationController" sceneMemberID="viewController">
  4171. <toolbarItems/>
  4172. <navigationBar key="navigationBar" contentMode="scaleToFill" id="npS-lz-iH9" customClass="StatusNavigationBar">
  4173. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4174. <autoresizingMask key="autoresizingMask"/>
  4175. </navigationBar>
  4176. <nil name="viewControllers"/>
  4177. <connections>
  4178. <segue destination="xFf-fm-QrO" kind="relationship" relationship="rootViewController" id="q48-tN-sD4"/>
  4179. </connections>
  4180. </navigationController>
  4181. <placeholder placeholderIdentifier="IBFirstResponder" id="pRS-65-HaS" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4182. </objects>
  4183. <point key="canvasLocation" x="5278" y="-1524"/>
  4184. </scene>
  4185. <!--Modal Navigation Controller-->
  4186. <scene sceneID="r0I-Pl-MjX">
  4187. <objects>
  4188. <navigationController storyboardIdentifier="PreviewLocationNav" id="e4t-hK-I8I" customClass="ModalNavigationController" sceneMemberID="viewController">
  4189. <toolbarItems/>
  4190. <navigationBar key="navigationBar" contentMode="scaleToFill" id="Y2Y-vI-g7b" customClass="StatusNavigationBar">
  4191. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4192. <autoresizingMask key="autoresizingMask"/>
  4193. </navigationBar>
  4194. <nil name="viewControllers"/>
  4195. <connections>
  4196. <segue destination="Wkx-66-6GX" kind="relationship" relationship="rootViewController" id="3Lk-6y-Uhp"/>
  4197. </connections>
  4198. </navigationController>
  4199. <placeholder placeholderIdentifier="IBFirstResponder" id="Bn8-Po-FKe" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4200. </objects>
  4201. <point key="canvasLocation" x="5197" y="-843"/>
  4202. </scene>
  4203. <!--Détails du message-->
  4204. <scene sceneID="Cv9-FB-47s">
  4205. <objects>
  4206. <tableViewController id="E7y-fb-wyM" customClass="MessageDetailsViewController" sceneMemberID="viewController">
  4207. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="jvs-rb-KIX">
  4208. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4209. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4210. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4211. <sections>
  4212. <tableViewSection id="XfY-AL-XVD">
  4213. <cells>
  4214. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="yWO-wH-mIW" detailTextLabel="6bQ-Vj-jcf" style="IBUITableViewCellStyleValue1" id="Bp8-mc-hzQ">
  4215. <rect key="frame" x="0.0" y="35" width="375" height="44"/>
  4216. <autoresizingMask key="autoresizingMask"/>
  4217. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Bp8-mc-hzQ" id="JeJ-md-9Ou">
  4218. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4219. <autoresizingMask key="autoresizingMask"/>
  4220. <subviews>
  4221. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Envoyé" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="yWO-wH-mIW">
  4222. <rect key="frame" x="16" y="12" width="36" height="20"/>
  4223. <autoresizingMask key="autoresizingMask"/>
  4224. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4225. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4226. <nil key="highlightedColor"/>
  4227. </label>
  4228. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="6bQ-Vj-jcf">
  4229. <rect key="frame" x="316" y="12" width="44" height="20"/>
  4230. <autoresizingMask key="autoresizingMask"/>
  4231. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4232. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4233. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4234. </label>
  4235. </subviews>
  4236. </tableViewCellContentView>
  4237. </tableViewCell>
  4238. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="qNO-eF-kmI" detailTextLabel="kaj-lV-4MC" style="IBUITableViewCellStyleValue1" id="EbI-pt-9xY">
  4239. <rect key="frame" x="0.0" y="79" width="375" height="44"/>
  4240. <autoresizingMask key="autoresizingMask"/>
  4241. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="EbI-pt-9xY" id="GFp-1y-UAg">
  4242. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4243. <autoresizingMask key="autoresizingMask"/>
  4244. <subviews>
  4245. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Livré" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qNO-eF-kmI">
  4246. <rect key="frame" x="16" y="12" width="72" height="20"/>
  4247. <autoresizingMask key="autoresizingMask"/>
  4248. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4249. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4250. <nil key="highlightedColor"/>
  4251. </label>
  4252. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="kaj-lV-4MC">
  4253. <rect key="frame" x="316" y="12" width="44" height="20"/>
  4254. <autoresizingMask key="autoresizingMask"/>
  4255. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4256. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4257. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4258. </label>
  4259. </subviews>
  4260. </tableViewCellContentView>
  4261. </tableViewCell>
  4262. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="Zrm-eG-ewD" detailTextLabel="6On-uo-xuU" style="IBUITableViewCellStyleValue1" id="LdK-5e-ndU">
  4263. <rect key="frame" x="0.0" y="123" width="375" height="44"/>
  4264. <autoresizingMask key="autoresizingMask"/>
  4265. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="LdK-5e-ndU" id="66f-43-i0T">
  4266. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4267. <autoresizingMask key="autoresizingMask"/>
  4268. <subviews>
  4269. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Lu" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Zrm-eG-ewD">
  4270. <rect key="frame" x="16" y="12" width="39" height="20"/>
  4271. <autoresizingMask key="autoresizingMask"/>
  4272. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4273. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4274. <nil key="highlightedColor"/>
  4275. </label>
  4276. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="6On-uo-xuU">
  4277. <rect key="frame" x="316" y="12" width="44" height="20"/>
  4278. <autoresizingMask key="autoresizingMask"/>
  4279. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4280. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4281. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4282. </label>
  4283. </subviews>
  4284. </tableViewCellContentView>
  4285. </tableViewCell>
  4286. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" textLabel="VRy-nm-s0X" detailTextLabel="5Ca-aK-dv0" style="IBUITableViewCellStyleValue1" id="jhc-3O-3ED">
  4287. <rect key="frame" x="0.0" y="167" width="375" height="44"/>
  4288. <autoresizingMask key="autoresizingMask"/>
  4289. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="jhc-3O-3ED" id="3lf-c1-KWQ">
  4290. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4291. <autoresizingMask key="autoresizingMask"/>
  4292. <subviews>
  4293. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Accusé réception" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="VRy-nm-s0X">
  4294. <rect key="frame" x="16" y="12" width="113" height="20"/>
  4295. <autoresizingMask key="autoresizingMask"/>
  4296. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4297. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4298. <nil key="highlightedColor"/>
  4299. </label>
  4300. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Détail" textAlignment="right" lineBreakMode="headTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="5Ca-aK-dv0">
  4301. <rect key="frame" x="316" y="12" width="44" height="20"/>
  4302. <autoresizingMask key="autoresizingMask"/>
  4303. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4304. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4305. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4306. </label>
  4307. </subviews>
  4308. </tableViewCellContentView>
  4309. </tableViewCell>
  4310. </cells>
  4311. </tableViewSection>
  4312. </sections>
  4313. <connections>
  4314. <outlet property="dataSource" destination="E7y-fb-wyM" id="LdU-3k-7vK"/>
  4315. <outlet property="delegate" destination="E7y-fb-wyM" id="gPG-RT-yhf"/>
  4316. </connections>
  4317. </tableView>
  4318. <navigationItem key="navigationItem" title="Détails du message" id="LsJ-Ts-xZd"/>
  4319. <connections>
  4320. <outlet property="ackDateLabel" destination="5Ca-aK-dv0" id="p8M-Jl-onh"/>
  4321. <outlet property="deliveredDateLabel" destination="kaj-lV-4MC" id="2F5-Cf-6vI"/>
  4322. <outlet property="readDateLabel" destination="6On-uo-xuU" id="Q6N-Ru-waC"/>
  4323. <outlet property="sendDateLabel" destination="6bQ-Vj-jcf" id="Qcr-nH-KwS"/>
  4324. </connections>
  4325. </tableViewController>
  4326. <placeholder placeholderIdentifier="IBFirstResponder" id="dXE-vh-e84" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4327. </objects>
  4328. <point key="canvasLocation" x="2598" y="964"/>
  4329. </scene>
  4330. <!--Qualité de la vidéo-->
  4331. <scene sceneID="aFo-Qe-zRl">
  4332. <objects>
  4333. <tableViewController id="UHC-G1-hob" customClass="VideoQualityViewController" sceneMemberID="viewController">
  4334. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="56" sectionHeaderHeight="10" sectionFooterHeight="10" id="29O-Om-fxq">
  4335. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4336. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4337. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4338. <prototypes>
  4339. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" accessoryType="checkmark" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="VideoQualityCell" textLabel="ZSt-Jr-TL7" detailTextLabel="Bw0-HM-0jN" style="IBUITableViewCellStyleSubtitle" id="oKE-y5-x0h">
  4340. <rect key="frame" x="0.0" y="55.5" width="375" height="56"/>
  4341. <autoresizingMask key="autoresizingMask"/>
  4342. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="oKE-y5-x0h" id="xQQ-sB-6dU">
  4343. <rect key="frame" x="0.0" y="0.0" width="336" height="55.5"/>
  4344. <autoresizingMask key="autoresizingMask"/>
  4345. <subviews>
  4346. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Titre" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="ZSt-Jr-TL7">
  4347. <rect key="frame" x="16" y="9" width="34" height="20"/>
  4348. <autoresizingMask key="autoresizingMask"/>
  4349. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4350. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4351. <nil key="highlightedColor"/>
  4352. </label>
  4353. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Sous-titre" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="Bw0-HM-0jN">
  4354. <rect key="frame" x="16" y="29" width="65" height="17"/>
  4355. <autoresizingMask key="autoresizingMask"/>
  4356. <fontDescription key="fontDescription" type="system" pointSize="14"/>
  4357. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4358. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4359. </label>
  4360. </subviews>
  4361. </tableViewCellContentView>
  4362. </tableViewCell>
  4363. </prototypes>
  4364. <sections/>
  4365. <connections>
  4366. <outlet property="dataSource" destination="UHC-G1-hob" id="8kH-3Y-7mn"/>
  4367. <outlet property="delegate" destination="UHC-G1-hob" id="yfY-GG-4ld"/>
  4368. </connections>
  4369. </tableView>
  4370. <navigationItem key="navigationItem" title="Qualité de la vidéo" id="WUF-zB-hCc"/>
  4371. </tableViewController>
  4372. <placeholder placeholderIdentifier="IBFirstResponder" id="ebK-CV-Yu7" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4373. </objects>
  4374. <point key="canvasLocation" x="3131" y="6517"/>
  4375. </scene>
  4376. <!--Avancé-->
  4377. <scene sceneID="m8L-Up-WdY">
  4378. <objects>
  4379. <tableViewController id="7pH-aa-DuY" customClass="AdvancedSettingsViewController" sceneMemberID="viewController">
  4380. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="static" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="1tj-pg-gqq">
  4381. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4382. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4383. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4384. <sections>
  4385. <tableViewSection headerTitle="Dépannage" footerTitle="" id="MvA-PP-dAv">
  4386. <cells>
  4387. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="7Ge-DP-BoR">
  4388. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  4389. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4390. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="7Ge-DP-BoR" id="10X-8Z-M5L">
  4391. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4392. <autoresizingMask key="autoresizingMask"/>
  4393. <subviews>
  4394. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="IPv6" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="tMC-r1-Kb2">
  4395. <rect key="frame" x="15" y="11" width="224" height="21"/>
  4396. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4397. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4398. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4399. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4400. <nil key="highlightedColor"/>
  4401. </label>
  4402. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="Kwd-Bj-mMv">
  4403. <rect key="frame" x="306" y="6" width="50" height="31"/>
  4404. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  4405. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  4406. <connections>
  4407. <action selector="enableIPv6Changed:" destination="7pH-aa-DuY" eventType="valueChanged" id="xnc-47-urN"/>
  4408. </connections>
  4409. </switch>
  4410. </subviews>
  4411. </tableViewCellContentView>
  4412. </tableViewCell>
  4413. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="GGc-PA-VMc">
  4414. <rect key="frame" x="0.0" y="99.5" width="375" height="44"/>
  4415. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4416. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="GGc-PA-VMc" id="ARP-KA-vmC">
  4417. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4418. <autoresizingMask key="autoresizingMask"/>
  4419. <subviews>
  4420. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Connexion en arrière-plan" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="fff-dA-feT">
  4421. <rect key="frame" x="15" y="11" width="224" height="21"/>
  4422. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4423. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4424. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4425. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4426. <nil key="highlightedColor"/>
  4427. </label>
  4428. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="EO3-ji-4bE">
  4429. <rect key="frame" x="306" y="6" width="50" height="31"/>
  4430. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  4431. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  4432. <connections>
  4433. <action selector="backgroundProcessingChanged:" destination="7pH-aa-DuY" eventType="valueChanged" id="7RE-UT-bug"/>
  4434. </connections>
  4435. </switch>
  4436. </subviews>
  4437. </tableViewCellContentView>
  4438. </tableViewCell>
  4439. </cells>
  4440. </tableViewSection>
  4441. <tableViewSection headerTitle="Informations support" footerTitle="" id="JkJ-JL-iTc">
  4442. <cells>
  4443. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="MvP-CZ-MOx">
  4444. <rect key="frame" x="0.0" y="199" width="375" height="44"/>
  4445. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4446. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="MvP-CZ-MOx" id="ZUV-MA-drN">
  4447. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4448. <autoresizingMask key="autoresizingMask"/>
  4449. <subviews>
  4450. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Push Token" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ghb-GB-r7T">
  4451. <rect key="frame" x="15" y="11" width="182" height="21"/>
  4452. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4453. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4454. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4455. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4456. <nil key="highlightedColor"/>
  4457. </label>
  4458. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Push Token" textAlignment="right" lineBreakMode="middleTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="WrW-pc-wdK" customClass="CopyLabel">
  4459. <rect key="frame" x="141" y="11" width="216" height="21"/>
  4460. <autoresizingMask key="autoresizingMask" widthSizable="YES" flexibleMaxY="YES"/>
  4461. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4462. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4463. <nil key="highlightedColor"/>
  4464. </label>
  4465. </subviews>
  4466. </tableViewCellContentView>
  4467. </tableViewCell>
  4468. </cells>
  4469. </tableViewSection>
  4470. <tableViewSection headerTitle="Journal de validation" id="cRN-dg-OxE">
  4471. <cells>
  4472. <tableViewCell contentMode="scaleToFill" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" id="CxY-UP-JRx">
  4473. <rect key="frame" x="0.0" y="291" width="375" height="44"/>
  4474. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4475. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="CxY-UP-JRx" id="XOT-TF-sxN">
  4476. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4477. <autoresizingMask key="autoresizingMask"/>
  4478. <subviews>
  4479. <label opaque="NO" clipsSubviews="YES" userInteractionEnabled="NO" contentMode="left" text="Journal de validation" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsLetterSpacingToFitWidth="YES" adjustsFontSizeToFit="NO" id="ekf-QV-s7L">
  4480. <rect key="frame" x="15" y="11" width="231" height="21"/>
  4481. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4482. <inset key="insetFor6xAndEarlier" minX="5" minY="0.0" maxX="-5" maxY="0.0"/>
  4483. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4484. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4485. <nil key="highlightedColor"/>
  4486. </label>
  4487. <switch opaque="NO" contentMode="scaleToFill" contentHorizontalAlignment="center" contentVerticalAlignment="center" on="YES" id="W5d-6Q-TNI">
  4488. <rect key="frame" x="306" y="6" width="50" height="31"/>
  4489. <autoresizingMask key="autoresizingMask" flexibleMinX="YES" flexibleMaxY="YES"/>
  4490. <inset key="insetFor6xAndEarlier" minX="-7" minY="-2" maxX="7" maxY="2"/>
  4491. <connections>
  4492. <action selector="validationLoggingChanged:" destination="7pH-aa-DuY" eventType="valueChanged" id="SwG-dN-USH"/>
  4493. </connections>
  4494. </switch>
  4495. </subviews>
  4496. </tableViewCellContentView>
  4497. </tableViewCell>
  4498. <tableViewCell contentMode="scaleToFill" selectionStyle="none" indentationWidth="10" textLabel="G71-r7-8ej" detailTextLabel="0Gd-td-Hl4" style="IBUITableViewCellStyleValue1" id="drp-ye-qsW">
  4499. <rect key="frame" x="0.0" y="335" width="375" height="44"/>
  4500. <autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
  4501. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="drp-ye-qsW" id="8dS-dp-A4M">
  4502. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4503. <autoresizingMask key="autoresizingMask"/>
  4504. <subviews>
  4505. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Taille du journal" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="G71-r7-8ej">
  4506. <rect key="frame" x="16" y="12" width="65" height="21"/>
  4507. <autoresizingMask key="autoresizingMask"/>
  4508. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4509. <nil key="highlightedColor"/>
  4510. </label>
  4511. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="0 Ko" textAlignment="right" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="0Gd-td-Hl4">
  4512. <rect key="frame" x="324" y="12" width="36" height="21"/>
  4513. <autoresizingMask key="autoresizingMask"/>
  4514. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4515. <color key="textColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4516. <color key="highlightedColor" red="0.5568627451" green="0.5568627451" blue="0.57647058819999997" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4517. </label>
  4518. </subviews>
  4519. </tableViewCellContentView>
  4520. </tableViewCell>
  4521. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="qlo-Qb-yd6" style="IBUITableViewCellStyleDefault" id="1B4-9s-hrY">
  4522. <rect key="frame" x="0.0" y="379" width="375" height="44"/>
  4523. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4524. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="1B4-9s-hrY" id="7xp-ek-Bwb">
  4525. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4526. <autoresizingMask key="autoresizingMask"/>
  4527. <subviews>
  4528. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Envoyer par courriel" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="qlo-Qb-yd6">
  4529. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  4530. <autoresizingMask key="autoresizingMask"/>
  4531. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4532. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4533. <nil key="highlightedColor"/>
  4534. </label>
  4535. </subviews>
  4536. </tableViewCellContentView>
  4537. <accessibility key="accessibilityConfiguration">
  4538. <accessibilityTraits key="traits" button="YES"/>
  4539. </accessibility>
  4540. </tableViewCell>
  4541. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" indentationWidth="10" textLabel="T39-4t-56X" style="IBUITableViewCellStyleDefault" id="Z5z-kF-JVr">
  4542. <rect key="frame" x="0.0" y="423" width="375" height="44"/>
  4543. <autoresizingMask key="autoresizingMask" flexibleMaxY="YES"/>
  4544. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="Z5z-kF-JVr" id="xIa-OY-tVy">
  4545. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4546. <autoresizingMask key="autoresizingMask"/>
  4547. <subviews>
  4548. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Effacer le journal" textAlignment="center" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="T39-4t-56X">
  4549. <rect key="frame" x="16" y="0.0" width="344" height="44"/>
  4550. <autoresizingMask key="autoresizingMask"/>
  4551. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4552. <color key="textColor" red="0.0" green="0.47843137250000001" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4553. <nil key="highlightedColor"/>
  4554. </label>
  4555. </subviews>
  4556. </tableViewCellContentView>
  4557. <accessibility key="accessibilityConfiguration">
  4558. <accessibilityTraits key="traits" button="YES"/>
  4559. </accessibility>
  4560. </tableViewCell>
  4561. </cells>
  4562. </tableViewSection>
  4563. </sections>
  4564. <connections>
  4565. <outlet property="dataSource" destination="7pH-aa-DuY" id="gN9-sH-CGC"/>
  4566. <outlet property="delegate" destination="7pH-aa-DuY" id="zbz-f8-vOO"/>
  4567. </connections>
  4568. </tableView>
  4569. <navigationItem key="navigationItem" title="Avancé" id="coo-M3-hCO"/>
  4570. <connections>
  4571. <outlet property="backgroundProcessingSwitch" destination="EO3-ji-4bE" id="vTU-fo-rCr"/>
  4572. <outlet property="enableIPv6Switch" destination="Kwd-Bj-mMv" id="YGn-xZ-Waz"/>
  4573. <outlet property="logSizeLabel" destination="0Gd-td-Hl4" id="09Z-Ya-Ru7"/>
  4574. <outlet property="pushTokenLabel" destination="WrW-pc-wdK" id="NLX-oi-MsO"/>
  4575. <outlet property="validationLoggingSwitch" destination="W5d-6Q-TNI" id="rdS-sW-sG6"/>
  4576. </connections>
  4577. </tableViewController>
  4578. <placeholder placeholderIdentifier="IBFirstResponder" id="61G-Op-5vx" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4579. </objects>
  4580. <point key="canvasLocation" x="2430" y="4415"/>
  4581. </scene>
  4582. <!--Son Push du groupe-->
  4583. <scene sceneID="dC2-Lc-8eq">
  4584. <objects>
  4585. <tableViewController id="dtN-aU-IlJ" customClass="PushSoundViewController" sceneMemberID="viewController">
  4586. <tableView key="view" opaque="NO" clipsSubviews="YES" clearsContextBeforeDrawing="NO" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="grouped" separatorStyle="default" rowHeight="44" sectionHeaderHeight="10" sectionFooterHeight="10" id="PNs-dp-UqJ">
  4587. <rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
  4588. <autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
  4589. <color key="backgroundColor" red="0.93725490196078431" green="0.93725490196078431" blue="0.95686274509803926" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4590. <prototypes>
  4591. <tableViewCell contentMode="scaleToFill" selectionStyle="blue" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="SoundCell" textLabel="cV8-fI-rLR" style="IBUITableViewCellStyleDefault" id="tqT-5p-fSB">
  4592. <rect key="frame" x="0.0" y="55.5" width="375" height="44"/>
  4593. <autoresizingMask key="autoresizingMask"/>
  4594. <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" tableViewCell="tqT-5p-fSB" id="Uzp-4m-Oqx">
  4595. <rect key="frame" x="0.0" y="0.0" width="375" height="43.5"/>
  4596. <autoresizingMask key="autoresizingMask"/>
  4597. <subviews>
  4598. <label opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="left" text="Nom du son" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" id="cV8-fI-rLR">
  4599. <rect key="frame" x="15" y="0.0" width="345" height="43.5"/>
  4600. <autoresizingMask key="autoresizingMask"/>
  4601. <fontDescription key="fontDescription" type="system" pointSize="17"/>
  4602. <color key="textColor" red="0.0" green="0.0" blue="0.0" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
  4603. <nil key="highlightedColor"/>
  4604. </label>
  4605. </subviews>
  4606. </tableViewCellContentView>
  4607. </tableViewCell>
  4608. </prototypes>
  4609. <connections>
  4610. <outlet property="dataSource" destination="dtN-aU-IlJ" id="88v-S1-2l3"/>
  4611. <outlet property="delegate" destination="dtN-aU-IlJ" id="b8T-eP-dfC"/>
  4612. </connections>
  4613. </tableView>
  4614. <navigationItem key="navigationItem" title="Son Push du groupe" id="HIF-qW-5kr"/>
  4615. </tableViewController>
  4616. <placeholder placeholderIdentifier="IBFirstResponder" id="E4k-QX-Ieo" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4617. </objects>
  4618. <point key="canvasLocation" x="3074" y="2519"/>
  4619. </scene>
  4620. <!--Navigation Controller-->
  4621. <scene sceneID="pMC-N0-lCt">
  4622. <objects>
  4623. <navigationController automaticallyAdjustsScrollViewInsets="NO" id="kOn-02-WX5" sceneMemberID="viewController">
  4624. <toolbarItems/>
  4625. <navigationBar key="navigationBar" contentMode="scaleToFill" id="aqn-Eo-p5r">
  4626. <rect key="frame" x="0.0" y="0.0" width="320" height="44"/>
  4627. <autoresizingMask key="autoresizingMask"/>
  4628. </navigationBar>
  4629. <nil name="viewControllers"/>
  4630. <connections>
  4631. <segue destination="gAo-8A-eYi" kind="relationship" relationship="rootViewController" id="f97-Kd-K1p"/>
  4632. </connections>
  4633. </navigationController>
  4634. <placeholder placeholderIdentifier="IBFirstResponder" id="id9-wn-aP0" userLabel="First Responder" sceneMemberID="firstResponder"/>
  4635. </objects>
  4636. <point key="canvasLocation" x="5231" y="4167"/>
  4637. </scene>
  4638. </scenes>
  4639. <resources>
  4640. <image name="08-chat.png" width="24" height="22"/>
  4641. <image name="123-id-card.png" width="24" height="17"/>
  4642. <image name="20-gear-2.png" width="26" height="28"/>
  4643. <image name="75-phone.png" width="24" height="24"/>
  4644. <image name="759-refresh-2.png" width="28" height="28"/>
  4645. <image name="86-camera.png" width="23" height="18"/>
  4646. <image name="940-pin-toolbar.png" width="10" height="22"/>
  4647. <image name="947-target-reticle-toolbar.png" width="22" height="22"/>
  4648. <image name="MessageStatusSmall_sent.png" width="18" height="16"/>
  4649. <image name="PlusButton.png" width="22" height="22"/>
  4650. <image name="Typing.png" width="22" height="20"/>
  4651. <image name="WallpaperDefault.png" width="100" height="150"/>
  4652. <image name="powered-by-google-on-white.png" width="104" height="16"/>
  4653. <image name="unknown-group-56.png" width="56" height="56"/>
  4654. <image name="unknown-person-48.png" width="48" height="48"/>
  4655. <image name="unknown-person-56.png" width="56" height="56"/>
  4656. <image name="verification-0.png" width="48" height="11"/>
  4657. <image name="verification-1.png" width="48" height="11"/>
  4658. <image name="verification-2.png" width="48" height="11"/>
  4659. <image name="verification-3.png" width="48" height="11"/>
  4660. <image name="verification32-2.png" width="32" height="8"/>
  4661. <image name="verificationbig-2.png" width="163" height="37"/>
  4662. </resources>
  4663. <simulatedMetricsContainer key="defaultSimulatedMetrics">
  4664. <simulatedStatusBarMetrics key="statusBar"/>
  4665. <simulatedOrientationMetrics key="orientation"/>
  4666. <simulatedScreenMetrics key="destination" type="retina4_7.fullscreen"/>
  4667. </simulatedMetricsContainer>
  4668. <inferredMetricsTieBreakers>
  4669. <segue reference="rOK-24-MIK"/>
  4670. </inferredMetricsTieBreakers>
  4671. </document>