project.pbxproj 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 50;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 27029BC72276A23400D53A94 /* YRLoginVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 27029BC62276A23400D53A94 /* YRLoginVC.m */; };
  10. 27029BCC2277063F00D53A94 /* UIColor+HexColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 27029BCB2277063F00D53A94 /* UIColor+HexColor.m */; };
  11. 27029BD0227709CC00D53A94 /* UIButton+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27029BCE227709CC00D53A94 /* UIButton+Layout.m */; };
  12. 27029BD32277E16300D53A94 /* YRButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 27029BD22277E16300D53A94 /* YRButton.m */; };
  13. 270E6C972282B72D008B12B9 /* YRSettingVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 270E6C962282B72D008B12B9 /* YRSettingVC.m */; };
  14. 270E6C9B2282E6D0008B12B9 /* UINavigationController+safe.m in Sources */ = {isa = PBXBuildFile; fileRef = 270E6C9A2282E6D0008B12B9 /* UINavigationController+safe.m */; };
  15. 2710E65522801B7E0002A4B0 /* YRRegisterVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E65422801B7E0002A4B0 /* YRRegisterVC.m */; };
  16. 2710E65822801B930002A4B0 /* YRPwdLevelView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E65722801B930002A4B0 /* YRPwdLevelView.m */; };
  17. 2710E65D22801E330002A4B0 /* LeftViewTF.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E65C22801E330002A4B0 /* LeftViewTF.m */; };
  18. 2710E66022801ED10002A4B0 /* YRShowMessageFromNavi.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E65F22801ED10002A4B0 /* YRShowMessageFromNavi.m */; };
  19. 2710E66522815DCF0002A4B0 /* YRMineCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E66422815DCF0002A4B0 /* YRMineCell.m */; };
  20. 2710E66822815E030002A4B0 /* YRMineModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E66722815E030002A4B0 /* YRMineModel.m */; };
  21. 2710E66A228166990002A4B0 /* mine_route.json in Resources */ = {isa = PBXBuildFile; fileRef = 2710E669228166990002A4B0 /* mine_route.json */; };
  22. 2710E66E2281746E0002A4B0 /* UIPopoverListView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E66D2281746E0002A4B0 /* UIPopoverListView.m */; };
  23. 3FE47A8D89A70D18F98B1E41 /* libPods-UU_EntUITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F4F857DEEC69AEDCFACDFD51 /* libPods-UU_EntUITests.a */; };
  24. 991C1464228275B70080B54A /* YRLoginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 991C1463228275B70080B54A /* YRLoginManager.m */; };
  25. 991C146C2282D8600080B54A /* GTMBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 991C146A2282D85F0080B54A /* GTMBase64.m */; };
  26. 991C146F2282D8900080B54A /* NSString+secri.m in Sources */ = {isa = PBXBuildFile; fileRef = 991C146E2282D88F0080B54A /* NSString+secri.m */; };
  27. 991C14742282D89C0080B54A /* RSA.m in Sources */ = {isa = PBXBuildFile; fileRef = 991C14702282D89C0080B54A /* RSA.m */; };
  28. 991C14752282D89C0080B54A /* priva.txt in Resources */ = {isa = PBXBuildFile; fileRef = 991C14722282D89C0080B54A /* priva.txt */; };
  29. 991C14762282D89C0080B54A /* publi.txt in Resources */ = {isa = PBXBuildFile; fileRef = 991C14732282D89C0080B54A /* publi.txt */; };
  30. 9948171422783494007C7CEA /* msg_route.json in Resources */ = {isa = PBXBuildFile; fileRef = 9948171322783494007C7CEA /* msg_route.json */; };
  31. 9948171722785013007C7CEA /* YRWorkTabCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9948171622785013007C7CEA /* YRWorkTabCell.m */; };
  32. 9948171A22785044007C7CEA /* YRWorkCollCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9948171922785044007C7CEA /* YRWorkCollCell.m */; };
  33. 999F6510227E658E00329012 /* UIView+frame.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F650F227E658E00329012 /* UIView+frame.m */; };
  34. 999F6513227E664C00329012 /* UIImageView+userId.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F6512227E664C00329012 /* UIImageView+userId.m */; };
  35. 999F6516227E688600329012 /* UIView+selector.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F6515227E688600329012 /* UIView+selector.m */; };
  36. 999F651A227E697D00329012 /* UILabel+vertical.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F6519227E697D00329012 /* UILabel+vertical.m */; };
  37. 999F651E227E6A6000329012 /* NSString+regular.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F651D227E6A6000329012 /* NSString+regular.m */; };
  38. 99B4252F22815E2900DAE304 /* YRAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99B4252E22815E2900DAE304 /* YRAlertView.m */; };
  39. 99C16340227FD24E002ED79D /* YRWorkConModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C1633F227FD24E002ED79D /* YRWorkConModel.m */; };
  40. 99C16342227FDE64002ED79D /* work_route.json in Resources */ = {isa = PBXBuildFile; fileRef = 99C16341227FDE64002ED79D /* work_route.json */; };
  41. 99C16345228027C8002ED79D /* YRMsgHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C16344228027C8002ED79D /* YRMsgHeader.m */; };
  42. 99C6FE6122768B5C00C7070A /* UU_EntTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE6022768B5C00C7070A /* UU_EntTests.m */; };
  43. 99C6FE6C22768B5C00C7070A /* UU_EntUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE6B22768B5C00C7070A /* UU_EntUITests.m */; };
  44. 99C6FE8F22768EC000C7070A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE7E22768EC000C7070A /* AppDelegate.m */; };
  45. 99C6FE9022768EC000C7070A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 99C6FE8722768EC000C7070A /* Assets.xcassets */; };
  46. 99C6FE9222768EC000C7070A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE8A22768EC000C7070A /* main.m */; };
  47. 99C6FE96227690BE00C7070A /* YRBaseVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE95227690BE00C7070A /* YRBaseVC.m */; };
  48. 99C6FE99227690F800C7070A /* YRBaseNav.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE98227690F800C7070A /* YRBaseNav.m */; };
  49. 99C6FEBA2276950C00C7070A /* YRMainVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FEB92276950C00C7070A /* YRMainVC.m */; };
  50. 99C6FEC02276957400C7070A /* YRMineVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FEBF2276957400C7070A /* YRMineVC.m */; };
  51. 99C6FEC32276959B00C7070A /* YRWorkVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FEC22276959B00C7070A /* YRWorkVC.m */; };
  52. 99C6FEC82276966600C7070A /* YRWebVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FEC72276966600C7070A /* YRWebVC.m */; };
  53. 99C6FECB227696CA00C7070A /* YRMsgVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FECA227696CA00C7070A /* YRMsgVC.m */; };
  54. 99C6FECE227697DA00C7070A /* YRContactVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FECD227697DA00C7070A /* YRContactVC.m */; };
  55. 99C6FED12276982F00C7070A /* YRTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FED02276982F00C7070A /* YRTabBar.m */; };
  56. 99C6FF172276D13500C7070A /* YRUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FF162276D13500C7070A /* YRUserInfo.m */; };
  57. 99C6FF1B2276DD3900C7070A /* YRTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FF1A2276DD3900C7070A /* YRTableView.m */; };
  58. 99C6FF232276E4C000C7070A /* YRMsgMainCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FF222276E4C000C7070A /* YRMsgMainCell.m */; };
  59. 99C6FF262276FAE000C7070A /* YRMsgMainModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FF242276FAE000C7070A /* YRMsgMainModel.m */; };
  60. 99F4A73D2277D1B8009AA6ED /* YRLoadImgCacheTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F4A73C2277D1B8009AA6ED /* YRLoadImgCacheTool.m */; };
  61. 99F4A7402277D2DF009AA6ED /* YRLoadingVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F4A73F2277D2DF009AA6ED /* YRLoadingVC.m */; };
  62. 99F4A7432277D332009AA6ED /* YRCountDownView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F4A7422277D332009AA6ED /* YRCountDownView.m */; };
  63. 99F4A7462277D503009AA6ED /* YRAdView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F4A7452277D503009AA6ED /* YRAdView.m */; };
  64. 99F4A8082277D844009AA6ED /* loading48.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7C82277D83B009AA6ED /* loading48.png */; };
  65. 99F4A8092277D845009AA6ED /* loading29.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7C92277D83B009AA6ED /* loading29.png */; };
  66. 99F4A80A2277D845009AA6ED /* loading32.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CA2277D83B009AA6ED /* loading32.png */; };
  67. 99F4A80B2277D845009AA6ED /* loading50.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CB2277D83B009AA6ED /* loading50.png */; };
  68. 99F4A80C2277D845009AA6ED /* loading27.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CC2277D83C009AA6ED /* loading27.png */; };
  69. 99F4A80D2277D845009AA6ED /* loading53.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CD2277D83C009AA6ED /* loading53.png */; };
  70. 99F4A80E2277D845009AA6ED /* loading60.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CE2277D83C009AA6ED /* loading60.png */; };
  71. 99F4A80F2277D845009AA6ED /* loading44.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CF2277D83C009AA6ED /* loading44.png */; };
  72. 99F4A8102277D845009AA6ED /* loading24.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D02277D83C009AA6ED /* loading24.png */; };
  73. 99F4A8112277D845009AA6ED /* loading33.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D12277D83C009AA6ED /* loading33.png */; };
  74. 99F4A8122277D845009AA6ED /* loading25.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D22277D83C009AA6ED /* loading25.png */; };
  75. 99F4A8132277D845009AA6ED /* loading42.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D32277D83D009AA6ED /* loading42.png */; };
  76. 99F4A8142277D845009AA6ED /* loading30.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D42277D83D009AA6ED /* loading30.png */; };
  77. 99F4A8152277D845009AA6ED /* loading31.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D52277D83D009AA6ED /* loading31.png */; };
  78. 99F4A8162277D845009AA6ED /* loading63.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D62277D83D009AA6ED /* loading63.png */; };
  79. 99F4A8172277D845009AA6ED /* loading46.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D72277D83D009AA6ED /* loading46.png */; };
  80. 99F4A8182277D845009AA6ED /* loading20.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D82277D83D009AA6ED /* loading20.png */; };
  81. 99F4A8192277D845009AA6ED /* loading1.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D92277D83D009AA6ED /* loading1.png */; };
  82. 99F4A81A2277D845009AA6ED /* loading18.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DA2277D83E009AA6ED /* loading18.png */; };
  83. 99F4A81B2277D845009AA6ED /* loading7.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DB2277D83E009AA6ED /* loading7.png */; };
  84. 99F4A81C2277D845009AA6ED /* loading8.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DC2277D83E009AA6ED /* loading8.png */; };
  85. 99F4A81D2277D845009AA6ED /* loading10.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DD2277D83E009AA6ED /* loading10.png */; };
  86. 99F4A81E2277D845009AA6ED /* loading57.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DE2277D83E009AA6ED /* loading57.png */; };
  87. 99F4A81F2277D845009AA6ED /* loading12.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DF2277D83E009AA6ED /* loading12.png */; };
  88. 99F4A8202277D845009AA6ED /* loading54.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E02277D83E009AA6ED /* loading54.png */; };
  89. 99F4A8212277D845009AA6ED /* loading3.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E12277D83F009AA6ED /* loading3.png */; };
  90. 99F4A8222277D845009AA6ED /* loading55.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E22277D83F009AA6ED /* loading55.png */; };
  91. 99F4A8232277D845009AA6ED /* loading59.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E32277D83F009AA6ED /* loading59.png */; };
  92. 99F4A8242277D845009AA6ED /* loading35.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E42277D83F009AA6ED /* loading35.png */; };
  93. 99F4A8252277D845009AA6ED /* loading14.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E52277D83F009AA6ED /* loading14.png */; };
  94. 99F4A8262277D845009AA6ED /* loading22.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E62277D83F009AA6ED /* loading22.png */; };
  95. 99F4A8272277D845009AA6ED /* loading38.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E72277D83F009AA6ED /* loading38.png */; };
  96. 99F4A8282277D845009AA6ED /* loading34.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E82277D840009AA6ED /* loading34.png */; };
  97. 99F4A8292277D845009AA6ED /* loading13.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E92277D840009AA6ED /* loading13.png */; };
  98. 99F4A82A2277D845009AA6ED /* loading49.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EA2277D840009AA6ED /* loading49.png */; };
  99. 99F4A82B2277D845009AA6ED /* loading19.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EB2277D840009AA6ED /* loading19.png */; };
  100. 99F4A82C2277D845009AA6ED /* loading41.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EC2277D840009AA6ED /* loading41.png */; };
  101. 99F4A82D2277D845009AA6ED /* loading9.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7ED2277D840009AA6ED /* loading9.png */; };
  102. 99F4A82E2277D845009AA6ED /* loading39.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EE2277D840009AA6ED /* loading39.png */; };
  103. 99F4A82F2277D845009AA6ED /* loading28.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EF2277D840009AA6ED /* loading28.png */; };
  104. 99F4A8302277D845009AA6ED /* loading62.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F02277D840009AA6ED /* loading62.png */; };
  105. 99F4A8312277D845009AA6ED /* loading40.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F12277D841009AA6ED /* loading40.png */; };
  106. 99F4A8322277D845009AA6ED /* loading15.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F22277D841009AA6ED /* loading15.png */; };
  107. 99F4A8332277D845009AA6ED /* loading11.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F32277D841009AA6ED /* loading11.png */; };
  108. 99F4A8342277D845009AA6ED /* loading47.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F42277D841009AA6ED /* loading47.png */; };
  109. 99F4A8352277D845009AA6ED /* loading36.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F52277D841009AA6ED /* loading36.png */; };
  110. 99F4A8362277D845009AA6ED /* loading17.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F62277D841009AA6ED /* loading17.png */; };
  111. 99F4A8372277D845009AA6ED /* loading45.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F72277D842009AA6ED /* loading45.png */; };
  112. 99F4A8382277D845009AA6ED /* loading4.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F82277D842009AA6ED /* loading4.png */; };
  113. 99F4A8392277D845009AA6ED /* loading2.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F92277D842009AA6ED /* loading2.png */; };
  114. 99F4A83A2277D845009AA6ED /* loading0.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FA2277D842009AA6ED /* loading0.png */; };
  115. 99F4A83B2277D845009AA6ED /* loading56.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FB2277D842009AA6ED /* loading56.png */; };
  116. 99F4A83C2277D845009AA6ED /* loading21.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FC2277D842009AA6ED /* loading21.png */; };
  117. 99F4A83D2277D845009AA6ED /* loading5.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FD2277D842009AA6ED /* loading5.png */; };
  118. 99F4A83E2277D845009AA6ED /* loading23.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FE2277D843009AA6ED /* loading23.png */; };
  119. 99F4A83F2277D845009AA6ED /* loading52.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FF2277D843009AA6ED /* loading52.png */; };
  120. 99F4A8402277D845009AA6ED /* loading61.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8002277D843009AA6ED /* loading61.png */; };
  121. 99F4A8412277D845009AA6ED /* loading37.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8012277D843009AA6ED /* loading37.png */; };
  122. 99F4A8422277D845009AA6ED /* loading58.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8022277D843009AA6ED /* loading58.png */; };
  123. 99F4A8432277D845009AA6ED /* loading26.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8032277D843009AA6ED /* loading26.png */; };
  124. 99F4A8442277D845009AA6ED /* loading16.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8042277D844009AA6ED /* loading16.png */; };
  125. 99F4A8452277D845009AA6ED /* loading51.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8052277D844009AA6ED /* loading51.png */; };
  126. 99F4A8462277D845009AA6ED /* loading43.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8062277D844009AA6ED /* loading43.png */; };
  127. 99F4A8472277D845009AA6ED /* loading6.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8072277D844009AA6ED /* loading6.png */; };
  128. C2FE1204E87AA4AC2511A808 /* libPods-UU_Ent.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F21F3925C5D7942C9E06A9B7 /* libPods-UU_Ent.a */; };
  129. F135D5FAC9D7DD2641DAF236 /* libPods-UU_EntTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 102F3AF440E73FF2A1EB3208 /* libPods-UU_EntTests.a */; };
  130. /* End PBXBuildFile section */
  131. /* Begin PBXContainerItemProxy section */
  132. 99C6FE5D22768B5C00C7070A /* PBXContainerItemProxy */ = {
  133. isa = PBXContainerItemProxy;
  134. containerPortal = 99C6FE3C22768B5B00C7070A /* Project object */;
  135. proxyType = 1;
  136. remoteGlobalIDString = 99C6FE4322768B5B00C7070A;
  137. remoteInfo = UU_Ent;
  138. };
  139. 99C6FE6822768B5C00C7070A /* PBXContainerItemProxy */ = {
  140. isa = PBXContainerItemProxy;
  141. containerPortal = 99C6FE3C22768B5B00C7070A /* Project object */;
  142. proxyType = 1;
  143. remoteGlobalIDString = 99C6FE4322768B5B00C7070A;
  144. remoteInfo = UU_Ent;
  145. };
  146. /* End PBXContainerItemProxy section */
  147. /* Begin PBXFileReference section */
  148. 102F3AF440E73FF2A1EB3208 /* libPods-UU_EntTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-UU_EntTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  149. 13A4F2D13DACD5857BD40BDE /* Pods-UU_Ent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UU_Ent.release.xcconfig"; path = "Pods/Target Support Files/Pods-UU_Ent/Pods-UU_Ent.release.xcconfig"; sourceTree = "<group>"; };
  150. 27029BC52276A23400D53A94 /* YRLoginVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRLoginVC.h; sourceTree = "<group>"; };
  151. 27029BC62276A23400D53A94 /* YRLoginVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRLoginVC.m; sourceTree = "<group>"; };
  152. 27029BCA2277063F00D53A94 /* UIColor+HexColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+HexColor.h"; sourceTree = "<group>"; };
  153. 27029BCB2277063F00D53A94 /* UIColor+HexColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+HexColor.m"; sourceTree = "<group>"; };
  154. 27029BCE227709CC00D53A94 /* UIButton+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Layout.m"; sourceTree = "<group>"; };
  155. 27029BCF227709CC00D53A94 /* UIButton+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Layout.h"; sourceTree = "<group>"; };
  156. 27029BD12277E16300D53A94 /* YRButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRButton.h; sourceTree = "<group>"; };
  157. 27029BD22277E16300D53A94 /* YRButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRButton.m; sourceTree = "<group>"; };
  158. 270E6C952282B72D008B12B9 /* YRSettingVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRSettingVC.h; sourceTree = "<group>"; };
  159. 270E6C962282B72D008B12B9 /* YRSettingVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRSettingVC.m; sourceTree = "<group>"; };
  160. 270E6C992282E6CF008B12B9 /* UINavigationController+safe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+safe.h"; sourceTree = "<group>"; };
  161. 270E6C9A2282E6D0008B12B9 /* UINavigationController+safe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+safe.m"; sourceTree = "<group>"; };
  162. 2710E65322801B7E0002A4B0 /* YRRegisterVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRRegisterVC.h; sourceTree = "<group>"; };
  163. 2710E65422801B7E0002A4B0 /* YRRegisterVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRRegisterVC.m; sourceTree = "<group>"; };
  164. 2710E65622801B930002A4B0 /* YRPwdLevelView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = YRPwdLevelView.h; path = UU_Ent/Modules/Login/Main/Views/YRPwdLevelView.h; sourceTree = SOURCE_ROOT; };
  165. 2710E65722801B930002A4B0 /* YRPwdLevelView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = YRPwdLevelView.m; path = UU_Ent/Modules/Login/Main/Views/YRPwdLevelView.m; sourceTree = SOURCE_ROOT; };
  166. 2710E65B22801E330002A4B0 /* LeftViewTF.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LeftViewTF.h; sourceTree = "<group>"; };
  167. 2710E65C22801E330002A4B0 /* LeftViewTF.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LeftViewTF.m; sourceTree = "<group>"; };
  168. 2710E65E22801ED10002A4B0 /* YRShowMessageFromNavi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRShowMessageFromNavi.h; sourceTree = "<group>"; };
  169. 2710E65F22801ED10002A4B0 /* YRShowMessageFromNavi.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRShowMessageFromNavi.m; sourceTree = "<group>"; };
  170. 2710E66322815DCF0002A4B0 /* YRMineCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMineCell.h; sourceTree = "<group>"; };
  171. 2710E66422815DCF0002A4B0 /* YRMineCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMineCell.m; sourceTree = "<group>"; };
  172. 2710E66622815E030002A4B0 /* YRMineModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMineModel.h; sourceTree = "<group>"; };
  173. 2710E66722815E030002A4B0 /* YRMineModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMineModel.m; sourceTree = "<group>"; };
  174. 2710E669228166990002A4B0 /* mine_route.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = mine_route.json; sourceTree = "<group>"; };
  175. 2710E66C2281746E0002A4B0 /* UIPopoverListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIPopoverListView.h; sourceTree = "<group>"; };
  176. 2710E66D2281746E0002A4B0 /* UIPopoverListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIPopoverListView.m; sourceTree = "<group>"; };
  177. 49A8B37D50A80EFFD84620EC /* Pods-UU_EntTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UU_EntTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-UU_EntTests/Pods-UU_EntTests.release.xcconfig"; sourceTree = "<group>"; };
  178. 49D3F089EECE8E3EDF7D2E1C /* Pods-UU_EntUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UU_EntUITests.release.xcconfig"; path = "Pods/Target Support Files/Pods-UU_EntUITests/Pods-UU_EntUITests.release.xcconfig"; sourceTree = "<group>"; };
  179. 71B4DF45C8EC3368ACFC4193 /* Pods-UU_Ent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UU_Ent.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UU_Ent/Pods-UU_Ent.debug.xcconfig"; sourceTree = "<group>"; };
  180. 991C1462228275B70080B54A /* YRLoginManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRLoginManager.h; sourceTree = "<group>"; };
  181. 991C1463228275B70080B54A /* YRLoginManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRLoginManager.m; sourceTree = "<group>"; };
  182. 991C14692282D85F0080B54A /* GTMBase64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMBase64.h; sourceTree = "<group>"; };
  183. 991C146A2282D85F0080B54A /* GTMBase64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMBase64.m; sourceTree = "<group>"; };
  184. 991C146B2282D85F0080B54A /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
  185. 991C146D2282D88F0080B54A /* NSString+secri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+secri.h"; sourceTree = "<group>"; };
  186. 991C146E2282D88F0080B54A /* NSString+secri.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+secri.m"; sourceTree = "<group>"; };
  187. 991C14702282D89C0080B54A /* RSA.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSA.m; sourceTree = "<group>"; };
  188. 991C14712282D89C0080B54A /* RSA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSA.h; sourceTree = "<group>"; };
  189. 991C14722282D89C0080B54A /* priva.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = priva.txt; sourceTree = "<group>"; };
  190. 991C14732282D89C0080B54A /* publi.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = publi.txt; sourceTree = "<group>"; };
  191. 994817112278281F007C7CEA /* macro.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = macro.h; sourceTree = "<group>"; };
  192. 994817122278290A007C7CEA /* import.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = import.h; sourceTree = "<group>"; };
  193. 9948171322783494007C7CEA /* msg_route.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = msg_route.json; sourceTree = "<group>"; };
  194. 9948171522785013007C7CEA /* YRWorkTabCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWorkTabCell.h; sourceTree = "<group>"; };
  195. 9948171622785013007C7CEA /* YRWorkTabCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWorkTabCell.m; sourceTree = "<group>"; };
  196. 9948171822785044007C7CEA /* YRWorkCollCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWorkCollCell.h; sourceTree = "<group>"; };
  197. 9948171922785044007C7CEA /* YRWorkCollCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWorkCollCell.m; sourceTree = "<group>"; };
  198. 999F650E227E658E00329012 /* UIView+frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+frame.h"; sourceTree = "<group>"; };
  199. 999F650F227E658E00329012 /* UIView+frame.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+frame.m"; sourceTree = "<group>"; };
  200. 999F6511227E664C00329012 /* UIImageView+userId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIImageView+userId.h"; sourceTree = "<group>"; };
  201. 999F6512227E664C00329012 /* UIImageView+userId.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+userId.m"; sourceTree = "<group>"; };
  202. 999F6514227E688600329012 /* UIView+selector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+selector.h"; sourceTree = "<group>"; };
  203. 999F6515227E688600329012 /* UIView+selector.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+selector.m"; sourceTree = "<group>"; };
  204. 999F6518227E697D00329012 /* UILabel+vertical.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UILabel+vertical.h"; sourceTree = "<group>"; };
  205. 999F6519227E697D00329012 /* UILabel+vertical.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UILabel+vertical.m"; sourceTree = "<group>"; };
  206. 999F651C227E6A6000329012 /* NSString+regular.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+regular.h"; sourceTree = "<group>"; };
  207. 999F651D227E6A6000329012 /* NSString+regular.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSString+regular.m"; sourceTree = "<group>"; };
  208. 99B4252D22815E2900DAE304 /* YRAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRAlertView.h; sourceTree = "<group>"; };
  209. 99B4252E22815E2900DAE304 /* YRAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRAlertView.m; sourceTree = "<group>"; };
  210. 99C1633E227FD24E002ED79D /* YRWorkConModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWorkConModel.h; sourceTree = "<group>"; };
  211. 99C1633F227FD24E002ED79D /* YRWorkConModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWorkConModel.m; sourceTree = "<group>"; };
  212. 99C16341227FDE64002ED79D /* work_route.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = work_route.json; sourceTree = "<group>"; };
  213. 99C16343228027C8002ED79D /* YRMsgHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMsgHeader.h; sourceTree = "<group>"; };
  214. 99C16344228027C8002ED79D /* YRMsgHeader.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMsgHeader.m; sourceTree = "<group>"; };
  215. 99C6FE4422768B5B00C7070A /* UU_Ent.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UU_Ent.app; sourceTree = BUILT_PRODUCTS_DIR; };
  216. 99C6FE5C22768B5C00C7070A /* UU_EntTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UU_EntTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  217. 99C6FE6022768B5C00C7070A /* UU_EntTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UU_EntTests.m; sourceTree = "<group>"; };
  218. 99C6FE6222768B5C00C7070A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  219. 99C6FE6722768B5C00C7070A /* UU_EntUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UU_EntUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  220. 99C6FE6B22768B5C00C7070A /* UU_EntUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UU_EntUITests.m; sourceTree = "<group>"; };
  221. 99C6FE6D22768B5C00C7070A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  222. 99C6FE7D22768EC000C7070A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  223. 99C6FE7E22768EC000C7070A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  224. 99C6FE8722768EC000C7070A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  225. 99C6FE8A22768EC000C7070A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  226. 99C6FE8B22768EC000C7070A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  227. 99C6FE94227690BE00C7070A /* YRBaseVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRBaseVC.h; sourceTree = "<group>"; };
  228. 99C6FE95227690BE00C7070A /* YRBaseVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRBaseVC.m; sourceTree = "<group>"; };
  229. 99C6FE97227690F800C7070A /* YRBaseNav.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRBaseNav.h; sourceTree = "<group>"; };
  230. 99C6FE98227690F800C7070A /* YRBaseNav.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRBaseNav.m; sourceTree = "<group>"; };
  231. 99C6FEB82276950C00C7070A /* YRMainVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMainVC.h; sourceTree = "<group>"; };
  232. 99C6FEB92276950C00C7070A /* YRMainVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMainVC.m; sourceTree = "<group>"; };
  233. 99C6FEBE2276957400C7070A /* YRMineVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMineVC.h; sourceTree = "<group>"; };
  234. 99C6FEBF2276957400C7070A /* YRMineVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMineVC.m; sourceTree = "<group>"; };
  235. 99C6FEC12276959B00C7070A /* YRWorkVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWorkVC.h; sourceTree = "<group>"; };
  236. 99C6FEC22276959B00C7070A /* YRWorkVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWorkVC.m; sourceTree = "<group>"; };
  237. 99C6FEC62276966600C7070A /* YRWebVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWebVC.h; sourceTree = "<group>"; };
  238. 99C6FEC72276966600C7070A /* YRWebVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWebVC.m; sourceTree = "<group>"; };
  239. 99C6FEC9227696CA00C7070A /* YRMsgVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMsgVC.h; sourceTree = "<group>"; };
  240. 99C6FECA227696CA00C7070A /* YRMsgVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMsgVC.m; sourceTree = "<group>"; };
  241. 99C6FECC227697DA00C7070A /* YRContactVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRContactVC.h; sourceTree = "<group>"; };
  242. 99C6FECD227697DA00C7070A /* YRContactVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRContactVC.m; sourceTree = "<group>"; };
  243. 99C6FECF2276982F00C7070A /* YRTabBar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRTabBar.h; sourceTree = "<group>"; };
  244. 99C6FED02276982F00C7070A /* YRTabBar.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRTabBar.m; sourceTree = "<group>"; };
  245. 99C6FF122276A58900C7070A /* UU_Ent.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UU_Ent.pch; sourceTree = "<group>"; };
  246. 99C6FF132276C90E00C7070A /* libMasonry.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libMasonry.a; sourceTree = BUILT_PRODUCTS_DIR; };
  247. 99C6FF152276D13500C7070A /* YRUserInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRUserInfo.h; sourceTree = "<group>"; };
  248. 99C6FF162276D13500C7070A /* YRUserInfo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRUserInfo.m; sourceTree = "<group>"; };
  249. 99C6FF192276DD3900C7070A /* YRTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRTableView.h; sourceTree = "<group>"; };
  250. 99C6FF1A2276DD3900C7070A /* YRTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRTableView.m; sourceTree = "<group>"; };
  251. 99C6FF1D2276DF2700C7070A /* common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = "<group>"; };
  252. 99C6FF212276E4C000C7070A /* YRMsgMainCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMsgMainCell.h; sourceTree = "<group>"; };
  253. 99C6FF222276E4C000C7070A /* YRMsgMainCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMsgMainCell.m; sourceTree = "<group>"; };
  254. 99C6FF242276FAE000C7070A /* YRMsgMainModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YRMsgMainModel.m; sourceTree = "<group>"; };
  255. 99C6FF252276FAE000C7070A /* YRMsgMainModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YRMsgMainModel.h; sourceTree = "<group>"; };
  256. 99F4A73B2277D1B8009AA6ED /* YRLoadImgCacheTool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRLoadImgCacheTool.h; sourceTree = "<group>"; };
  257. 99F4A73C2277D1B8009AA6ED /* YRLoadImgCacheTool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRLoadImgCacheTool.m; sourceTree = "<group>"; };
  258. 99F4A73E2277D2DF009AA6ED /* YRLoadingVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRLoadingVC.h; sourceTree = "<group>"; };
  259. 99F4A73F2277D2DF009AA6ED /* YRLoadingVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRLoadingVC.m; sourceTree = "<group>"; };
  260. 99F4A7412277D332009AA6ED /* YRCountDownView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRCountDownView.h; sourceTree = "<group>"; };
  261. 99F4A7422277D332009AA6ED /* YRCountDownView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRCountDownView.m; sourceTree = "<group>"; };
  262. 99F4A7442277D503009AA6ED /* YRAdView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRAdView.h; sourceTree = "<group>"; };
  263. 99F4A7452277D503009AA6ED /* YRAdView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRAdView.m; sourceTree = "<group>"; };
  264. 99F4A7C82277D83B009AA6ED /* loading48.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading48.png; sourceTree = "<group>"; };
  265. 99F4A7C92277D83B009AA6ED /* loading29.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading29.png; sourceTree = "<group>"; };
  266. 99F4A7CA2277D83B009AA6ED /* loading32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading32.png; sourceTree = "<group>"; };
  267. 99F4A7CB2277D83B009AA6ED /* loading50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading50.png; sourceTree = "<group>"; };
  268. 99F4A7CC2277D83C009AA6ED /* loading27.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading27.png; sourceTree = "<group>"; };
  269. 99F4A7CD2277D83C009AA6ED /* loading53.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading53.png; sourceTree = "<group>"; };
  270. 99F4A7CE2277D83C009AA6ED /* loading60.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading60.png; sourceTree = "<group>"; };
  271. 99F4A7CF2277D83C009AA6ED /* loading44.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading44.png; sourceTree = "<group>"; };
  272. 99F4A7D02277D83C009AA6ED /* loading24.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading24.png; sourceTree = "<group>"; };
  273. 99F4A7D12277D83C009AA6ED /* loading33.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading33.png; sourceTree = "<group>"; };
  274. 99F4A7D22277D83C009AA6ED /* loading25.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading25.png; sourceTree = "<group>"; };
  275. 99F4A7D32277D83D009AA6ED /* loading42.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading42.png; sourceTree = "<group>"; };
  276. 99F4A7D42277D83D009AA6ED /* loading30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading30.png; sourceTree = "<group>"; };
  277. 99F4A7D52277D83D009AA6ED /* loading31.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading31.png; sourceTree = "<group>"; };
  278. 99F4A7D62277D83D009AA6ED /* loading63.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading63.png; sourceTree = "<group>"; };
  279. 99F4A7D72277D83D009AA6ED /* loading46.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading46.png; sourceTree = "<group>"; };
  280. 99F4A7D82277D83D009AA6ED /* loading20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading20.png; sourceTree = "<group>"; };
  281. 99F4A7D92277D83D009AA6ED /* loading1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading1.png; sourceTree = "<group>"; };
  282. 99F4A7DA2277D83E009AA6ED /* loading18.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading18.png; sourceTree = "<group>"; };
  283. 99F4A7DB2277D83E009AA6ED /* loading7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading7.png; sourceTree = "<group>"; };
  284. 99F4A7DC2277D83E009AA6ED /* loading8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading8.png; sourceTree = "<group>"; };
  285. 99F4A7DD2277D83E009AA6ED /* loading10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading10.png; sourceTree = "<group>"; };
  286. 99F4A7DE2277D83E009AA6ED /* loading57.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading57.png; sourceTree = "<group>"; };
  287. 99F4A7DF2277D83E009AA6ED /* loading12.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading12.png; sourceTree = "<group>"; };
  288. 99F4A7E02277D83E009AA6ED /* loading54.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading54.png; sourceTree = "<group>"; };
  289. 99F4A7E12277D83F009AA6ED /* loading3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading3.png; sourceTree = "<group>"; };
  290. 99F4A7E22277D83F009AA6ED /* loading55.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading55.png; sourceTree = "<group>"; };
  291. 99F4A7E32277D83F009AA6ED /* loading59.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading59.png; sourceTree = "<group>"; };
  292. 99F4A7E42277D83F009AA6ED /* loading35.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading35.png; sourceTree = "<group>"; };
  293. 99F4A7E52277D83F009AA6ED /* loading14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading14.png; sourceTree = "<group>"; };
  294. 99F4A7E62277D83F009AA6ED /* loading22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading22.png; sourceTree = "<group>"; };
  295. 99F4A7E72277D83F009AA6ED /* loading38.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading38.png; sourceTree = "<group>"; };
  296. 99F4A7E82277D840009AA6ED /* loading34.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading34.png; sourceTree = "<group>"; };
  297. 99F4A7E92277D840009AA6ED /* loading13.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading13.png; sourceTree = "<group>"; };
  298. 99F4A7EA2277D840009AA6ED /* loading49.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading49.png; sourceTree = "<group>"; };
  299. 99F4A7EB2277D840009AA6ED /* loading19.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading19.png; sourceTree = "<group>"; };
  300. 99F4A7EC2277D840009AA6ED /* loading41.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading41.png; sourceTree = "<group>"; };
  301. 99F4A7ED2277D840009AA6ED /* loading9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading9.png; sourceTree = "<group>"; };
  302. 99F4A7EE2277D840009AA6ED /* loading39.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading39.png; sourceTree = "<group>"; };
  303. 99F4A7EF2277D840009AA6ED /* loading28.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading28.png; sourceTree = "<group>"; };
  304. 99F4A7F02277D840009AA6ED /* loading62.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading62.png; sourceTree = "<group>"; };
  305. 99F4A7F12277D841009AA6ED /* loading40.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading40.png; sourceTree = "<group>"; };
  306. 99F4A7F22277D841009AA6ED /* loading15.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading15.png; sourceTree = "<group>"; };
  307. 99F4A7F32277D841009AA6ED /* loading11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading11.png; sourceTree = "<group>"; };
  308. 99F4A7F42277D841009AA6ED /* loading47.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading47.png; sourceTree = "<group>"; };
  309. 99F4A7F52277D841009AA6ED /* loading36.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading36.png; sourceTree = "<group>"; };
  310. 99F4A7F62277D841009AA6ED /* loading17.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading17.png; sourceTree = "<group>"; };
  311. 99F4A7F72277D842009AA6ED /* loading45.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading45.png; sourceTree = "<group>"; };
  312. 99F4A7F82277D842009AA6ED /* loading4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading4.png; sourceTree = "<group>"; };
  313. 99F4A7F92277D842009AA6ED /* loading2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading2.png; sourceTree = "<group>"; };
  314. 99F4A7FA2277D842009AA6ED /* loading0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading0.png; sourceTree = "<group>"; };
  315. 99F4A7FB2277D842009AA6ED /* loading56.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading56.png; sourceTree = "<group>"; };
  316. 99F4A7FC2277D842009AA6ED /* loading21.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading21.png; sourceTree = "<group>"; };
  317. 99F4A7FD2277D842009AA6ED /* loading5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading5.png; sourceTree = "<group>"; };
  318. 99F4A7FE2277D843009AA6ED /* loading23.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading23.png; sourceTree = "<group>"; };
  319. 99F4A7FF2277D843009AA6ED /* loading52.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading52.png; sourceTree = "<group>"; };
  320. 99F4A8002277D843009AA6ED /* loading61.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading61.png; sourceTree = "<group>"; };
  321. 99F4A8012277D843009AA6ED /* loading37.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading37.png; sourceTree = "<group>"; };
  322. 99F4A8022277D843009AA6ED /* loading58.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading58.png; sourceTree = "<group>"; };
  323. 99F4A8032277D843009AA6ED /* loading26.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading26.png; sourceTree = "<group>"; };
  324. 99F4A8042277D844009AA6ED /* loading16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading16.png; sourceTree = "<group>"; };
  325. 99F4A8052277D844009AA6ED /* loading51.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading51.png; sourceTree = "<group>"; };
  326. 99F4A8062277D844009AA6ED /* loading43.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading43.png; sourceTree = "<group>"; };
  327. 99F4A8072277D844009AA6ED /* loading6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading6.png; sourceTree = "<group>"; };
  328. B5220A6F4D02F3A377D1E1D6 /* Pods-UU_EntUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UU_EntUITests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UU_EntUITests/Pods-UU_EntUITests.debug.xcconfig"; sourceTree = "<group>"; };
  329. DA26F5F8909B0156F0F3EC26 /* Pods-UU_EntTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-UU_EntTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-UU_EntTests/Pods-UU_EntTests.debug.xcconfig"; sourceTree = "<group>"; };
  330. F21F3925C5D7942C9E06A9B7 /* libPods-UU_Ent.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-UU_Ent.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  331. F4F857DEEC69AEDCFACDFD51 /* libPods-UU_EntUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-UU_EntUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  332. /* End PBXFileReference section */
  333. /* Begin PBXFrameworksBuildPhase section */
  334. 99C6FE4122768B5B00C7070A /* Frameworks */ = {
  335. isa = PBXFrameworksBuildPhase;
  336. buildActionMask = 2147483647;
  337. files = (
  338. C2FE1204E87AA4AC2511A808 /* libPods-UU_Ent.a in Frameworks */,
  339. );
  340. runOnlyForDeploymentPostprocessing = 0;
  341. };
  342. 99C6FE5922768B5C00C7070A /* Frameworks */ = {
  343. isa = PBXFrameworksBuildPhase;
  344. buildActionMask = 2147483647;
  345. files = (
  346. F135D5FAC9D7DD2641DAF236 /* libPods-UU_EntTests.a in Frameworks */,
  347. );
  348. runOnlyForDeploymentPostprocessing = 0;
  349. };
  350. 99C6FE6422768B5C00C7070A /* Frameworks */ = {
  351. isa = PBXFrameworksBuildPhase;
  352. buildActionMask = 2147483647;
  353. files = (
  354. 3FE47A8D89A70D18F98B1E41 /* libPods-UU_EntUITests.a in Frameworks */,
  355. );
  356. runOnlyForDeploymentPostprocessing = 0;
  357. };
  358. /* End PBXFrameworksBuildPhase section */
  359. /* Begin PBXGroup section */
  360. 27029BC9227705DB00D53A94 /* UIColor */ = {
  361. isa = PBXGroup;
  362. children = (
  363. 27029BCA2277063F00D53A94 /* UIColor+HexColor.h */,
  364. 27029BCB2277063F00D53A94 /* UIColor+HexColor.m */,
  365. );
  366. path = UIColor;
  367. sourceTree = "<group>";
  368. };
  369. 27029BCD227709A700D53A94 /* UIButton */ = {
  370. isa = PBXGroup;
  371. children = (
  372. 27029BCF227709CC00D53A94 /* UIButton+Layout.h */,
  373. 27029BCE227709CC00D53A94 /* UIButton+Layout.m */,
  374. 27029BD12277E16300D53A94 /* YRButton.h */,
  375. 27029BD22277E16300D53A94 /* YRButton.m */,
  376. );
  377. path = UIButton;
  378. sourceTree = "<group>";
  379. };
  380. 270E6C902282B6A5008B12B9 /* Child */ = {
  381. isa = PBXGroup;
  382. children = (
  383. 270E6C982282D39E008B12B9 /* Setting */,
  384. );
  385. path = Child;
  386. sourceTree = "<group>";
  387. };
  388. 270E6C912282B6F5008B12B9 /* Controllers */ = {
  389. isa = PBXGroup;
  390. children = (
  391. 270E6C952282B72D008B12B9 /* YRSettingVC.h */,
  392. 270E6C962282B72D008B12B9 /* YRSettingVC.m */,
  393. );
  394. path = Controllers;
  395. sourceTree = "<group>";
  396. };
  397. 270E6C922282B6FE008B12B9 /* Models */ = {
  398. isa = PBXGroup;
  399. children = (
  400. );
  401. path = Models;
  402. sourceTree = "<group>";
  403. };
  404. 270E6C932282B705008B12B9 /* Others */ = {
  405. isa = PBXGroup;
  406. children = (
  407. );
  408. path = Others;
  409. sourceTree = "<group>";
  410. };
  411. 270E6C942282B70C008B12B9 /* Views */ = {
  412. isa = PBXGroup;
  413. children = (
  414. );
  415. path = Views;
  416. sourceTree = "<group>";
  417. };
  418. 270E6C982282D39E008B12B9 /* Setting */ = {
  419. isa = PBXGroup;
  420. children = (
  421. 270E6C912282B6F5008B12B9 /* Controllers */,
  422. 270E6C922282B6FE008B12B9 /* Models */,
  423. 270E6C942282B70C008B12B9 /* Views */,
  424. 270E6C932282B705008B12B9 /* Others */,
  425. );
  426. path = Setting;
  427. sourceTree = "<group>";
  428. };
  429. 2710E65922801D760002A4B0 /* UITextField */ = {
  430. isa = PBXGroup;
  431. children = (
  432. 2710E65B22801E330002A4B0 /* LeftViewTF.h */,
  433. 2710E65C22801E330002A4B0 /* LeftViewTF.m */,
  434. );
  435. path = UITextField;
  436. sourceTree = "<group>";
  437. };
  438. 2710E65A22801D870002A4B0 /* UINavigation */ = {
  439. isa = PBXGroup;
  440. children = (
  441. 270E6C992282E6CF008B12B9 /* UINavigationController+safe.h */,
  442. 270E6C9A2282E6D0008B12B9 /* UINavigationController+safe.m */,
  443. 2710E65E22801ED10002A4B0 /* YRShowMessageFromNavi.h */,
  444. 2710E65F22801ED10002A4B0 /* YRShowMessageFromNavi.m */,
  445. );
  446. path = UINavigation;
  447. sourceTree = "<group>";
  448. };
  449. 2710E66122815DAD0002A4B0 /* Models */ = {
  450. isa = PBXGroup;
  451. children = (
  452. 2710E66622815E030002A4B0 /* YRMineModel.h */,
  453. 2710E66722815E030002A4B0 /* YRMineModel.m */,
  454. );
  455. path = Models;
  456. sourceTree = "<group>";
  457. };
  458. 2710E66222815DB90002A4B0 /* Views */ = {
  459. isa = PBXGroup;
  460. children = (
  461. 2710E66322815DCF0002A4B0 /* YRMineCell.h */,
  462. 2710E66422815DCF0002A4B0 /* YRMineCell.m */,
  463. );
  464. path = Views;
  465. sourceTree = "<group>";
  466. };
  467. 2710E66B2281744C0002A4B0 /* UIPopoverListView */ = {
  468. isa = PBXGroup;
  469. children = (
  470. 2710E66C2281746E0002A4B0 /* UIPopoverListView.h */,
  471. 2710E66D2281746E0002A4B0 /* UIPopoverListView.m */,
  472. );
  473. path = UIPopoverListView;
  474. sourceTree = "<group>";
  475. };
  476. 2710E66F228175140002A4B0 /* Views */ = {
  477. isa = PBXGroup;
  478. children = (
  479. 2710E65622801B930002A4B0 /* YRPwdLevelView.h */,
  480. 2710E65722801B930002A4B0 /* YRPwdLevelView.m */,
  481. );
  482. path = Views;
  483. sourceTree = "<group>";
  484. };
  485. 2710E670228175280002A4B0 /* Models */ = {
  486. isa = PBXGroup;
  487. children = (
  488. );
  489. path = Models;
  490. sourceTree = "<group>";
  491. };
  492. 2710E671228175390002A4B0 /* Others */ = {
  493. isa = PBXGroup;
  494. children = (
  495. 991C1462228275B70080B54A /* YRLoginManager.h */,
  496. 991C1463228275B70080B54A /* YRLoginManager.m */,
  497. );
  498. path = Others;
  499. sourceTree = "<group>";
  500. };
  501. 991C14652282D8100080B54A /* encode */ = {
  502. isa = PBXGroup;
  503. children = (
  504. 991C14662282D8100080B54A /* GTMBase64 */,
  505. 991C14672282D8100080B54A /* RSA */,
  506. 991C14682282D8100080B54A /* NSString+secri */,
  507. );
  508. path = encode;
  509. sourceTree = "<group>";
  510. };
  511. 991C14662282D8100080B54A /* GTMBase64 */ = {
  512. isa = PBXGroup;
  513. children = (
  514. 991C14692282D85F0080B54A /* GTMBase64.h */,
  515. 991C146A2282D85F0080B54A /* GTMBase64.m */,
  516. 991C146B2282D85F0080B54A /* GTMDefines.h */,
  517. );
  518. path = GTMBase64;
  519. sourceTree = "<group>";
  520. };
  521. 991C14672282D8100080B54A /* RSA */ = {
  522. isa = PBXGroup;
  523. children = (
  524. 991C14722282D89C0080B54A /* priva.txt */,
  525. 991C14732282D89C0080B54A /* publi.txt */,
  526. 991C14712282D89C0080B54A /* RSA.h */,
  527. 991C14702282D89C0080B54A /* RSA.m */,
  528. );
  529. path = RSA;
  530. sourceTree = "<group>";
  531. };
  532. 991C14682282D8100080B54A /* NSString+secri */ = {
  533. isa = PBXGroup;
  534. children = (
  535. 991C146D2282D88F0080B54A /* NSString+secri.h */,
  536. 991C146E2282D88F0080B54A /* NSString+secri.m */,
  537. );
  538. path = "NSString+secri";
  539. sourceTree = "<group>";
  540. };
  541. 999F650C227E656B00329012 /* UIView */ = {
  542. isa = PBXGroup;
  543. children = (
  544. 999F650E227E658E00329012 /* UIView+frame.h */,
  545. 999F650F227E658E00329012 /* UIView+frame.m */,
  546. 999F6514227E688600329012 /* UIView+selector.h */,
  547. 999F6515227E688600329012 /* UIView+selector.m */,
  548. );
  549. path = UIView;
  550. sourceTree = "<group>";
  551. };
  552. 999F650D227E656B00329012 /* UIImageView */ = {
  553. isa = PBXGroup;
  554. children = (
  555. 999F6511227E664C00329012 /* UIImageView+userId.h */,
  556. 999F6512227E664C00329012 /* UIImageView+userId.m */,
  557. );
  558. path = UIImageView;
  559. sourceTree = "<group>";
  560. };
  561. 999F6517227E696900329012 /* UILabel */ = {
  562. isa = PBXGroup;
  563. children = (
  564. 999F6518227E697D00329012 /* UILabel+vertical.h */,
  565. 999F6519227E697D00329012 /* UILabel+vertical.m */,
  566. );
  567. path = UILabel;
  568. sourceTree = "<group>";
  569. };
  570. 999F651B227E6A3E00329012 /* NSString */ = {
  571. isa = PBXGroup;
  572. children = (
  573. 999F651C227E6A6000329012 /* NSString+regular.h */,
  574. 999F651D227E6A6000329012 /* NSString+regular.m */,
  575. );
  576. path = NSString;
  577. sourceTree = "<group>";
  578. };
  579. 99B4252C22815E0700DAE304 /* AlertView */ = {
  580. isa = PBXGroup;
  581. children = (
  582. 99B4252D22815E2900DAE304 /* YRAlertView.h */,
  583. 99B4252E22815E2900DAE304 /* YRAlertView.m */,
  584. );
  585. path = AlertView;
  586. sourceTree = "<group>";
  587. };
  588. 99C6FE3B22768B5B00C7070A = {
  589. isa = PBXGroup;
  590. children = (
  591. 99C6FE4622768B5B00C7070A /* UU_Ent */,
  592. 99C6FE5F22768B5C00C7070A /* UU_EntTests */,
  593. 99C6FE6A22768B5C00C7070A /* UU_EntUITests */,
  594. 99C6FE4522768B5B00C7070A /* Products */,
  595. DEB95212CB06CC2B2E94075E /* Pods */,
  596. C72D523677B19DCBAEBD26E1 /* Frameworks */,
  597. );
  598. sourceTree = "<group>";
  599. };
  600. 99C6FE4522768B5B00C7070A /* Products */ = {
  601. isa = PBXGroup;
  602. children = (
  603. 99C6FE4422768B5B00C7070A /* UU_Ent.app */,
  604. 99C6FE5C22768B5C00C7070A /* UU_EntTests.xctest */,
  605. 99C6FE6722768B5C00C7070A /* UU_EntUITests.xctest */,
  606. );
  607. name = Products;
  608. sourceTree = "<group>";
  609. };
  610. 99C6FE4622768B5B00C7070A /* UU_Ent */ = {
  611. isa = PBXGroup;
  612. children = (
  613. 99C6FE7B22768EC000C7070A /* Modules */,
  614. 99C6FE8C22768EC000C7070A /* Resources */,
  615. 99C6FE8622768EC000C7070A /* Supporting Files */,
  616. 99C6FE8E22768EC000C7070A /* ThirdLib */,
  617. 99C6FE8D22768EC000C7070A /* Utils */,
  618. );
  619. path = UU_Ent;
  620. sourceTree = "<group>";
  621. };
  622. 99C6FE5F22768B5C00C7070A /* UU_EntTests */ = {
  623. isa = PBXGroup;
  624. children = (
  625. 99C6FE6022768B5C00C7070A /* UU_EntTests.m */,
  626. 99C6FE6222768B5C00C7070A /* Info.plist */,
  627. );
  628. path = UU_EntTests;
  629. sourceTree = "<group>";
  630. };
  631. 99C6FE6A22768B5C00C7070A /* UU_EntUITests */ = {
  632. isa = PBXGroup;
  633. children = (
  634. 99C6FE6B22768B5C00C7070A /* UU_EntUITests.m */,
  635. 99C6FE6D22768B5C00C7070A /* Info.plist */,
  636. );
  637. path = UU_EntUITests;
  638. sourceTree = "<group>";
  639. };
  640. 99C6FE7B22768EC000C7070A /* Modules */ = {
  641. isa = PBXGroup;
  642. children = (
  643. 99F4A7352277CFDD009AA6ED /* Loading */,
  644. 99C6FE8522768EC000C7070A /* Base */,
  645. 99C6FE7C22768EC000C7070A /* App */,
  646. 99C6FE7F22768EC000C7070A /* Contacts */,
  647. 99C6FE8022768EC000C7070A /* Message */,
  648. 99C6FE8122768EC000C7070A /* Work */,
  649. 99C6FE8222768EC000C7070A /* Mine */,
  650. 99C6FE8322768EC000C7070A /* Main */,
  651. 99C6FE8422768EC000C7070A /* Login */,
  652. 99C6FEC42276962800C7070A /* Web */,
  653. );
  654. path = Modules;
  655. sourceTree = "<group>";
  656. };
  657. 99C6FE7C22768EC000C7070A /* App */ = {
  658. isa = PBXGroup;
  659. children = (
  660. 99C6FE7D22768EC000C7070A /* AppDelegate.h */,
  661. 99C6FE7E22768EC000C7070A /* AppDelegate.m */,
  662. );
  663. path = App;
  664. sourceTree = "<group>";
  665. };
  666. 99C6FE7F22768EC000C7070A /* Contacts */ = {
  667. isa = PBXGroup;
  668. children = (
  669. 99C6FE9C2276934900C7070A /* Main */,
  670. );
  671. path = Contacts;
  672. sourceTree = "<group>";
  673. };
  674. 99C6FE8022768EC000C7070A /* Message */ = {
  675. isa = PBXGroup;
  676. children = (
  677. 99C6FE9D2276935400C7070A /* Main */,
  678. );
  679. path = Message;
  680. sourceTree = "<group>";
  681. };
  682. 99C6FE8122768EC000C7070A /* Work */ = {
  683. isa = PBXGroup;
  684. children = (
  685. 99C6FE9A2276933100C7070A /* Main */,
  686. );
  687. path = Work;
  688. sourceTree = "<group>";
  689. };
  690. 99C6FE8222768EC000C7070A /* Mine */ = {
  691. isa = PBXGroup;
  692. children = (
  693. 99C6FE9B2276933F00C7070A /* Main */,
  694. 270E6C902282B6A5008B12B9 /* Child */,
  695. );
  696. path = Mine;
  697. sourceTree = "<group>";
  698. };
  699. 99C6FE8322768EC000C7070A /* Main */ = {
  700. isa = PBXGroup;
  701. children = (
  702. 99C6FE9E227693EB00C7070A /* Main */,
  703. );
  704. path = Main;
  705. sourceTree = "<group>";
  706. };
  707. 99C6FE8422768EC000C7070A /* Login */ = {
  708. isa = PBXGroup;
  709. children = (
  710. 99C6FEA32276940600C7070A /* Main */,
  711. );
  712. path = Login;
  713. sourceTree = "<group>";
  714. };
  715. 99C6FE8522768EC000C7070A /* Base */ = {
  716. isa = PBXGroup;
  717. children = (
  718. 99C6FE94227690BE00C7070A /* YRBaseVC.h */,
  719. 99C6FE95227690BE00C7070A /* YRBaseVC.m */,
  720. 99C6FE97227690F800C7070A /* YRBaseNav.h */,
  721. 99C6FE98227690F800C7070A /* YRBaseNav.m */,
  722. );
  723. path = Base;
  724. sourceTree = "<group>";
  725. };
  726. 99C6FE8622768EC000C7070A /* Supporting Files */ = {
  727. isa = PBXGroup;
  728. children = (
  729. 99C6FF1C2276DF0D00C7070A /* defines */,
  730. 99C6FE8722768EC000C7070A /* Assets.xcassets */,
  731. 99C6FE8A22768EC000C7070A /* main.m */,
  732. 99C6FE8B22768EC000C7070A /* Info.plist */,
  733. 99C6FF122276A58900C7070A /* UU_Ent.pch */,
  734. );
  735. path = "Supporting Files";
  736. sourceTree = "<group>";
  737. };
  738. 99C6FE8C22768EC000C7070A /* Resources */ = {
  739. isa = PBXGroup;
  740. children = (
  741. 99F4A7472277D5B5009AA6ED /* LoadImg */,
  742. );
  743. path = Resources;
  744. sourceTree = "<group>";
  745. };
  746. 99C6FE8D22768EC000C7070A /* Utils */ = {
  747. isa = PBXGroup;
  748. children = (
  749. 991C14652282D8100080B54A /* encode */,
  750. 2710E66B2281744C0002A4B0 /* UIPopoverListView */,
  751. 99B4252C22815E0700DAE304 /* AlertView */,
  752. 2710E65A22801D870002A4B0 /* UINavigation */,
  753. 2710E65922801D760002A4B0 /* UITextField */,
  754. 999F651B227E6A3E00329012 /* NSString */,
  755. 999F6517227E696900329012 /* UILabel */,
  756. 999F650D227E656B00329012 /* UIImageView */,
  757. 999F650C227E656B00329012 /* UIView */,
  758. 27029BCD227709A700D53A94 /* UIButton */,
  759. 27029BC9227705DB00D53A94 /* UIColor */,
  760. 99C6FF182276DD2400C7070A /* tableView */,
  761. );
  762. path = Utils;
  763. sourceTree = "<group>";
  764. };
  765. 99C6FE8E22768EC000C7070A /* ThirdLib */ = {
  766. isa = PBXGroup;
  767. children = (
  768. );
  769. path = ThirdLib;
  770. sourceTree = "<group>";
  771. };
  772. 99C6FE9A2276933100C7070A /* Main */ = {
  773. isa = PBXGroup;
  774. children = (
  775. 99C6FEAF2276942900C7070A /* Controllers */,
  776. 99C6FEAE2276942900C7070A /* Models */,
  777. 99C6FEAD2276942900C7070A /* Others */,
  778. 99C6FEAC2276942900C7070A /* Views */,
  779. );
  780. path = Main;
  781. sourceTree = "<group>";
  782. };
  783. 99C6FE9B2276933F00C7070A /* Main */ = {
  784. isa = PBXGroup;
  785. children = (
  786. 99C6FEAA2276941A00C7070A /* Controllers */,
  787. 2710E66122815DAD0002A4B0 /* Models */,
  788. 99C6FEA92276941900C7070A /* Others */,
  789. 2710E66222815DB90002A4B0 /* Views */,
  790. );
  791. path = Main;
  792. sourceTree = "<group>";
  793. };
  794. 99C6FE9C2276934900C7070A /* Main */ = {
  795. isa = PBXGroup;
  796. children = (
  797. 99C6FEB42276944800C7070A /* Controllers */,
  798. 99C6FEB62276944800C7070A /* Models */,
  799. 99C6FEB52276944800C7070A /* Others */,
  800. 99C6FEB72276944800C7070A /* Views */,
  801. );
  802. path = Main;
  803. sourceTree = "<group>";
  804. };
  805. 99C6FE9D2276935400C7070A /* Main */ = {
  806. isa = PBXGroup;
  807. children = (
  808. 99C6FEB32276943C00C7070A /* Controllers */,
  809. 99C6FEB02276943B00C7070A /* Models */,
  810. 99C6FEB12276943B00C7070A /* Others */,
  811. 99C6FEB22276943C00C7070A /* Views */,
  812. );
  813. path = Main;
  814. sourceTree = "<group>";
  815. };
  816. 99C6FE9E227693EB00C7070A /* Main */ = {
  817. isa = PBXGroup;
  818. children = (
  819. 99C6FE9F227693EB00C7070A /* Others */,
  820. 99C6FEA0227693EB00C7070A /* Models */,
  821. 99C6FEA1227693EB00C7070A /* Controllers */,
  822. 99C6FEA2227693EB00C7070A /* Views */,
  823. );
  824. path = Main;
  825. sourceTree = "<group>";
  826. };
  827. 99C6FE9F227693EB00C7070A /* Others */ = {
  828. isa = PBXGroup;
  829. children = (
  830. );
  831. path = Others;
  832. sourceTree = "<group>";
  833. };
  834. 99C6FEA0227693EB00C7070A /* Models */ = {
  835. isa = PBXGroup;
  836. children = (
  837. );
  838. path = Models;
  839. sourceTree = "<group>";
  840. };
  841. 99C6FEA1227693EB00C7070A /* Controllers */ = {
  842. isa = PBXGroup;
  843. children = (
  844. 99C6FEB82276950C00C7070A /* YRMainVC.h */,
  845. 99C6FEB92276950C00C7070A /* YRMainVC.m */,
  846. );
  847. path = Controllers;
  848. sourceTree = "<group>";
  849. };
  850. 99C6FEA2227693EB00C7070A /* Views */ = {
  851. isa = PBXGroup;
  852. children = (
  853. 99C6FECF2276982F00C7070A /* YRTabBar.h */,
  854. 99C6FED02276982F00C7070A /* YRTabBar.m */,
  855. );
  856. path = Views;
  857. sourceTree = "<group>";
  858. };
  859. 99C6FEA32276940600C7070A /* Main */ = {
  860. isa = PBXGroup;
  861. children = (
  862. 2710E671228175390002A4B0 /* Others */,
  863. 2710E670228175280002A4B0 /* Models */,
  864. 2710E66F228175140002A4B0 /* Views */,
  865. 99C6FEA62276940600C7070A /* Controllers */,
  866. );
  867. path = Main;
  868. sourceTree = "<group>";
  869. };
  870. 99C6FEA62276940600C7070A /* Controllers */ = {
  871. isa = PBXGroup;
  872. children = (
  873. 27029BC52276A23400D53A94 /* YRLoginVC.h */,
  874. 27029BC62276A23400D53A94 /* YRLoginVC.m */,
  875. 2710E65322801B7E0002A4B0 /* YRRegisterVC.h */,
  876. 2710E65422801B7E0002A4B0 /* YRRegisterVC.m */,
  877. );
  878. path = Controllers;
  879. sourceTree = "<group>";
  880. };
  881. 99C6FEA92276941900C7070A /* Others */ = {
  882. isa = PBXGroup;
  883. children = (
  884. 2710E669228166990002A4B0 /* mine_route.json */,
  885. 99C6FF152276D13500C7070A /* YRUserInfo.h */,
  886. 99C6FF162276D13500C7070A /* YRUserInfo.m */,
  887. );
  888. path = Others;
  889. sourceTree = "<group>";
  890. };
  891. 99C6FEAA2276941A00C7070A /* Controllers */ = {
  892. isa = PBXGroup;
  893. children = (
  894. 99C6FEBE2276957400C7070A /* YRMineVC.h */,
  895. 99C6FEBF2276957400C7070A /* YRMineVC.m */,
  896. );
  897. path = Controllers;
  898. sourceTree = "<group>";
  899. };
  900. 99C6FEAC2276942900C7070A /* Views */ = {
  901. isa = PBXGroup;
  902. children = (
  903. 9948171522785013007C7CEA /* YRWorkTabCell.h */,
  904. 9948171622785013007C7CEA /* YRWorkTabCell.m */,
  905. 9948171822785044007C7CEA /* YRWorkCollCell.h */,
  906. 9948171922785044007C7CEA /* YRWorkCollCell.m */,
  907. );
  908. path = Views;
  909. sourceTree = "<group>";
  910. };
  911. 99C6FEAD2276942900C7070A /* Others */ = {
  912. isa = PBXGroup;
  913. children = (
  914. 99C16341227FDE64002ED79D /* work_route.json */,
  915. );
  916. path = Others;
  917. sourceTree = "<group>";
  918. };
  919. 99C6FEAE2276942900C7070A /* Models */ = {
  920. isa = PBXGroup;
  921. children = (
  922. 99C1633E227FD24E002ED79D /* YRWorkConModel.h */,
  923. 99C1633F227FD24E002ED79D /* YRWorkConModel.m */,
  924. );
  925. path = Models;
  926. sourceTree = "<group>";
  927. };
  928. 99C6FEAF2276942900C7070A /* Controllers */ = {
  929. isa = PBXGroup;
  930. children = (
  931. 99C6FEC12276959B00C7070A /* YRWorkVC.h */,
  932. 99C6FEC22276959B00C7070A /* YRWorkVC.m */,
  933. );
  934. path = Controllers;
  935. sourceTree = "<group>";
  936. };
  937. 99C6FEB02276943B00C7070A /* Models */ = {
  938. isa = PBXGroup;
  939. children = (
  940. 99C6FF252276FAE000C7070A /* YRMsgMainModel.h */,
  941. 99C6FF242276FAE000C7070A /* YRMsgMainModel.m */,
  942. );
  943. path = Models;
  944. sourceTree = "<group>";
  945. };
  946. 99C6FEB12276943B00C7070A /* Others */ = {
  947. isa = PBXGroup;
  948. children = (
  949. 9948171322783494007C7CEA /* msg_route.json */,
  950. );
  951. path = Others;
  952. sourceTree = "<group>";
  953. };
  954. 99C6FEB22276943C00C7070A /* Views */ = {
  955. isa = PBXGroup;
  956. children = (
  957. 99C6FF212276E4C000C7070A /* YRMsgMainCell.h */,
  958. 99C6FF222276E4C000C7070A /* YRMsgMainCell.m */,
  959. 99C16343228027C8002ED79D /* YRMsgHeader.h */,
  960. 99C16344228027C8002ED79D /* YRMsgHeader.m */,
  961. );
  962. path = Views;
  963. sourceTree = "<group>";
  964. };
  965. 99C6FEB32276943C00C7070A /* Controllers */ = {
  966. isa = PBXGroup;
  967. children = (
  968. 99C6FEC9227696CA00C7070A /* YRMsgVC.h */,
  969. 99C6FECA227696CA00C7070A /* YRMsgVC.m */,
  970. );
  971. path = Controllers;
  972. sourceTree = "<group>";
  973. };
  974. 99C6FEB42276944800C7070A /* Controllers */ = {
  975. isa = PBXGroup;
  976. children = (
  977. 99C6FECC227697DA00C7070A /* YRContactVC.h */,
  978. 99C6FECD227697DA00C7070A /* YRContactVC.m */,
  979. );
  980. path = Controllers;
  981. sourceTree = "<group>";
  982. };
  983. 99C6FEB52276944800C7070A /* Others */ = {
  984. isa = PBXGroup;
  985. children = (
  986. );
  987. path = Others;
  988. sourceTree = "<group>";
  989. };
  990. 99C6FEB62276944800C7070A /* Models */ = {
  991. isa = PBXGroup;
  992. children = (
  993. );
  994. path = Models;
  995. sourceTree = "<group>";
  996. };
  997. 99C6FEB72276944800C7070A /* Views */ = {
  998. isa = PBXGroup;
  999. children = (
  1000. );
  1001. path = Views;
  1002. sourceTree = "<group>";
  1003. };
  1004. 99C6FEC42276962800C7070A /* Web */ = {
  1005. isa = PBXGroup;
  1006. children = (
  1007. 99C6FEC52276965200C7070A /* Main */,
  1008. );
  1009. name = Web;
  1010. path = UU_Ent/Modules/Web;
  1011. sourceTree = SOURCE_ROOT;
  1012. };
  1013. 99C6FEC52276965200C7070A /* Main */ = {
  1014. isa = PBXGroup;
  1015. children = (
  1016. 99C6FEC62276966600C7070A /* YRWebVC.h */,
  1017. 99C6FEC72276966600C7070A /* YRWebVC.m */,
  1018. );
  1019. path = Main;
  1020. sourceTree = "<group>";
  1021. };
  1022. 99C6FF182276DD2400C7070A /* tableView */ = {
  1023. isa = PBXGroup;
  1024. children = (
  1025. 99C6FF192276DD3900C7070A /* YRTableView.h */,
  1026. 99C6FF1A2276DD3900C7070A /* YRTableView.m */,
  1027. );
  1028. path = tableView;
  1029. sourceTree = "<group>";
  1030. };
  1031. 99C6FF1C2276DF0D00C7070A /* defines */ = {
  1032. isa = PBXGroup;
  1033. children = (
  1034. 99C6FF1D2276DF2700C7070A /* common.h */,
  1035. 994817112278281F007C7CEA /* macro.h */,
  1036. 994817122278290A007C7CEA /* import.h */,
  1037. );
  1038. path = defines;
  1039. sourceTree = "<group>";
  1040. };
  1041. 99F4A7352277CFDD009AA6ED /* Loading */ = {
  1042. isa = PBXGroup;
  1043. children = (
  1044. 99F4A7362277CFDD009AA6ED /* Main */,
  1045. );
  1046. path = Loading;
  1047. sourceTree = "<group>";
  1048. };
  1049. 99F4A7362277CFDD009AA6ED /* Main */ = {
  1050. isa = PBXGroup;
  1051. children = (
  1052. 99F4A7372277CFDD009AA6ED /* Others */,
  1053. 99F4A7382277CFDD009AA6ED /* Models */,
  1054. 99F4A7392277CFDD009AA6ED /* Controllers */,
  1055. 99F4A73A2277CFDD009AA6ED /* Views */,
  1056. );
  1057. path = Main;
  1058. sourceTree = "<group>";
  1059. };
  1060. 99F4A7372277CFDD009AA6ED /* Others */ = {
  1061. isa = PBXGroup;
  1062. children = (
  1063. 99F4A73B2277D1B8009AA6ED /* YRLoadImgCacheTool.h */,
  1064. 99F4A73C2277D1B8009AA6ED /* YRLoadImgCacheTool.m */,
  1065. );
  1066. path = Others;
  1067. sourceTree = "<group>";
  1068. };
  1069. 99F4A7382277CFDD009AA6ED /* Models */ = {
  1070. isa = PBXGroup;
  1071. children = (
  1072. );
  1073. path = Models;
  1074. sourceTree = "<group>";
  1075. };
  1076. 99F4A7392277CFDD009AA6ED /* Controllers */ = {
  1077. isa = PBXGroup;
  1078. children = (
  1079. 99F4A73E2277D2DF009AA6ED /* YRLoadingVC.h */,
  1080. 99F4A73F2277D2DF009AA6ED /* YRLoadingVC.m */,
  1081. );
  1082. path = Controllers;
  1083. sourceTree = "<group>";
  1084. };
  1085. 99F4A73A2277CFDD009AA6ED /* Views */ = {
  1086. isa = PBXGroup;
  1087. children = (
  1088. 99F4A7412277D332009AA6ED /* YRCountDownView.h */,
  1089. 99F4A7422277D332009AA6ED /* YRCountDownView.m */,
  1090. 99F4A7442277D503009AA6ED /* YRAdView.h */,
  1091. 99F4A7452277D503009AA6ED /* YRAdView.m */,
  1092. );
  1093. path = Views;
  1094. sourceTree = "<group>";
  1095. };
  1096. 99F4A7472277D5B5009AA6ED /* LoadImg */ = {
  1097. isa = PBXGroup;
  1098. children = (
  1099. 99F4A7FA2277D842009AA6ED /* loading0.png */,
  1100. 99F4A7D92277D83D009AA6ED /* loading1.png */,
  1101. 99F4A7F92277D842009AA6ED /* loading2.png */,
  1102. 99F4A7E12277D83F009AA6ED /* loading3.png */,
  1103. 99F4A7F82277D842009AA6ED /* loading4.png */,
  1104. 99F4A7FD2277D842009AA6ED /* loading5.png */,
  1105. 99F4A8072277D844009AA6ED /* loading6.png */,
  1106. 99F4A7DB2277D83E009AA6ED /* loading7.png */,
  1107. 99F4A7DC2277D83E009AA6ED /* loading8.png */,
  1108. 99F4A7ED2277D840009AA6ED /* loading9.png */,
  1109. 99F4A7DD2277D83E009AA6ED /* loading10.png */,
  1110. 99F4A7F32277D841009AA6ED /* loading11.png */,
  1111. 99F4A7DF2277D83E009AA6ED /* loading12.png */,
  1112. 99F4A7E92277D840009AA6ED /* loading13.png */,
  1113. 99F4A7E52277D83F009AA6ED /* loading14.png */,
  1114. 99F4A7F22277D841009AA6ED /* loading15.png */,
  1115. 99F4A8042277D844009AA6ED /* loading16.png */,
  1116. 99F4A7F62277D841009AA6ED /* loading17.png */,
  1117. 99F4A7DA2277D83E009AA6ED /* loading18.png */,
  1118. 99F4A7EB2277D840009AA6ED /* loading19.png */,
  1119. 99F4A7D82277D83D009AA6ED /* loading20.png */,
  1120. 99F4A7FC2277D842009AA6ED /* loading21.png */,
  1121. 99F4A7E62277D83F009AA6ED /* loading22.png */,
  1122. 99F4A7FE2277D843009AA6ED /* loading23.png */,
  1123. 99F4A7D02277D83C009AA6ED /* loading24.png */,
  1124. 99F4A7D22277D83C009AA6ED /* loading25.png */,
  1125. 99F4A8032277D843009AA6ED /* loading26.png */,
  1126. 99F4A7CC2277D83C009AA6ED /* loading27.png */,
  1127. 99F4A7EF2277D840009AA6ED /* loading28.png */,
  1128. 99F4A7C92277D83B009AA6ED /* loading29.png */,
  1129. 99F4A7D42277D83D009AA6ED /* loading30.png */,
  1130. 99F4A7D52277D83D009AA6ED /* loading31.png */,
  1131. 99F4A7CA2277D83B009AA6ED /* loading32.png */,
  1132. 99F4A7D12277D83C009AA6ED /* loading33.png */,
  1133. 99F4A7E82277D840009AA6ED /* loading34.png */,
  1134. 99F4A7E42277D83F009AA6ED /* loading35.png */,
  1135. 99F4A7F52277D841009AA6ED /* loading36.png */,
  1136. 99F4A8012277D843009AA6ED /* loading37.png */,
  1137. 99F4A7E72277D83F009AA6ED /* loading38.png */,
  1138. 99F4A7EE2277D840009AA6ED /* loading39.png */,
  1139. 99F4A7F12277D841009AA6ED /* loading40.png */,
  1140. 99F4A7EC2277D840009AA6ED /* loading41.png */,
  1141. 99F4A7D32277D83D009AA6ED /* loading42.png */,
  1142. 99F4A8062277D844009AA6ED /* loading43.png */,
  1143. 99F4A7CF2277D83C009AA6ED /* loading44.png */,
  1144. 99F4A7F72277D842009AA6ED /* loading45.png */,
  1145. 99F4A7D72277D83D009AA6ED /* loading46.png */,
  1146. 99F4A7F42277D841009AA6ED /* loading47.png */,
  1147. 99F4A7C82277D83B009AA6ED /* loading48.png */,
  1148. 99F4A7EA2277D840009AA6ED /* loading49.png */,
  1149. 99F4A7CB2277D83B009AA6ED /* loading50.png */,
  1150. 99F4A8052277D844009AA6ED /* loading51.png */,
  1151. 99F4A7FF2277D843009AA6ED /* loading52.png */,
  1152. 99F4A7CD2277D83C009AA6ED /* loading53.png */,
  1153. 99F4A7E02277D83E009AA6ED /* loading54.png */,
  1154. 99F4A7E22277D83F009AA6ED /* loading55.png */,
  1155. 99F4A7FB2277D842009AA6ED /* loading56.png */,
  1156. 99F4A7DE2277D83E009AA6ED /* loading57.png */,
  1157. 99F4A8022277D843009AA6ED /* loading58.png */,
  1158. 99F4A7E32277D83F009AA6ED /* loading59.png */,
  1159. 99F4A7CE2277D83C009AA6ED /* loading60.png */,
  1160. 99F4A8002277D843009AA6ED /* loading61.png */,
  1161. 99F4A7F02277D840009AA6ED /* loading62.png */,
  1162. 99F4A7D62277D83D009AA6ED /* loading63.png */,
  1163. );
  1164. path = LoadImg;
  1165. sourceTree = "<group>";
  1166. };
  1167. C72D523677B19DCBAEBD26E1 /* Frameworks */ = {
  1168. isa = PBXGroup;
  1169. children = (
  1170. 99C6FF132276C90E00C7070A /* libMasonry.a */,
  1171. F21F3925C5D7942C9E06A9B7 /* libPods-UU_Ent.a */,
  1172. 102F3AF440E73FF2A1EB3208 /* libPods-UU_EntTests.a */,
  1173. F4F857DEEC69AEDCFACDFD51 /* libPods-UU_EntUITests.a */,
  1174. );
  1175. name = Frameworks;
  1176. sourceTree = "<group>";
  1177. };
  1178. DEB95212CB06CC2B2E94075E /* Pods */ = {
  1179. isa = PBXGroup;
  1180. children = (
  1181. 71B4DF45C8EC3368ACFC4193 /* Pods-UU_Ent.debug.xcconfig */,
  1182. 13A4F2D13DACD5857BD40BDE /* Pods-UU_Ent.release.xcconfig */,
  1183. DA26F5F8909B0156F0F3EC26 /* Pods-UU_EntTests.debug.xcconfig */,
  1184. 49A8B37D50A80EFFD84620EC /* Pods-UU_EntTests.release.xcconfig */,
  1185. B5220A6F4D02F3A377D1E1D6 /* Pods-UU_EntUITests.debug.xcconfig */,
  1186. 49D3F089EECE8E3EDF7D2E1C /* Pods-UU_EntUITests.release.xcconfig */,
  1187. );
  1188. name = Pods;
  1189. sourceTree = "<group>";
  1190. };
  1191. /* End PBXGroup section */
  1192. /* Begin PBXNativeTarget section */
  1193. 99C6FE4322768B5B00C7070A /* UU_Ent */ = {
  1194. isa = PBXNativeTarget;
  1195. buildConfigurationList = 99C6FE7022768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_Ent" */;
  1196. buildPhases = (
  1197. 090EEC0300D50242E42AF186 /* [CP] Check Pods Manifest.lock */,
  1198. 99C6FE4022768B5B00C7070A /* Sources */,
  1199. 99C6FE4122768B5B00C7070A /* Frameworks */,
  1200. 99C6FE4222768B5B00C7070A /* Resources */,
  1201. 79C55E5CC58E2B8BA0FAD00C /* [CP] Copy Pods Resources */,
  1202. );
  1203. buildRules = (
  1204. );
  1205. dependencies = (
  1206. );
  1207. name = UU_Ent;
  1208. productName = UU_Ent;
  1209. productReference = 99C6FE4422768B5B00C7070A /* UU_Ent.app */;
  1210. productType = "com.apple.product-type.application";
  1211. };
  1212. 99C6FE5B22768B5C00C7070A /* UU_EntTests */ = {
  1213. isa = PBXNativeTarget;
  1214. buildConfigurationList = 99C6FE7322768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_EntTests" */;
  1215. buildPhases = (
  1216. 448E7422669634DE3F6256F2 /* [CP] Check Pods Manifest.lock */,
  1217. 99C6FE5822768B5C00C7070A /* Sources */,
  1218. 99C6FE5922768B5C00C7070A /* Frameworks */,
  1219. 99C6FE5A22768B5C00C7070A /* Resources */,
  1220. );
  1221. buildRules = (
  1222. );
  1223. dependencies = (
  1224. 99C6FE5E22768B5C00C7070A /* PBXTargetDependency */,
  1225. );
  1226. name = UU_EntTests;
  1227. productName = UU_EntTests;
  1228. productReference = 99C6FE5C22768B5C00C7070A /* UU_EntTests.xctest */;
  1229. productType = "com.apple.product-type.bundle.unit-test";
  1230. };
  1231. 99C6FE6622768B5C00C7070A /* UU_EntUITests */ = {
  1232. isa = PBXNativeTarget;
  1233. buildConfigurationList = 99C6FE7622768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_EntUITests" */;
  1234. buildPhases = (
  1235. A2F6040888740937A057571A /* [CP] Check Pods Manifest.lock */,
  1236. 99C6FE6322768B5C00C7070A /* Sources */,
  1237. 99C6FE6422768B5C00C7070A /* Frameworks */,
  1238. 99C6FE6522768B5C00C7070A /* Resources */,
  1239. );
  1240. buildRules = (
  1241. );
  1242. dependencies = (
  1243. 99C6FE6922768B5C00C7070A /* PBXTargetDependency */,
  1244. );
  1245. name = UU_EntUITests;
  1246. productName = UU_EntUITests;
  1247. productReference = 99C6FE6722768B5C00C7070A /* UU_EntUITests.xctest */;
  1248. productType = "com.apple.product-type.bundle.ui-testing";
  1249. };
  1250. /* End PBXNativeTarget section */
  1251. /* Begin PBXProject section */
  1252. 99C6FE3C22768B5B00C7070A /* Project object */ = {
  1253. isa = PBXProject;
  1254. attributes = {
  1255. CLASSPREFIX = YR;
  1256. LastUpgradeCheck = 1020;
  1257. ORGANIZATIONNAME = UAS;
  1258. TargetAttributes = {
  1259. 99C6FE4322768B5B00C7070A = {
  1260. CreatedOnToolsVersion = 10.2.1;
  1261. };
  1262. 99C6FE5B22768B5C00C7070A = {
  1263. CreatedOnToolsVersion = 10.2.1;
  1264. TestTargetID = 99C6FE4322768B5B00C7070A;
  1265. };
  1266. 99C6FE6622768B5C00C7070A = {
  1267. CreatedOnToolsVersion = 10.2.1;
  1268. TestTargetID = 99C6FE4322768B5B00C7070A;
  1269. };
  1270. };
  1271. };
  1272. buildConfigurationList = 99C6FE3F22768B5B00C7070A /* Build configuration list for PBXProject "UU_Ent" */;
  1273. compatibilityVersion = "Xcode 9.3";
  1274. developmentRegion = en;
  1275. hasScannedForEncodings = 0;
  1276. knownRegions = (
  1277. en,
  1278. Base,
  1279. );
  1280. mainGroup = 99C6FE3B22768B5B00C7070A;
  1281. productRefGroup = 99C6FE4522768B5B00C7070A /* Products */;
  1282. projectDirPath = "";
  1283. projectRoot = "";
  1284. targets = (
  1285. 99C6FE4322768B5B00C7070A /* UU_Ent */,
  1286. 99C6FE5B22768B5C00C7070A /* UU_EntTests */,
  1287. 99C6FE6622768B5C00C7070A /* UU_EntUITests */,
  1288. );
  1289. };
  1290. /* End PBXProject section */
  1291. /* Begin PBXResourcesBuildPhase section */
  1292. 99C6FE4222768B5B00C7070A /* Resources */ = {
  1293. isa = PBXResourcesBuildPhase;
  1294. buildActionMask = 2147483647;
  1295. files = (
  1296. 99C16342227FDE64002ED79D /* work_route.json in Resources */,
  1297. 99F4A8432277D845009AA6ED /* loading26.png in Resources */,
  1298. 99F4A8172277D845009AA6ED /* loading46.png in Resources */,
  1299. 99F4A83A2277D845009AA6ED /* loading0.png in Resources */,
  1300. 99F4A8102277D845009AA6ED /* loading24.png in Resources */,
  1301. 991C14752282D89C0080B54A /* priva.txt in Resources */,
  1302. 99F4A8302277D845009AA6ED /* loading62.png in Resources */,
  1303. 99F4A8462277D845009AA6ED /* loading43.png in Resources */,
  1304. 99F4A8262277D845009AA6ED /* loading22.png in Resources */,
  1305. 99F4A8472277D845009AA6ED /* loading6.png in Resources */,
  1306. 99F4A81E2277D845009AA6ED /* loading57.png in Resources */,
  1307. 99F4A8082277D844009AA6ED /* loading48.png in Resources */,
  1308. 99F4A8272277D845009AA6ED /* loading38.png in Resources */,
  1309. 99F4A82B2277D845009AA6ED /* loading19.png in Resources */,
  1310. 99F4A8132277D845009AA6ED /* loading42.png in Resources */,
  1311. 2710E66A228166990002A4B0 /* mine_route.json in Resources */,
  1312. 99F4A8142277D845009AA6ED /* loading30.png in Resources */,
  1313. 99F4A8412277D845009AA6ED /* loading37.png in Resources */,
  1314. 99F4A8252277D845009AA6ED /* loading14.png in Resources */,
  1315. 99F4A8332277D845009AA6ED /* loading11.png in Resources */,
  1316. 99F4A82E2277D845009AA6ED /* loading39.png in Resources */,
  1317. 99F4A81B2277D845009AA6ED /* loading7.png in Resources */,
  1318. 99F4A8112277D845009AA6ED /* loading33.png in Resources */,
  1319. 99F4A8282277D845009AA6ED /* loading34.png in Resources */,
  1320. 99F4A8242277D845009AA6ED /* loading35.png in Resources */,
  1321. 99F4A8382277D845009AA6ED /* loading4.png in Resources */,
  1322. 99F4A8372277D845009AA6ED /* loading45.png in Resources */,
  1323. 99F4A8222277D845009AA6ED /* loading55.png in Resources */,
  1324. 99F4A8402277D845009AA6ED /* loading61.png in Resources */,
  1325. 99F4A8212277D845009AA6ED /* loading3.png in Resources */,
  1326. 99F4A8442277D845009AA6ED /* loading16.png in Resources */,
  1327. 99C6FE9022768EC000C7070A /* Assets.xcassets in Resources */,
  1328. 99F4A8202277D845009AA6ED /* loading54.png in Resources */,
  1329. 99F4A81A2277D845009AA6ED /* loading18.png in Resources */,
  1330. 99F4A80F2277D845009AA6ED /* loading44.png in Resources */,
  1331. 99F4A8182277D845009AA6ED /* loading20.png in Resources */,
  1332. 9948171422783494007C7CEA /* msg_route.json in Resources */,
  1333. 99F4A8162277D845009AA6ED /* loading63.png in Resources */,
  1334. 99F4A8122277D845009AA6ED /* loading25.png in Resources */,
  1335. 99F4A83C2277D845009AA6ED /* loading21.png in Resources */,
  1336. 99F4A82D2277D845009AA6ED /* loading9.png in Resources */,
  1337. 99F4A8232277D845009AA6ED /* loading59.png in Resources */,
  1338. 99F4A83F2277D845009AA6ED /* loading52.png in Resources */,
  1339. 99F4A83D2277D845009AA6ED /* loading5.png in Resources */,
  1340. 99F4A83B2277D845009AA6ED /* loading56.png in Resources */,
  1341. 99F4A8092277D845009AA6ED /* loading29.png in Resources */,
  1342. 99F4A81D2277D845009AA6ED /* loading10.png in Resources */,
  1343. 99F4A8192277D845009AA6ED /* loading1.png in Resources */,
  1344. 99F4A82F2277D845009AA6ED /* loading28.png in Resources */,
  1345. 99F4A82C2277D845009AA6ED /* loading41.png in Resources */,
  1346. 99F4A80D2277D845009AA6ED /* loading53.png in Resources */,
  1347. 99F4A8312277D845009AA6ED /* loading40.png in Resources */,
  1348. 99F4A80E2277D845009AA6ED /* loading60.png in Resources */,
  1349. 99F4A8452277D845009AA6ED /* loading51.png in Resources */,
  1350. 99F4A8392277D845009AA6ED /* loading2.png in Resources */,
  1351. 991C14762282D89C0080B54A /* publi.txt in Resources */,
  1352. 99F4A81C2277D845009AA6ED /* loading8.png in Resources */,
  1353. 99F4A8422277D845009AA6ED /* loading58.png in Resources */,
  1354. 99F4A8152277D845009AA6ED /* loading31.png in Resources */,
  1355. 99F4A8362277D845009AA6ED /* loading17.png in Resources */,
  1356. 99F4A80B2277D845009AA6ED /* loading50.png in Resources */,
  1357. 99F4A8342277D845009AA6ED /* loading47.png in Resources */,
  1358. 99F4A80A2277D845009AA6ED /* loading32.png in Resources */,
  1359. 99F4A8292277D845009AA6ED /* loading13.png in Resources */,
  1360. 99F4A8322277D845009AA6ED /* loading15.png in Resources */,
  1361. 99F4A83E2277D845009AA6ED /* loading23.png in Resources */,
  1362. 99F4A80C2277D845009AA6ED /* loading27.png in Resources */,
  1363. 99F4A81F2277D845009AA6ED /* loading12.png in Resources */,
  1364. 99F4A82A2277D845009AA6ED /* loading49.png in Resources */,
  1365. 99F4A8352277D845009AA6ED /* loading36.png in Resources */,
  1366. );
  1367. runOnlyForDeploymentPostprocessing = 0;
  1368. };
  1369. 99C6FE5A22768B5C00C7070A /* Resources */ = {
  1370. isa = PBXResourcesBuildPhase;
  1371. buildActionMask = 2147483647;
  1372. files = (
  1373. );
  1374. runOnlyForDeploymentPostprocessing = 0;
  1375. };
  1376. 99C6FE6522768B5C00C7070A /* Resources */ = {
  1377. isa = PBXResourcesBuildPhase;
  1378. buildActionMask = 2147483647;
  1379. files = (
  1380. );
  1381. runOnlyForDeploymentPostprocessing = 0;
  1382. };
  1383. /* End PBXResourcesBuildPhase section */
  1384. /* Begin PBXShellScriptBuildPhase section */
  1385. 090EEC0300D50242E42AF186 /* [CP] Check Pods Manifest.lock */ = {
  1386. isa = PBXShellScriptBuildPhase;
  1387. buildActionMask = 2147483647;
  1388. files = (
  1389. );
  1390. inputPaths = (
  1391. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1392. "${PODS_ROOT}/Manifest.lock",
  1393. );
  1394. name = "[CP] Check Pods Manifest.lock";
  1395. outputPaths = (
  1396. "$(DERIVED_FILE_DIR)/Pods-UU_Ent-checkManifestLockResult.txt",
  1397. );
  1398. runOnlyForDeploymentPostprocessing = 0;
  1399. shellPath = /bin/sh;
  1400. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1401. showEnvVarsInLog = 0;
  1402. };
  1403. 448E7422669634DE3F6256F2 /* [CP] Check Pods Manifest.lock */ = {
  1404. isa = PBXShellScriptBuildPhase;
  1405. buildActionMask = 2147483647;
  1406. files = (
  1407. );
  1408. inputPaths = (
  1409. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1410. "${PODS_ROOT}/Manifest.lock",
  1411. );
  1412. name = "[CP] Check Pods Manifest.lock";
  1413. outputPaths = (
  1414. "$(DERIVED_FILE_DIR)/Pods-UU_EntTests-checkManifestLockResult.txt",
  1415. );
  1416. runOnlyForDeploymentPostprocessing = 0;
  1417. shellPath = /bin/sh;
  1418. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1419. showEnvVarsInLog = 0;
  1420. };
  1421. 79C55E5CC58E2B8BA0FAD00C /* [CP] Copy Pods Resources */ = {
  1422. isa = PBXShellScriptBuildPhase;
  1423. buildActionMask = 2147483647;
  1424. files = (
  1425. );
  1426. inputPaths = (
  1427. "${SRCROOT}/Pods/Target Support Files/Pods-UU_Ent/Pods-UU_Ent-resources.sh",
  1428. "${PODS_ROOT}/IQKeyboardManager/IQKeyboardManager/Resources/IQKeyboardManager.bundle",
  1429. "${PODS_ROOT}/MJRefresh/MJRefresh/MJRefresh.bundle",
  1430. "${PODS_CONFIGURATION_BUILD_DIR}/gRPC/gRPCCertificates.bundle",
  1431. );
  1432. name = "[CP] Copy Pods Resources";
  1433. outputPaths = (
  1434. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardManager.bundle",
  1435. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MJRefresh.bundle",
  1436. "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/gRPCCertificates.bundle",
  1437. );
  1438. runOnlyForDeploymentPostprocessing = 0;
  1439. shellPath = /bin/sh;
  1440. shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-UU_Ent/Pods-UU_Ent-resources.sh\"\n";
  1441. showEnvVarsInLog = 0;
  1442. };
  1443. A2F6040888740937A057571A /* [CP] Check Pods Manifest.lock */ = {
  1444. isa = PBXShellScriptBuildPhase;
  1445. buildActionMask = 2147483647;
  1446. files = (
  1447. );
  1448. inputPaths = (
  1449. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1450. "${PODS_ROOT}/Manifest.lock",
  1451. );
  1452. name = "[CP] Check Pods Manifest.lock";
  1453. outputPaths = (
  1454. "$(DERIVED_FILE_DIR)/Pods-UU_EntUITests-checkManifestLockResult.txt",
  1455. );
  1456. runOnlyForDeploymentPostprocessing = 0;
  1457. shellPath = /bin/sh;
  1458. shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
  1459. showEnvVarsInLog = 0;
  1460. };
  1461. /* End PBXShellScriptBuildPhase section */
  1462. /* Begin PBXSourcesBuildPhase section */
  1463. 99C6FE4022768B5B00C7070A /* Sources */ = {
  1464. isa = PBXSourcesBuildPhase;
  1465. buildActionMask = 2147483647;
  1466. files = (
  1467. 99C6FED12276982F00C7070A /* YRTabBar.m in Sources */,
  1468. 27029BD0227709CC00D53A94 /* UIButton+Layout.m in Sources */,
  1469. 99C6FF232276E4C000C7070A /* YRMsgMainCell.m in Sources */,
  1470. 2710E66E2281746E0002A4B0 /* UIPopoverListView.m in Sources */,
  1471. 99C16345228027C8002ED79D /* YRMsgHeader.m in Sources */,
  1472. 991C1464228275B70080B54A /* YRLoginManager.m in Sources */,
  1473. 991C14742282D89C0080B54A /* RSA.m in Sources */,
  1474. 99C6FECB227696CA00C7070A /* YRMsgVC.m in Sources */,
  1475. 99C16340227FD24E002ED79D /* YRWorkConModel.m in Sources */,
  1476. 99C6FF262276FAE000C7070A /* YRMsgMainModel.m in Sources */,
  1477. 2710E66522815DCF0002A4B0 /* YRMineCell.m in Sources */,
  1478. 99F4A7462277D503009AA6ED /* YRAdView.m in Sources */,
  1479. 99C6FE9222768EC000C7070A /* main.m in Sources */,
  1480. 99C6FE99227690F800C7070A /* YRBaseNav.m in Sources */,
  1481. 99C6FE96227690BE00C7070A /* YRBaseVC.m in Sources */,
  1482. 2710E65522801B7E0002A4B0 /* YRRegisterVC.m in Sources */,
  1483. 99C6FF172276D13500C7070A /* YRUserInfo.m in Sources */,
  1484. 270E6C972282B72D008B12B9 /* YRSettingVC.m in Sources */,
  1485. 99B4252F22815E2900DAE304 /* YRAlertView.m in Sources */,
  1486. 999F6510227E658E00329012 /* UIView+frame.m in Sources */,
  1487. 99C6FEC32276959B00C7070A /* YRWorkVC.m in Sources */,
  1488. 270E6C9B2282E6D0008B12B9 /* UINavigationController+safe.m in Sources */,
  1489. 99F4A73D2277D1B8009AA6ED /* YRLoadImgCacheTool.m in Sources */,
  1490. 99C6FECE227697DA00C7070A /* YRContactVC.m in Sources */,
  1491. 99C6FEC82276966600C7070A /* YRWebVC.m in Sources */,
  1492. 99C6FEC02276957400C7070A /* YRMineVC.m in Sources */,
  1493. 2710E66022801ED10002A4B0 /* YRShowMessageFromNavi.m in Sources */,
  1494. 2710E66822815E030002A4B0 /* YRMineModel.m in Sources */,
  1495. 99C6FF1B2276DD3900C7070A /* YRTableView.m in Sources */,
  1496. 27029BD32277E16300D53A94 /* YRButton.m in Sources */,
  1497. 27029BCC2277063F00D53A94 /* UIColor+HexColor.m in Sources */,
  1498. 2710E65822801B930002A4B0 /* YRPwdLevelView.m in Sources */,
  1499. 99F4A7402277D2DF009AA6ED /* YRLoadingVC.m in Sources */,
  1500. 99C6FE8F22768EC000C7070A /* AppDelegate.m in Sources */,
  1501. 999F6516227E688600329012 /* UIView+selector.m in Sources */,
  1502. 999F651E227E6A6000329012 /* NSString+regular.m in Sources */,
  1503. 99F4A7432277D332009AA6ED /* YRCountDownView.m in Sources */,
  1504. 2710E65D22801E330002A4B0 /* LeftViewTF.m in Sources */,
  1505. 99C6FEBA2276950C00C7070A /* YRMainVC.m in Sources */,
  1506. 9948171A22785044007C7CEA /* YRWorkCollCell.m in Sources */,
  1507. 27029BC72276A23400D53A94 /* YRLoginVC.m in Sources */,
  1508. 999F6513227E664C00329012 /* UIImageView+userId.m in Sources */,
  1509. 991C146F2282D8900080B54A /* NSString+secri.m in Sources */,
  1510. 999F651A227E697D00329012 /* UILabel+vertical.m in Sources */,
  1511. 9948171722785013007C7CEA /* YRWorkTabCell.m in Sources */,
  1512. 991C146C2282D8600080B54A /* GTMBase64.m in Sources */,
  1513. );
  1514. runOnlyForDeploymentPostprocessing = 0;
  1515. };
  1516. 99C6FE5822768B5C00C7070A /* Sources */ = {
  1517. isa = PBXSourcesBuildPhase;
  1518. buildActionMask = 2147483647;
  1519. files = (
  1520. 99C6FE6122768B5C00C7070A /* UU_EntTests.m in Sources */,
  1521. );
  1522. runOnlyForDeploymentPostprocessing = 0;
  1523. };
  1524. 99C6FE6322768B5C00C7070A /* Sources */ = {
  1525. isa = PBXSourcesBuildPhase;
  1526. buildActionMask = 2147483647;
  1527. files = (
  1528. 99C6FE6C22768B5C00C7070A /* UU_EntUITests.m in Sources */,
  1529. );
  1530. runOnlyForDeploymentPostprocessing = 0;
  1531. };
  1532. /* End PBXSourcesBuildPhase section */
  1533. /* Begin PBXTargetDependency section */
  1534. 99C6FE5E22768B5C00C7070A /* PBXTargetDependency */ = {
  1535. isa = PBXTargetDependency;
  1536. target = 99C6FE4322768B5B00C7070A /* UU_Ent */;
  1537. targetProxy = 99C6FE5D22768B5C00C7070A /* PBXContainerItemProxy */;
  1538. };
  1539. 99C6FE6922768B5C00C7070A /* PBXTargetDependency */ = {
  1540. isa = PBXTargetDependency;
  1541. target = 99C6FE4322768B5B00C7070A /* UU_Ent */;
  1542. targetProxy = 99C6FE6822768B5C00C7070A /* PBXContainerItemProxy */;
  1543. };
  1544. /* End PBXTargetDependency section */
  1545. /* Begin XCBuildConfiguration section */
  1546. 99C6FE6E22768B5C00C7070A /* Debug */ = {
  1547. isa = XCBuildConfiguration;
  1548. buildSettings = {
  1549. ALWAYS_SEARCH_USER_PATHS = NO;
  1550. CLANG_ANALYZER_NONNULL = YES;
  1551. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1552. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1553. CLANG_CXX_LIBRARY = "libc++";
  1554. CLANG_ENABLE_MODULES = YES;
  1555. CLANG_ENABLE_OBJC_ARC = YES;
  1556. CLANG_ENABLE_OBJC_WEAK = YES;
  1557. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1558. CLANG_WARN_BOOL_CONVERSION = YES;
  1559. CLANG_WARN_COMMA = YES;
  1560. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1561. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1562. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1563. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1564. CLANG_WARN_EMPTY_BODY = YES;
  1565. CLANG_WARN_ENUM_CONVERSION = YES;
  1566. CLANG_WARN_INFINITE_RECURSION = YES;
  1567. CLANG_WARN_INT_CONVERSION = YES;
  1568. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1569. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1570. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1571. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1572. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1573. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1574. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1575. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1576. CLANG_WARN_UNREACHABLE_CODE = YES;
  1577. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1578. CODE_SIGN_IDENTITY = "iPhone Developer";
  1579. COPY_PHASE_STRIP = NO;
  1580. DEBUG_INFORMATION_FORMAT = dwarf;
  1581. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1582. ENABLE_TESTABILITY = YES;
  1583. GCC_C_LANGUAGE_STANDARD = gnu11;
  1584. GCC_DYNAMIC_NO_PIC = NO;
  1585. GCC_NO_COMMON_BLOCKS = YES;
  1586. GCC_OPTIMIZATION_LEVEL = 0;
  1587. GCC_PREPROCESSOR_DEFINITIONS = (
  1588. "DEBUG=1",
  1589. "$(inherited)",
  1590. );
  1591. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1592. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1593. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1594. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1595. GCC_WARN_UNUSED_FUNCTION = YES;
  1596. GCC_WARN_UNUSED_VARIABLE = YES;
  1597. IPHONEOS_DEPLOYMENT_TARGET = 12.2;
  1598. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  1599. MTL_FAST_MATH = YES;
  1600. ONLY_ACTIVE_ARCH = YES;
  1601. SDKROOT = iphoneos;
  1602. };
  1603. name = Debug;
  1604. };
  1605. 99C6FE6F22768B5C00C7070A /* Release */ = {
  1606. isa = XCBuildConfiguration;
  1607. buildSettings = {
  1608. ALWAYS_SEARCH_USER_PATHS = NO;
  1609. CLANG_ANALYZER_NONNULL = YES;
  1610. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  1611. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  1612. CLANG_CXX_LIBRARY = "libc++";
  1613. CLANG_ENABLE_MODULES = YES;
  1614. CLANG_ENABLE_OBJC_ARC = YES;
  1615. CLANG_ENABLE_OBJC_WEAK = YES;
  1616. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  1617. CLANG_WARN_BOOL_CONVERSION = YES;
  1618. CLANG_WARN_COMMA = YES;
  1619. CLANG_WARN_CONSTANT_CONVERSION = YES;
  1620. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  1621. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  1622. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  1623. CLANG_WARN_EMPTY_BODY = YES;
  1624. CLANG_WARN_ENUM_CONVERSION = YES;
  1625. CLANG_WARN_INFINITE_RECURSION = YES;
  1626. CLANG_WARN_INT_CONVERSION = YES;
  1627. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  1628. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  1629. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  1630. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  1631. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  1632. CLANG_WARN_STRICT_PROTOTYPES = YES;
  1633. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  1634. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  1635. CLANG_WARN_UNREACHABLE_CODE = YES;
  1636. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  1637. CODE_SIGN_IDENTITY = "iPhone Developer";
  1638. COPY_PHASE_STRIP = NO;
  1639. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  1640. ENABLE_NS_ASSERTIONS = NO;
  1641. ENABLE_STRICT_OBJC_MSGSEND = YES;
  1642. GCC_C_LANGUAGE_STANDARD = gnu11;
  1643. GCC_NO_COMMON_BLOCKS = YES;
  1644. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  1645. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  1646. GCC_WARN_UNDECLARED_SELECTOR = YES;
  1647. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  1648. GCC_WARN_UNUSED_FUNCTION = YES;
  1649. GCC_WARN_UNUSED_VARIABLE = YES;
  1650. IPHONEOS_DEPLOYMENT_TARGET = 12.2;
  1651. MTL_ENABLE_DEBUG_INFO = NO;
  1652. MTL_FAST_MATH = YES;
  1653. SDKROOT = iphoneos;
  1654. VALIDATE_PRODUCT = YES;
  1655. };
  1656. name = Release;
  1657. };
  1658. 99C6FE7122768B5C00C7070A /* Debug */ = {
  1659. isa = XCBuildConfiguration;
  1660. baseConfigurationReference = 71B4DF45C8EC3368ACFC4193 /* Pods-UU_Ent.debug.xcconfig */;
  1661. buildSettings = {
  1662. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1663. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1664. CODE_SIGN_STYLE = Automatic;
  1665. DEVELOPMENT_TEAM = 433WAS8387;
  1666. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1667. GCC_PREFIX_HEADER = "${SRCROOT}/UU_Ent/Supporting Files/UU_Ent.pch";
  1668. INFOPLIST_FILE = "UU_Ent/Supporting Files/Info.plist";
  1669. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1670. LD_RUNPATH_SEARCH_PATHS = (
  1671. "$(inherited)",
  1672. "@executable_path/Frameworks",
  1673. );
  1674. PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-Ent";
  1675. PRODUCT_NAME = "$(TARGET_NAME)";
  1676. TARGETED_DEVICE_FAMILY = "1,2";
  1677. };
  1678. name = Debug;
  1679. };
  1680. 99C6FE7222768B5C00C7070A /* Release */ = {
  1681. isa = XCBuildConfiguration;
  1682. baseConfigurationReference = 13A4F2D13DACD5857BD40BDE /* Pods-UU_Ent.release.xcconfig */;
  1683. buildSettings = {
  1684. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  1685. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  1686. CODE_SIGN_STYLE = Automatic;
  1687. DEVELOPMENT_TEAM = 433WAS8387;
  1688. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  1689. GCC_PREFIX_HEADER = "${SRCROOT}/UU_Ent/Supporting Files/UU_Ent.pch";
  1690. INFOPLIST_FILE = "UU_Ent/Supporting Files/Info.plist";
  1691. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  1692. LD_RUNPATH_SEARCH_PATHS = (
  1693. "$(inherited)",
  1694. "@executable_path/Frameworks",
  1695. );
  1696. PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-Ent";
  1697. PRODUCT_NAME = "$(TARGET_NAME)";
  1698. TARGETED_DEVICE_FAMILY = "1,2";
  1699. };
  1700. name = Release;
  1701. };
  1702. 99C6FE7422768B5C00C7070A /* Debug */ = {
  1703. isa = XCBuildConfiguration;
  1704. baseConfigurationReference = DA26F5F8909B0156F0F3EC26 /* Pods-UU_EntTests.debug.xcconfig */;
  1705. buildSettings = {
  1706. BUNDLE_LOADER = "$(TEST_HOST)";
  1707. CODE_SIGN_STYLE = Automatic;
  1708. INFOPLIST_FILE = UU_EntTests/Info.plist;
  1709. LD_RUNPATH_SEARCH_PATHS = (
  1710. "$(inherited)",
  1711. "@executable_path/Frameworks",
  1712. "@loader_path/Frameworks",
  1713. );
  1714. PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-EntTests";
  1715. PRODUCT_NAME = "$(TARGET_NAME)";
  1716. TARGETED_DEVICE_FAMILY = "1,2";
  1717. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UU_Ent.app/UU_Ent";
  1718. };
  1719. name = Debug;
  1720. };
  1721. 99C6FE7522768B5C00C7070A /* Release */ = {
  1722. isa = XCBuildConfiguration;
  1723. baseConfigurationReference = 49A8B37D50A80EFFD84620EC /* Pods-UU_EntTests.release.xcconfig */;
  1724. buildSettings = {
  1725. BUNDLE_LOADER = "$(TEST_HOST)";
  1726. CODE_SIGN_STYLE = Automatic;
  1727. INFOPLIST_FILE = UU_EntTests/Info.plist;
  1728. LD_RUNPATH_SEARCH_PATHS = (
  1729. "$(inherited)",
  1730. "@executable_path/Frameworks",
  1731. "@loader_path/Frameworks",
  1732. );
  1733. PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-EntTests";
  1734. PRODUCT_NAME = "$(TARGET_NAME)";
  1735. TARGETED_DEVICE_FAMILY = "1,2";
  1736. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UU_Ent.app/UU_Ent";
  1737. };
  1738. name = Release;
  1739. };
  1740. 99C6FE7722768B5C00C7070A /* Debug */ = {
  1741. isa = XCBuildConfiguration;
  1742. baseConfigurationReference = B5220A6F4D02F3A377D1E1D6 /* Pods-UU_EntUITests.debug.xcconfig */;
  1743. buildSettings = {
  1744. CODE_SIGN_STYLE = Automatic;
  1745. INFOPLIST_FILE = UU_EntUITests/Info.plist;
  1746. LD_RUNPATH_SEARCH_PATHS = (
  1747. "$(inherited)",
  1748. "@executable_path/Frameworks",
  1749. "@loader_path/Frameworks",
  1750. );
  1751. PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-EntUITests";
  1752. PRODUCT_NAME = "$(TARGET_NAME)";
  1753. TARGETED_DEVICE_FAMILY = "1,2";
  1754. TEST_TARGET_NAME = UU_Ent;
  1755. };
  1756. name = Debug;
  1757. };
  1758. 99C6FE7822768B5C00C7070A /* Release */ = {
  1759. isa = XCBuildConfiguration;
  1760. baseConfigurationReference = 49D3F089EECE8E3EDF7D2E1C /* Pods-UU_EntUITests.release.xcconfig */;
  1761. buildSettings = {
  1762. CODE_SIGN_STYLE = Automatic;
  1763. INFOPLIST_FILE = UU_EntUITests/Info.plist;
  1764. LD_RUNPATH_SEARCH_PATHS = (
  1765. "$(inherited)",
  1766. "@executable_path/Frameworks",
  1767. "@loader_path/Frameworks",
  1768. );
  1769. PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-EntUITests";
  1770. PRODUCT_NAME = "$(TARGET_NAME)";
  1771. TARGETED_DEVICE_FAMILY = "1,2";
  1772. TEST_TARGET_NAME = UU_Ent;
  1773. };
  1774. name = Release;
  1775. };
  1776. /* End XCBuildConfiguration section */
  1777. /* Begin XCConfigurationList section */
  1778. 99C6FE3F22768B5B00C7070A /* Build configuration list for PBXProject "UU_Ent" */ = {
  1779. isa = XCConfigurationList;
  1780. buildConfigurations = (
  1781. 99C6FE6E22768B5C00C7070A /* Debug */,
  1782. 99C6FE6F22768B5C00C7070A /* Release */,
  1783. );
  1784. defaultConfigurationIsVisible = 0;
  1785. defaultConfigurationName = Release;
  1786. };
  1787. 99C6FE7022768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_Ent" */ = {
  1788. isa = XCConfigurationList;
  1789. buildConfigurations = (
  1790. 99C6FE7122768B5C00C7070A /* Debug */,
  1791. 99C6FE7222768B5C00C7070A /* Release */,
  1792. );
  1793. defaultConfigurationIsVisible = 0;
  1794. defaultConfigurationName = Release;
  1795. };
  1796. 99C6FE7322768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_EntTests" */ = {
  1797. isa = XCConfigurationList;
  1798. buildConfigurations = (
  1799. 99C6FE7422768B5C00C7070A /* Debug */,
  1800. 99C6FE7522768B5C00C7070A /* Release */,
  1801. );
  1802. defaultConfigurationIsVisible = 0;
  1803. defaultConfigurationName = Release;
  1804. };
  1805. 99C6FE7622768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_EntUITests" */ = {
  1806. isa = XCConfigurationList;
  1807. buildConfigurations = (
  1808. 99C6FE7722768B5C00C7070A /* Debug */,
  1809. 99C6FE7822768B5C00C7070A /* Release */,
  1810. );
  1811. defaultConfigurationIsVisible = 0;
  1812. defaultConfigurationName = Release;
  1813. };
  1814. /* End XCConfigurationList section */
  1815. };
  1816. rootObject = 99C6FE3C22768B5B00C7070A /* Project object */;
  1817. }