| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 50;
- objects = {
- /* Begin PBXBuildFile section */
- 27029BC72276A23400D53A94 /* YRLoginVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 27029BC62276A23400D53A94 /* YRLoginVC.m */; };
- 27029BCC2277063F00D53A94 /* UIColor+HexColor.m in Sources */ = {isa = PBXBuildFile; fileRef = 27029BCB2277063F00D53A94 /* UIColor+HexColor.m */; };
- 27029BD0227709CC00D53A94 /* UIButton+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27029BCE227709CC00D53A94 /* UIButton+Layout.m */; };
- 27029BD32277E16300D53A94 /* YRButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 27029BD22277E16300D53A94 /* YRButton.m */; };
- 270E6C972282B72D008B12B9 /* YRSettingVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 270E6C962282B72D008B12B9 /* YRSettingVC.m */; };
- 270E6C9B2282E6D0008B12B9 /* UINavigationController+safe.m in Sources */ = {isa = PBXBuildFile; fileRef = 270E6C9A2282E6D0008B12B9 /* UINavigationController+safe.m */; };
- 2710E65522801B7E0002A4B0 /* YRRegisterVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E65422801B7E0002A4B0 /* YRRegisterVC.m */; };
- 2710E65822801B930002A4B0 /* YRPwdLevelView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E65722801B930002A4B0 /* YRPwdLevelView.m */; };
- 2710E65D22801E330002A4B0 /* LeftViewTF.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E65C22801E330002A4B0 /* LeftViewTF.m */; };
- 2710E66022801ED10002A4B0 /* YRShowMessageFromNavi.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E65F22801ED10002A4B0 /* YRShowMessageFromNavi.m */; };
- 2710E66522815DCF0002A4B0 /* YRMineCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E66422815DCF0002A4B0 /* YRMineCell.m */; };
- 2710E66822815E030002A4B0 /* YRMineModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E66722815E030002A4B0 /* YRMineModel.m */; };
- 2710E66A228166990002A4B0 /* mine_route.json in Resources */ = {isa = PBXBuildFile; fileRef = 2710E669228166990002A4B0 /* mine_route.json */; };
- 2710E66E2281746E0002A4B0 /* UIPopoverListView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2710E66D2281746E0002A4B0 /* UIPopoverListView.m */; };
- 3FE47A8D89A70D18F98B1E41 /* libPods-UU_EntUITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F4F857DEEC69AEDCFACDFD51 /* libPods-UU_EntUITests.a */; };
- 991C1464228275B70080B54A /* YRLoginManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 991C1463228275B70080B54A /* YRLoginManager.m */; };
- 991C146C2282D8600080B54A /* GTMBase64.m in Sources */ = {isa = PBXBuildFile; fileRef = 991C146A2282D85F0080B54A /* GTMBase64.m */; };
- 991C146F2282D8900080B54A /* NSString+secri.m in Sources */ = {isa = PBXBuildFile; fileRef = 991C146E2282D88F0080B54A /* NSString+secri.m */; };
- 991C14742282D89C0080B54A /* RSA.m in Sources */ = {isa = PBXBuildFile; fileRef = 991C14702282D89C0080B54A /* RSA.m */; };
- 991C14752282D89C0080B54A /* priva.txt in Resources */ = {isa = PBXBuildFile; fileRef = 991C14722282D89C0080B54A /* priva.txt */; };
- 991C14762282D89C0080B54A /* publi.txt in Resources */ = {isa = PBXBuildFile; fileRef = 991C14732282D89C0080B54A /* publi.txt */; };
- 9948171422783494007C7CEA /* msg_route.json in Resources */ = {isa = PBXBuildFile; fileRef = 9948171322783494007C7CEA /* msg_route.json */; };
- 9948171722785013007C7CEA /* YRWorkTabCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9948171622785013007C7CEA /* YRWorkTabCell.m */; };
- 9948171A22785044007C7CEA /* YRWorkCollCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9948171922785044007C7CEA /* YRWorkCollCell.m */; };
- 999F6510227E658E00329012 /* UIView+frame.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F650F227E658E00329012 /* UIView+frame.m */; };
- 999F6513227E664C00329012 /* UIImageView+userId.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F6512227E664C00329012 /* UIImageView+userId.m */; };
- 999F6516227E688600329012 /* UIView+selector.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F6515227E688600329012 /* UIView+selector.m */; };
- 999F651A227E697D00329012 /* UILabel+vertical.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F6519227E697D00329012 /* UILabel+vertical.m */; };
- 999F651E227E6A6000329012 /* NSString+regular.m in Sources */ = {isa = PBXBuildFile; fileRef = 999F651D227E6A6000329012 /* NSString+regular.m */; };
- 99B4252F22815E2900DAE304 /* YRAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99B4252E22815E2900DAE304 /* YRAlertView.m */; };
- 99C16340227FD24E002ED79D /* YRWorkConModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C1633F227FD24E002ED79D /* YRWorkConModel.m */; };
- 99C16342227FDE64002ED79D /* work_route.json in Resources */ = {isa = PBXBuildFile; fileRef = 99C16341227FDE64002ED79D /* work_route.json */; };
- 99C16345228027C8002ED79D /* YRMsgHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C16344228027C8002ED79D /* YRMsgHeader.m */; };
- 99C6FE6122768B5C00C7070A /* UU_EntTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE6022768B5C00C7070A /* UU_EntTests.m */; };
- 99C6FE6C22768B5C00C7070A /* UU_EntUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE6B22768B5C00C7070A /* UU_EntUITests.m */; };
- 99C6FE8F22768EC000C7070A /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE7E22768EC000C7070A /* AppDelegate.m */; };
- 99C6FE9022768EC000C7070A /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 99C6FE8722768EC000C7070A /* Assets.xcassets */; };
- 99C6FE9222768EC000C7070A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE8A22768EC000C7070A /* main.m */; };
- 99C6FE96227690BE00C7070A /* YRBaseVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE95227690BE00C7070A /* YRBaseVC.m */; };
- 99C6FE99227690F800C7070A /* YRBaseNav.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FE98227690F800C7070A /* YRBaseNav.m */; };
- 99C6FEBA2276950C00C7070A /* YRMainVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FEB92276950C00C7070A /* YRMainVC.m */; };
- 99C6FEC02276957400C7070A /* YRMineVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FEBF2276957400C7070A /* YRMineVC.m */; };
- 99C6FEC32276959B00C7070A /* YRWorkVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FEC22276959B00C7070A /* YRWorkVC.m */; };
- 99C6FEC82276966600C7070A /* YRWebVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FEC72276966600C7070A /* YRWebVC.m */; };
- 99C6FECB227696CA00C7070A /* YRMsgVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FECA227696CA00C7070A /* YRMsgVC.m */; };
- 99C6FECE227697DA00C7070A /* YRContactVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FECD227697DA00C7070A /* YRContactVC.m */; };
- 99C6FED12276982F00C7070A /* YRTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FED02276982F00C7070A /* YRTabBar.m */; };
- 99C6FF172276D13500C7070A /* YRUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FF162276D13500C7070A /* YRUserInfo.m */; };
- 99C6FF1B2276DD3900C7070A /* YRTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FF1A2276DD3900C7070A /* YRTableView.m */; };
- 99C6FF232276E4C000C7070A /* YRMsgMainCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FF222276E4C000C7070A /* YRMsgMainCell.m */; };
- 99C6FF262276FAE000C7070A /* YRMsgMainModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 99C6FF242276FAE000C7070A /* YRMsgMainModel.m */; };
- 99F4A73D2277D1B8009AA6ED /* YRLoadImgCacheTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F4A73C2277D1B8009AA6ED /* YRLoadImgCacheTool.m */; };
- 99F4A7402277D2DF009AA6ED /* YRLoadingVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F4A73F2277D2DF009AA6ED /* YRLoadingVC.m */; };
- 99F4A7432277D332009AA6ED /* YRCountDownView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F4A7422277D332009AA6ED /* YRCountDownView.m */; };
- 99F4A7462277D503009AA6ED /* YRAdView.m in Sources */ = {isa = PBXBuildFile; fileRef = 99F4A7452277D503009AA6ED /* YRAdView.m */; };
- 99F4A8082277D844009AA6ED /* loading48.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7C82277D83B009AA6ED /* loading48.png */; };
- 99F4A8092277D845009AA6ED /* loading29.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7C92277D83B009AA6ED /* loading29.png */; };
- 99F4A80A2277D845009AA6ED /* loading32.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CA2277D83B009AA6ED /* loading32.png */; };
- 99F4A80B2277D845009AA6ED /* loading50.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CB2277D83B009AA6ED /* loading50.png */; };
- 99F4A80C2277D845009AA6ED /* loading27.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CC2277D83C009AA6ED /* loading27.png */; };
- 99F4A80D2277D845009AA6ED /* loading53.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CD2277D83C009AA6ED /* loading53.png */; };
- 99F4A80E2277D845009AA6ED /* loading60.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CE2277D83C009AA6ED /* loading60.png */; };
- 99F4A80F2277D845009AA6ED /* loading44.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7CF2277D83C009AA6ED /* loading44.png */; };
- 99F4A8102277D845009AA6ED /* loading24.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D02277D83C009AA6ED /* loading24.png */; };
- 99F4A8112277D845009AA6ED /* loading33.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D12277D83C009AA6ED /* loading33.png */; };
- 99F4A8122277D845009AA6ED /* loading25.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D22277D83C009AA6ED /* loading25.png */; };
- 99F4A8132277D845009AA6ED /* loading42.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D32277D83D009AA6ED /* loading42.png */; };
- 99F4A8142277D845009AA6ED /* loading30.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D42277D83D009AA6ED /* loading30.png */; };
- 99F4A8152277D845009AA6ED /* loading31.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D52277D83D009AA6ED /* loading31.png */; };
- 99F4A8162277D845009AA6ED /* loading63.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D62277D83D009AA6ED /* loading63.png */; };
- 99F4A8172277D845009AA6ED /* loading46.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D72277D83D009AA6ED /* loading46.png */; };
- 99F4A8182277D845009AA6ED /* loading20.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D82277D83D009AA6ED /* loading20.png */; };
- 99F4A8192277D845009AA6ED /* loading1.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7D92277D83D009AA6ED /* loading1.png */; };
- 99F4A81A2277D845009AA6ED /* loading18.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DA2277D83E009AA6ED /* loading18.png */; };
- 99F4A81B2277D845009AA6ED /* loading7.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DB2277D83E009AA6ED /* loading7.png */; };
- 99F4A81C2277D845009AA6ED /* loading8.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DC2277D83E009AA6ED /* loading8.png */; };
- 99F4A81D2277D845009AA6ED /* loading10.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DD2277D83E009AA6ED /* loading10.png */; };
- 99F4A81E2277D845009AA6ED /* loading57.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DE2277D83E009AA6ED /* loading57.png */; };
- 99F4A81F2277D845009AA6ED /* loading12.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7DF2277D83E009AA6ED /* loading12.png */; };
- 99F4A8202277D845009AA6ED /* loading54.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E02277D83E009AA6ED /* loading54.png */; };
- 99F4A8212277D845009AA6ED /* loading3.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E12277D83F009AA6ED /* loading3.png */; };
- 99F4A8222277D845009AA6ED /* loading55.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E22277D83F009AA6ED /* loading55.png */; };
- 99F4A8232277D845009AA6ED /* loading59.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E32277D83F009AA6ED /* loading59.png */; };
- 99F4A8242277D845009AA6ED /* loading35.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E42277D83F009AA6ED /* loading35.png */; };
- 99F4A8252277D845009AA6ED /* loading14.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E52277D83F009AA6ED /* loading14.png */; };
- 99F4A8262277D845009AA6ED /* loading22.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E62277D83F009AA6ED /* loading22.png */; };
- 99F4A8272277D845009AA6ED /* loading38.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E72277D83F009AA6ED /* loading38.png */; };
- 99F4A8282277D845009AA6ED /* loading34.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E82277D840009AA6ED /* loading34.png */; };
- 99F4A8292277D845009AA6ED /* loading13.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7E92277D840009AA6ED /* loading13.png */; };
- 99F4A82A2277D845009AA6ED /* loading49.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EA2277D840009AA6ED /* loading49.png */; };
- 99F4A82B2277D845009AA6ED /* loading19.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EB2277D840009AA6ED /* loading19.png */; };
- 99F4A82C2277D845009AA6ED /* loading41.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EC2277D840009AA6ED /* loading41.png */; };
- 99F4A82D2277D845009AA6ED /* loading9.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7ED2277D840009AA6ED /* loading9.png */; };
- 99F4A82E2277D845009AA6ED /* loading39.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EE2277D840009AA6ED /* loading39.png */; };
- 99F4A82F2277D845009AA6ED /* loading28.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7EF2277D840009AA6ED /* loading28.png */; };
- 99F4A8302277D845009AA6ED /* loading62.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F02277D840009AA6ED /* loading62.png */; };
- 99F4A8312277D845009AA6ED /* loading40.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F12277D841009AA6ED /* loading40.png */; };
- 99F4A8322277D845009AA6ED /* loading15.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F22277D841009AA6ED /* loading15.png */; };
- 99F4A8332277D845009AA6ED /* loading11.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F32277D841009AA6ED /* loading11.png */; };
- 99F4A8342277D845009AA6ED /* loading47.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F42277D841009AA6ED /* loading47.png */; };
- 99F4A8352277D845009AA6ED /* loading36.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F52277D841009AA6ED /* loading36.png */; };
- 99F4A8362277D845009AA6ED /* loading17.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F62277D841009AA6ED /* loading17.png */; };
- 99F4A8372277D845009AA6ED /* loading45.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F72277D842009AA6ED /* loading45.png */; };
- 99F4A8382277D845009AA6ED /* loading4.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F82277D842009AA6ED /* loading4.png */; };
- 99F4A8392277D845009AA6ED /* loading2.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7F92277D842009AA6ED /* loading2.png */; };
- 99F4A83A2277D845009AA6ED /* loading0.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FA2277D842009AA6ED /* loading0.png */; };
- 99F4A83B2277D845009AA6ED /* loading56.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FB2277D842009AA6ED /* loading56.png */; };
- 99F4A83C2277D845009AA6ED /* loading21.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FC2277D842009AA6ED /* loading21.png */; };
- 99F4A83D2277D845009AA6ED /* loading5.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FD2277D842009AA6ED /* loading5.png */; };
- 99F4A83E2277D845009AA6ED /* loading23.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FE2277D843009AA6ED /* loading23.png */; };
- 99F4A83F2277D845009AA6ED /* loading52.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A7FF2277D843009AA6ED /* loading52.png */; };
- 99F4A8402277D845009AA6ED /* loading61.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8002277D843009AA6ED /* loading61.png */; };
- 99F4A8412277D845009AA6ED /* loading37.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8012277D843009AA6ED /* loading37.png */; };
- 99F4A8422277D845009AA6ED /* loading58.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8022277D843009AA6ED /* loading58.png */; };
- 99F4A8432277D845009AA6ED /* loading26.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8032277D843009AA6ED /* loading26.png */; };
- 99F4A8442277D845009AA6ED /* loading16.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8042277D844009AA6ED /* loading16.png */; };
- 99F4A8452277D845009AA6ED /* loading51.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8052277D844009AA6ED /* loading51.png */; };
- 99F4A8462277D845009AA6ED /* loading43.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8062277D844009AA6ED /* loading43.png */; };
- 99F4A8472277D845009AA6ED /* loading6.png in Resources */ = {isa = PBXBuildFile; fileRef = 99F4A8072277D844009AA6ED /* loading6.png */; };
- C2FE1204E87AA4AC2511A808 /* libPods-UU_Ent.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F21F3925C5D7942C9E06A9B7 /* libPods-UU_Ent.a */; };
- F135D5FAC9D7DD2641DAF236 /* libPods-UU_EntTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 102F3AF440E73FF2A1EB3208 /* libPods-UU_EntTests.a */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 99C6FE5D22768B5C00C7070A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 99C6FE3C22768B5B00C7070A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 99C6FE4322768B5B00C7070A;
- remoteInfo = UU_Ent;
- };
- 99C6FE6822768B5C00C7070A /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 99C6FE3C22768B5B00C7070A /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 99C6FE4322768B5B00C7070A;
- remoteInfo = UU_Ent;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXFileReference section */
- 102F3AF440E73FF2A1EB3208 /* libPods-UU_EntTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-UU_EntTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- 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>"; };
- 27029BC52276A23400D53A94 /* YRLoginVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRLoginVC.h; sourceTree = "<group>"; };
- 27029BC62276A23400D53A94 /* YRLoginVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRLoginVC.m; sourceTree = "<group>"; };
- 27029BCA2277063F00D53A94 /* UIColor+HexColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+HexColor.h"; sourceTree = "<group>"; };
- 27029BCB2277063F00D53A94 /* UIColor+HexColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+HexColor.m"; sourceTree = "<group>"; };
- 27029BCE227709CC00D53A94 /* UIButton+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Layout.m"; sourceTree = "<group>"; };
- 27029BCF227709CC00D53A94 /* UIButton+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Layout.h"; sourceTree = "<group>"; };
- 27029BD12277E16300D53A94 /* YRButton.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRButton.h; sourceTree = "<group>"; };
- 27029BD22277E16300D53A94 /* YRButton.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRButton.m; sourceTree = "<group>"; };
- 270E6C952282B72D008B12B9 /* YRSettingVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRSettingVC.h; sourceTree = "<group>"; };
- 270E6C962282B72D008B12B9 /* YRSettingVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRSettingVC.m; sourceTree = "<group>"; };
- 270E6C992282E6CF008B12B9 /* UINavigationController+safe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+safe.h"; sourceTree = "<group>"; };
- 270E6C9A2282E6D0008B12B9 /* UINavigationController+safe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+safe.m"; sourceTree = "<group>"; };
- 2710E65322801B7E0002A4B0 /* YRRegisterVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRRegisterVC.h; sourceTree = "<group>"; };
- 2710E65422801B7E0002A4B0 /* YRRegisterVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRRegisterVC.m; sourceTree = "<group>"; };
- 2710E65622801B930002A4B0 /* YRPwdLevelView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = YRPwdLevelView.h; path = UU_Ent/Modules/Login/Main/Views/YRPwdLevelView.h; sourceTree = SOURCE_ROOT; };
- 2710E65722801B930002A4B0 /* YRPwdLevelView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = YRPwdLevelView.m; path = UU_Ent/Modules/Login/Main/Views/YRPwdLevelView.m; sourceTree = SOURCE_ROOT; };
- 2710E65B22801E330002A4B0 /* LeftViewTF.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LeftViewTF.h; sourceTree = "<group>"; };
- 2710E65C22801E330002A4B0 /* LeftViewTF.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LeftViewTF.m; sourceTree = "<group>"; };
- 2710E65E22801ED10002A4B0 /* YRShowMessageFromNavi.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRShowMessageFromNavi.h; sourceTree = "<group>"; };
- 2710E65F22801ED10002A4B0 /* YRShowMessageFromNavi.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRShowMessageFromNavi.m; sourceTree = "<group>"; };
- 2710E66322815DCF0002A4B0 /* YRMineCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMineCell.h; sourceTree = "<group>"; };
- 2710E66422815DCF0002A4B0 /* YRMineCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMineCell.m; sourceTree = "<group>"; };
- 2710E66622815E030002A4B0 /* YRMineModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMineModel.h; sourceTree = "<group>"; };
- 2710E66722815E030002A4B0 /* YRMineModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMineModel.m; sourceTree = "<group>"; };
- 2710E669228166990002A4B0 /* mine_route.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = mine_route.json; sourceTree = "<group>"; };
- 2710E66C2281746E0002A4B0 /* UIPopoverListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIPopoverListView.h; sourceTree = "<group>"; };
- 2710E66D2281746E0002A4B0 /* UIPopoverListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UIPopoverListView.m; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- 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>"; };
- 991C1462228275B70080B54A /* YRLoginManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRLoginManager.h; sourceTree = "<group>"; };
- 991C1463228275B70080B54A /* YRLoginManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRLoginManager.m; sourceTree = "<group>"; };
- 991C14692282D85F0080B54A /* GTMBase64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMBase64.h; sourceTree = "<group>"; };
- 991C146A2282D85F0080B54A /* GTMBase64.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GTMBase64.m; sourceTree = "<group>"; };
- 991C146B2282D85F0080B54A /* GTMDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GTMDefines.h; sourceTree = "<group>"; };
- 991C146D2282D88F0080B54A /* NSString+secri.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+secri.h"; sourceTree = "<group>"; };
- 991C146E2282D88F0080B54A /* NSString+secri.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+secri.m"; sourceTree = "<group>"; };
- 991C14702282D89C0080B54A /* RSA.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSA.m; sourceTree = "<group>"; };
- 991C14712282D89C0080B54A /* RSA.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSA.h; sourceTree = "<group>"; };
- 991C14722282D89C0080B54A /* priva.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = priva.txt; sourceTree = "<group>"; };
- 991C14732282D89C0080B54A /* publi.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = publi.txt; sourceTree = "<group>"; };
- 994817112278281F007C7CEA /* macro.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = macro.h; sourceTree = "<group>"; };
- 994817122278290A007C7CEA /* import.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = import.h; sourceTree = "<group>"; };
- 9948171322783494007C7CEA /* msg_route.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = msg_route.json; sourceTree = "<group>"; };
- 9948171522785013007C7CEA /* YRWorkTabCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWorkTabCell.h; sourceTree = "<group>"; };
- 9948171622785013007C7CEA /* YRWorkTabCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWorkTabCell.m; sourceTree = "<group>"; };
- 9948171822785044007C7CEA /* YRWorkCollCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWorkCollCell.h; sourceTree = "<group>"; };
- 9948171922785044007C7CEA /* YRWorkCollCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWorkCollCell.m; sourceTree = "<group>"; };
- 999F650E227E658E00329012 /* UIView+frame.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+frame.h"; sourceTree = "<group>"; };
- 999F650F227E658E00329012 /* UIView+frame.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+frame.m"; sourceTree = "<group>"; };
- 999F6511227E664C00329012 /* UIImageView+userId.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIImageView+userId.h"; sourceTree = "<group>"; };
- 999F6512227E664C00329012 /* UIImageView+userId.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+userId.m"; sourceTree = "<group>"; };
- 999F6514227E688600329012 /* UIView+selector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+selector.h"; sourceTree = "<group>"; };
- 999F6515227E688600329012 /* UIView+selector.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+selector.m"; sourceTree = "<group>"; };
- 999F6518227E697D00329012 /* UILabel+vertical.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UILabel+vertical.h"; sourceTree = "<group>"; };
- 999F6519227E697D00329012 /* UILabel+vertical.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UILabel+vertical.m"; sourceTree = "<group>"; };
- 999F651C227E6A6000329012 /* NSString+regular.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+regular.h"; sourceTree = "<group>"; };
- 999F651D227E6A6000329012 /* NSString+regular.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSString+regular.m"; sourceTree = "<group>"; };
- 99B4252D22815E2900DAE304 /* YRAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRAlertView.h; sourceTree = "<group>"; };
- 99B4252E22815E2900DAE304 /* YRAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRAlertView.m; sourceTree = "<group>"; };
- 99C1633E227FD24E002ED79D /* YRWorkConModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWorkConModel.h; sourceTree = "<group>"; };
- 99C1633F227FD24E002ED79D /* YRWorkConModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWorkConModel.m; sourceTree = "<group>"; };
- 99C16341227FDE64002ED79D /* work_route.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = work_route.json; sourceTree = "<group>"; };
- 99C16343228027C8002ED79D /* YRMsgHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMsgHeader.h; sourceTree = "<group>"; };
- 99C16344228027C8002ED79D /* YRMsgHeader.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMsgHeader.m; sourceTree = "<group>"; };
- 99C6FE4422768B5B00C7070A /* UU_Ent.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = UU_Ent.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 99C6FE5C22768B5C00C7070A /* UU_EntTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UU_EntTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 99C6FE6022768B5C00C7070A /* UU_EntTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UU_EntTests.m; sourceTree = "<group>"; };
- 99C6FE6222768B5C00C7070A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 99C6FE6722768B5C00C7070A /* UU_EntUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = UU_EntUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 99C6FE6B22768B5C00C7070A /* UU_EntUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UU_EntUITests.m; sourceTree = "<group>"; };
- 99C6FE6D22768B5C00C7070A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 99C6FE7D22768EC000C7070A /* AppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
- 99C6FE7E22768EC000C7070A /* AppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
- 99C6FE8722768EC000C7070A /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- 99C6FE8A22768EC000C7070A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- 99C6FE8B22768EC000C7070A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 99C6FE94227690BE00C7070A /* YRBaseVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRBaseVC.h; sourceTree = "<group>"; };
- 99C6FE95227690BE00C7070A /* YRBaseVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRBaseVC.m; sourceTree = "<group>"; };
- 99C6FE97227690F800C7070A /* YRBaseNav.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRBaseNav.h; sourceTree = "<group>"; };
- 99C6FE98227690F800C7070A /* YRBaseNav.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRBaseNav.m; sourceTree = "<group>"; };
- 99C6FEB82276950C00C7070A /* YRMainVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMainVC.h; sourceTree = "<group>"; };
- 99C6FEB92276950C00C7070A /* YRMainVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMainVC.m; sourceTree = "<group>"; };
- 99C6FEBE2276957400C7070A /* YRMineVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMineVC.h; sourceTree = "<group>"; };
- 99C6FEBF2276957400C7070A /* YRMineVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMineVC.m; sourceTree = "<group>"; };
- 99C6FEC12276959B00C7070A /* YRWorkVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWorkVC.h; sourceTree = "<group>"; };
- 99C6FEC22276959B00C7070A /* YRWorkVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWorkVC.m; sourceTree = "<group>"; };
- 99C6FEC62276966600C7070A /* YRWebVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRWebVC.h; sourceTree = "<group>"; };
- 99C6FEC72276966600C7070A /* YRWebVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRWebVC.m; sourceTree = "<group>"; };
- 99C6FEC9227696CA00C7070A /* YRMsgVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMsgVC.h; sourceTree = "<group>"; };
- 99C6FECA227696CA00C7070A /* YRMsgVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMsgVC.m; sourceTree = "<group>"; };
- 99C6FECC227697DA00C7070A /* YRContactVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRContactVC.h; sourceTree = "<group>"; };
- 99C6FECD227697DA00C7070A /* YRContactVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRContactVC.m; sourceTree = "<group>"; };
- 99C6FECF2276982F00C7070A /* YRTabBar.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRTabBar.h; sourceTree = "<group>"; };
- 99C6FED02276982F00C7070A /* YRTabBar.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRTabBar.m; sourceTree = "<group>"; };
- 99C6FF122276A58900C7070A /* UU_Ent.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UU_Ent.pch; sourceTree = "<group>"; };
- 99C6FF132276C90E00C7070A /* libMasonry.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; path = libMasonry.a; sourceTree = BUILT_PRODUCTS_DIR; };
- 99C6FF152276D13500C7070A /* YRUserInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRUserInfo.h; sourceTree = "<group>"; };
- 99C6FF162276D13500C7070A /* YRUserInfo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRUserInfo.m; sourceTree = "<group>"; };
- 99C6FF192276DD3900C7070A /* YRTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRTableView.h; sourceTree = "<group>"; };
- 99C6FF1A2276DD3900C7070A /* YRTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRTableView.m; sourceTree = "<group>"; };
- 99C6FF1D2276DF2700C7070A /* common.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = common.h; sourceTree = "<group>"; };
- 99C6FF212276E4C000C7070A /* YRMsgMainCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRMsgMainCell.h; sourceTree = "<group>"; };
- 99C6FF222276E4C000C7070A /* YRMsgMainCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRMsgMainCell.m; sourceTree = "<group>"; };
- 99C6FF242276FAE000C7070A /* YRMsgMainModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YRMsgMainModel.m; sourceTree = "<group>"; };
- 99C6FF252276FAE000C7070A /* YRMsgMainModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YRMsgMainModel.h; sourceTree = "<group>"; };
- 99F4A73B2277D1B8009AA6ED /* YRLoadImgCacheTool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRLoadImgCacheTool.h; sourceTree = "<group>"; };
- 99F4A73C2277D1B8009AA6ED /* YRLoadImgCacheTool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRLoadImgCacheTool.m; sourceTree = "<group>"; };
- 99F4A73E2277D2DF009AA6ED /* YRLoadingVC.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRLoadingVC.h; sourceTree = "<group>"; };
- 99F4A73F2277D2DF009AA6ED /* YRLoadingVC.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRLoadingVC.m; sourceTree = "<group>"; };
- 99F4A7412277D332009AA6ED /* YRCountDownView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRCountDownView.h; sourceTree = "<group>"; };
- 99F4A7422277D332009AA6ED /* YRCountDownView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRCountDownView.m; sourceTree = "<group>"; };
- 99F4A7442277D503009AA6ED /* YRAdView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YRAdView.h; sourceTree = "<group>"; };
- 99F4A7452277D503009AA6ED /* YRAdView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = YRAdView.m; sourceTree = "<group>"; };
- 99F4A7C82277D83B009AA6ED /* loading48.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading48.png; sourceTree = "<group>"; };
- 99F4A7C92277D83B009AA6ED /* loading29.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading29.png; sourceTree = "<group>"; };
- 99F4A7CA2277D83B009AA6ED /* loading32.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading32.png; sourceTree = "<group>"; };
- 99F4A7CB2277D83B009AA6ED /* loading50.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading50.png; sourceTree = "<group>"; };
- 99F4A7CC2277D83C009AA6ED /* loading27.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading27.png; sourceTree = "<group>"; };
- 99F4A7CD2277D83C009AA6ED /* loading53.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading53.png; sourceTree = "<group>"; };
- 99F4A7CE2277D83C009AA6ED /* loading60.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading60.png; sourceTree = "<group>"; };
- 99F4A7CF2277D83C009AA6ED /* loading44.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading44.png; sourceTree = "<group>"; };
- 99F4A7D02277D83C009AA6ED /* loading24.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading24.png; sourceTree = "<group>"; };
- 99F4A7D12277D83C009AA6ED /* loading33.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading33.png; sourceTree = "<group>"; };
- 99F4A7D22277D83C009AA6ED /* loading25.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading25.png; sourceTree = "<group>"; };
- 99F4A7D32277D83D009AA6ED /* loading42.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading42.png; sourceTree = "<group>"; };
- 99F4A7D42277D83D009AA6ED /* loading30.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading30.png; sourceTree = "<group>"; };
- 99F4A7D52277D83D009AA6ED /* loading31.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading31.png; sourceTree = "<group>"; };
- 99F4A7D62277D83D009AA6ED /* loading63.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading63.png; sourceTree = "<group>"; };
- 99F4A7D72277D83D009AA6ED /* loading46.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading46.png; sourceTree = "<group>"; };
- 99F4A7D82277D83D009AA6ED /* loading20.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading20.png; sourceTree = "<group>"; };
- 99F4A7D92277D83D009AA6ED /* loading1.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading1.png; sourceTree = "<group>"; };
- 99F4A7DA2277D83E009AA6ED /* loading18.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading18.png; sourceTree = "<group>"; };
- 99F4A7DB2277D83E009AA6ED /* loading7.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading7.png; sourceTree = "<group>"; };
- 99F4A7DC2277D83E009AA6ED /* loading8.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading8.png; sourceTree = "<group>"; };
- 99F4A7DD2277D83E009AA6ED /* loading10.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading10.png; sourceTree = "<group>"; };
- 99F4A7DE2277D83E009AA6ED /* loading57.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading57.png; sourceTree = "<group>"; };
- 99F4A7DF2277D83E009AA6ED /* loading12.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading12.png; sourceTree = "<group>"; };
- 99F4A7E02277D83E009AA6ED /* loading54.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading54.png; sourceTree = "<group>"; };
- 99F4A7E12277D83F009AA6ED /* loading3.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading3.png; sourceTree = "<group>"; };
- 99F4A7E22277D83F009AA6ED /* loading55.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading55.png; sourceTree = "<group>"; };
- 99F4A7E32277D83F009AA6ED /* loading59.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading59.png; sourceTree = "<group>"; };
- 99F4A7E42277D83F009AA6ED /* loading35.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading35.png; sourceTree = "<group>"; };
- 99F4A7E52277D83F009AA6ED /* loading14.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading14.png; sourceTree = "<group>"; };
- 99F4A7E62277D83F009AA6ED /* loading22.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading22.png; sourceTree = "<group>"; };
- 99F4A7E72277D83F009AA6ED /* loading38.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading38.png; sourceTree = "<group>"; };
- 99F4A7E82277D840009AA6ED /* loading34.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading34.png; sourceTree = "<group>"; };
- 99F4A7E92277D840009AA6ED /* loading13.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading13.png; sourceTree = "<group>"; };
- 99F4A7EA2277D840009AA6ED /* loading49.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading49.png; sourceTree = "<group>"; };
- 99F4A7EB2277D840009AA6ED /* loading19.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading19.png; sourceTree = "<group>"; };
- 99F4A7EC2277D840009AA6ED /* loading41.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading41.png; sourceTree = "<group>"; };
- 99F4A7ED2277D840009AA6ED /* loading9.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading9.png; sourceTree = "<group>"; };
- 99F4A7EE2277D840009AA6ED /* loading39.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading39.png; sourceTree = "<group>"; };
- 99F4A7EF2277D840009AA6ED /* loading28.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading28.png; sourceTree = "<group>"; };
- 99F4A7F02277D840009AA6ED /* loading62.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading62.png; sourceTree = "<group>"; };
- 99F4A7F12277D841009AA6ED /* loading40.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading40.png; sourceTree = "<group>"; };
- 99F4A7F22277D841009AA6ED /* loading15.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading15.png; sourceTree = "<group>"; };
- 99F4A7F32277D841009AA6ED /* loading11.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading11.png; sourceTree = "<group>"; };
- 99F4A7F42277D841009AA6ED /* loading47.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading47.png; sourceTree = "<group>"; };
- 99F4A7F52277D841009AA6ED /* loading36.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading36.png; sourceTree = "<group>"; };
- 99F4A7F62277D841009AA6ED /* loading17.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading17.png; sourceTree = "<group>"; };
- 99F4A7F72277D842009AA6ED /* loading45.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading45.png; sourceTree = "<group>"; };
- 99F4A7F82277D842009AA6ED /* loading4.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading4.png; sourceTree = "<group>"; };
- 99F4A7F92277D842009AA6ED /* loading2.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading2.png; sourceTree = "<group>"; };
- 99F4A7FA2277D842009AA6ED /* loading0.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading0.png; sourceTree = "<group>"; };
- 99F4A7FB2277D842009AA6ED /* loading56.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading56.png; sourceTree = "<group>"; };
- 99F4A7FC2277D842009AA6ED /* loading21.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading21.png; sourceTree = "<group>"; };
- 99F4A7FD2277D842009AA6ED /* loading5.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading5.png; sourceTree = "<group>"; };
- 99F4A7FE2277D843009AA6ED /* loading23.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading23.png; sourceTree = "<group>"; };
- 99F4A7FF2277D843009AA6ED /* loading52.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading52.png; sourceTree = "<group>"; };
- 99F4A8002277D843009AA6ED /* loading61.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading61.png; sourceTree = "<group>"; };
- 99F4A8012277D843009AA6ED /* loading37.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading37.png; sourceTree = "<group>"; };
- 99F4A8022277D843009AA6ED /* loading58.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading58.png; sourceTree = "<group>"; };
- 99F4A8032277D843009AA6ED /* loading26.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading26.png; sourceTree = "<group>"; };
- 99F4A8042277D844009AA6ED /* loading16.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading16.png; sourceTree = "<group>"; };
- 99F4A8052277D844009AA6ED /* loading51.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading51.png; sourceTree = "<group>"; };
- 99F4A8062277D844009AA6ED /* loading43.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading43.png; sourceTree = "<group>"; };
- 99F4A8072277D844009AA6ED /* loading6.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = loading6.png; sourceTree = "<group>"; };
- 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>"; };
- 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>"; };
- F21F3925C5D7942C9E06A9B7 /* libPods-UU_Ent.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-UU_Ent.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- F4F857DEEC69AEDCFACDFD51 /* libPods-UU_EntUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-UU_EntUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 99C6FE4122768B5B00C7070A /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C2FE1204E87AA4AC2511A808 /* libPods-UU_Ent.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 99C6FE5922768B5C00C7070A /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- F135D5FAC9D7DD2641DAF236 /* libPods-UU_EntTests.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 99C6FE6422768B5C00C7070A /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 3FE47A8D89A70D18F98B1E41 /* libPods-UU_EntUITests.a in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 27029BC9227705DB00D53A94 /* UIColor */ = {
- isa = PBXGroup;
- children = (
- 27029BCA2277063F00D53A94 /* UIColor+HexColor.h */,
- 27029BCB2277063F00D53A94 /* UIColor+HexColor.m */,
- );
- path = UIColor;
- sourceTree = "<group>";
- };
- 27029BCD227709A700D53A94 /* UIButton */ = {
- isa = PBXGroup;
- children = (
- 27029BCF227709CC00D53A94 /* UIButton+Layout.h */,
- 27029BCE227709CC00D53A94 /* UIButton+Layout.m */,
- 27029BD12277E16300D53A94 /* YRButton.h */,
- 27029BD22277E16300D53A94 /* YRButton.m */,
- );
- path = UIButton;
- sourceTree = "<group>";
- };
- 270E6C902282B6A5008B12B9 /* Child */ = {
- isa = PBXGroup;
- children = (
- 270E6C982282D39E008B12B9 /* Setting */,
- );
- path = Child;
- sourceTree = "<group>";
- };
- 270E6C912282B6F5008B12B9 /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 270E6C952282B72D008B12B9 /* YRSettingVC.h */,
- 270E6C962282B72D008B12B9 /* YRSettingVC.m */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 270E6C922282B6FE008B12B9 /* Models */ = {
- isa = PBXGroup;
- children = (
- );
- path = Models;
- sourceTree = "<group>";
- };
- 270E6C932282B705008B12B9 /* Others */ = {
- isa = PBXGroup;
- children = (
- );
- path = Others;
- sourceTree = "<group>";
- };
- 270E6C942282B70C008B12B9 /* Views */ = {
- isa = PBXGroup;
- children = (
- );
- path = Views;
- sourceTree = "<group>";
- };
- 270E6C982282D39E008B12B9 /* Setting */ = {
- isa = PBXGroup;
- children = (
- 270E6C912282B6F5008B12B9 /* Controllers */,
- 270E6C922282B6FE008B12B9 /* Models */,
- 270E6C942282B70C008B12B9 /* Views */,
- 270E6C932282B705008B12B9 /* Others */,
- );
- path = Setting;
- sourceTree = "<group>";
- };
- 2710E65922801D760002A4B0 /* UITextField */ = {
- isa = PBXGroup;
- children = (
- 2710E65B22801E330002A4B0 /* LeftViewTF.h */,
- 2710E65C22801E330002A4B0 /* LeftViewTF.m */,
- );
- path = UITextField;
- sourceTree = "<group>";
- };
- 2710E65A22801D870002A4B0 /* UINavigation */ = {
- isa = PBXGroup;
- children = (
- 270E6C992282E6CF008B12B9 /* UINavigationController+safe.h */,
- 270E6C9A2282E6D0008B12B9 /* UINavigationController+safe.m */,
- 2710E65E22801ED10002A4B0 /* YRShowMessageFromNavi.h */,
- 2710E65F22801ED10002A4B0 /* YRShowMessageFromNavi.m */,
- );
- path = UINavigation;
- sourceTree = "<group>";
- };
- 2710E66122815DAD0002A4B0 /* Models */ = {
- isa = PBXGroup;
- children = (
- 2710E66622815E030002A4B0 /* YRMineModel.h */,
- 2710E66722815E030002A4B0 /* YRMineModel.m */,
- );
- path = Models;
- sourceTree = "<group>";
- };
- 2710E66222815DB90002A4B0 /* Views */ = {
- isa = PBXGroup;
- children = (
- 2710E66322815DCF0002A4B0 /* YRMineCell.h */,
- 2710E66422815DCF0002A4B0 /* YRMineCell.m */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 2710E66B2281744C0002A4B0 /* UIPopoverListView */ = {
- isa = PBXGroup;
- children = (
- 2710E66C2281746E0002A4B0 /* UIPopoverListView.h */,
- 2710E66D2281746E0002A4B0 /* UIPopoverListView.m */,
- );
- path = UIPopoverListView;
- sourceTree = "<group>";
- };
- 2710E66F228175140002A4B0 /* Views */ = {
- isa = PBXGroup;
- children = (
- 2710E65622801B930002A4B0 /* YRPwdLevelView.h */,
- 2710E65722801B930002A4B0 /* YRPwdLevelView.m */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 2710E670228175280002A4B0 /* Models */ = {
- isa = PBXGroup;
- children = (
- );
- path = Models;
- sourceTree = "<group>";
- };
- 2710E671228175390002A4B0 /* Others */ = {
- isa = PBXGroup;
- children = (
- 991C1462228275B70080B54A /* YRLoginManager.h */,
- 991C1463228275B70080B54A /* YRLoginManager.m */,
- );
- path = Others;
- sourceTree = "<group>";
- };
- 991C14652282D8100080B54A /* encode */ = {
- isa = PBXGroup;
- children = (
- 991C14662282D8100080B54A /* GTMBase64 */,
- 991C14672282D8100080B54A /* RSA */,
- 991C14682282D8100080B54A /* NSString+secri */,
- );
- path = encode;
- sourceTree = "<group>";
- };
- 991C14662282D8100080B54A /* GTMBase64 */ = {
- isa = PBXGroup;
- children = (
- 991C14692282D85F0080B54A /* GTMBase64.h */,
- 991C146A2282D85F0080B54A /* GTMBase64.m */,
- 991C146B2282D85F0080B54A /* GTMDefines.h */,
- );
- path = GTMBase64;
- sourceTree = "<group>";
- };
- 991C14672282D8100080B54A /* RSA */ = {
- isa = PBXGroup;
- children = (
- 991C14722282D89C0080B54A /* priva.txt */,
- 991C14732282D89C0080B54A /* publi.txt */,
- 991C14712282D89C0080B54A /* RSA.h */,
- 991C14702282D89C0080B54A /* RSA.m */,
- );
- path = RSA;
- sourceTree = "<group>";
- };
- 991C14682282D8100080B54A /* NSString+secri */ = {
- isa = PBXGroup;
- children = (
- 991C146D2282D88F0080B54A /* NSString+secri.h */,
- 991C146E2282D88F0080B54A /* NSString+secri.m */,
- );
- path = "NSString+secri";
- sourceTree = "<group>";
- };
- 999F650C227E656B00329012 /* UIView */ = {
- isa = PBXGroup;
- children = (
- 999F650E227E658E00329012 /* UIView+frame.h */,
- 999F650F227E658E00329012 /* UIView+frame.m */,
- 999F6514227E688600329012 /* UIView+selector.h */,
- 999F6515227E688600329012 /* UIView+selector.m */,
- );
- path = UIView;
- sourceTree = "<group>";
- };
- 999F650D227E656B00329012 /* UIImageView */ = {
- isa = PBXGroup;
- children = (
- 999F6511227E664C00329012 /* UIImageView+userId.h */,
- 999F6512227E664C00329012 /* UIImageView+userId.m */,
- );
- path = UIImageView;
- sourceTree = "<group>";
- };
- 999F6517227E696900329012 /* UILabel */ = {
- isa = PBXGroup;
- children = (
- 999F6518227E697D00329012 /* UILabel+vertical.h */,
- 999F6519227E697D00329012 /* UILabel+vertical.m */,
- );
- path = UILabel;
- sourceTree = "<group>";
- };
- 999F651B227E6A3E00329012 /* NSString */ = {
- isa = PBXGroup;
- children = (
- 999F651C227E6A6000329012 /* NSString+regular.h */,
- 999F651D227E6A6000329012 /* NSString+regular.m */,
- );
- path = NSString;
- sourceTree = "<group>";
- };
- 99B4252C22815E0700DAE304 /* AlertView */ = {
- isa = PBXGroup;
- children = (
- 99B4252D22815E2900DAE304 /* YRAlertView.h */,
- 99B4252E22815E2900DAE304 /* YRAlertView.m */,
- );
- path = AlertView;
- sourceTree = "<group>";
- };
- 99C6FE3B22768B5B00C7070A = {
- isa = PBXGroup;
- children = (
- 99C6FE4622768B5B00C7070A /* UU_Ent */,
- 99C6FE5F22768B5C00C7070A /* UU_EntTests */,
- 99C6FE6A22768B5C00C7070A /* UU_EntUITests */,
- 99C6FE4522768B5B00C7070A /* Products */,
- DEB95212CB06CC2B2E94075E /* Pods */,
- C72D523677B19DCBAEBD26E1 /* Frameworks */,
- );
- sourceTree = "<group>";
- };
- 99C6FE4522768B5B00C7070A /* Products */ = {
- isa = PBXGroup;
- children = (
- 99C6FE4422768B5B00C7070A /* UU_Ent.app */,
- 99C6FE5C22768B5C00C7070A /* UU_EntTests.xctest */,
- 99C6FE6722768B5C00C7070A /* UU_EntUITests.xctest */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 99C6FE4622768B5B00C7070A /* UU_Ent */ = {
- isa = PBXGroup;
- children = (
- 99C6FE7B22768EC000C7070A /* Modules */,
- 99C6FE8C22768EC000C7070A /* Resources */,
- 99C6FE8622768EC000C7070A /* Supporting Files */,
- 99C6FE8E22768EC000C7070A /* ThirdLib */,
- 99C6FE8D22768EC000C7070A /* Utils */,
- );
- path = UU_Ent;
- sourceTree = "<group>";
- };
- 99C6FE5F22768B5C00C7070A /* UU_EntTests */ = {
- isa = PBXGroup;
- children = (
- 99C6FE6022768B5C00C7070A /* UU_EntTests.m */,
- 99C6FE6222768B5C00C7070A /* Info.plist */,
- );
- path = UU_EntTests;
- sourceTree = "<group>";
- };
- 99C6FE6A22768B5C00C7070A /* UU_EntUITests */ = {
- isa = PBXGroup;
- children = (
- 99C6FE6B22768B5C00C7070A /* UU_EntUITests.m */,
- 99C6FE6D22768B5C00C7070A /* Info.plist */,
- );
- path = UU_EntUITests;
- sourceTree = "<group>";
- };
- 99C6FE7B22768EC000C7070A /* Modules */ = {
- isa = PBXGroup;
- children = (
- 99F4A7352277CFDD009AA6ED /* Loading */,
- 99C6FE8522768EC000C7070A /* Base */,
- 99C6FE7C22768EC000C7070A /* App */,
- 99C6FE7F22768EC000C7070A /* Contacts */,
- 99C6FE8022768EC000C7070A /* Message */,
- 99C6FE8122768EC000C7070A /* Work */,
- 99C6FE8222768EC000C7070A /* Mine */,
- 99C6FE8322768EC000C7070A /* Main */,
- 99C6FE8422768EC000C7070A /* Login */,
- 99C6FEC42276962800C7070A /* Web */,
- );
- path = Modules;
- sourceTree = "<group>";
- };
- 99C6FE7C22768EC000C7070A /* App */ = {
- isa = PBXGroup;
- children = (
- 99C6FE7D22768EC000C7070A /* AppDelegate.h */,
- 99C6FE7E22768EC000C7070A /* AppDelegate.m */,
- );
- path = App;
- sourceTree = "<group>";
- };
- 99C6FE7F22768EC000C7070A /* Contacts */ = {
- isa = PBXGroup;
- children = (
- 99C6FE9C2276934900C7070A /* Main */,
- );
- path = Contacts;
- sourceTree = "<group>";
- };
- 99C6FE8022768EC000C7070A /* Message */ = {
- isa = PBXGroup;
- children = (
- 99C6FE9D2276935400C7070A /* Main */,
- );
- path = Message;
- sourceTree = "<group>";
- };
- 99C6FE8122768EC000C7070A /* Work */ = {
- isa = PBXGroup;
- children = (
- 99C6FE9A2276933100C7070A /* Main */,
- );
- path = Work;
- sourceTree = "<group>";
- };
- 99C6FE8222768EC000C7070A /* Mine */ = {
- isa = PBXGroup;
- children = (
- 99C6FE9B2276933F00C7070A /* Main */,
- 270E6C902282B6A5008B12B9 /* Child */,
- );
- path = Mine;
- sourceTree = "<group>";
- };
- 99C6FE8322768EC000C7070A /* Main */ = {
- isa = PBXGroup;
- children = (
- 99C6FE9E227693EB00C7070A /* Main */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99C6FE8422768EC000C7070A /* Login */ = {
- isa = PBXGroup;
- children = (
- 99C6FEA32276940600C7070A /* Main */,
- );
- path = Login;
- sourceTree = "<group>";
- };
- 99C6FE8522768EC000C7070A /* Base */ = {
- isa = PBXGroup;
- children = (
- 99C6FE94227690BE00C7070A /* YRBaseVC.h */,
- 99C6FE95227690BE00C7070A /* YRBaseVC.m */,
- 99C6FE97227690F800C7070A /* YRBaseNav.h */,
- 99C6FE98227690F800C7070A /* YRBaseNav.m */,
- );
- path = Base;
- sourceTree = "<group>";
- };
- 99C6FE8622768EC000C7070A /* Supporting Files */ = {
- isa = PBXGroup;
- children = (
- 99C6FF1C2276DF0D00C7070A /* defines */,
- 99C6FE8722768EC000C7070A /* Assets.xcassets */,
- 99C6FE8A22768EC000C7070A /* main.m */,
- 99C6FE8B22768EC000C7070A /* Info.plist */,
- 99C6FF122276A58900C7070A /* UU_Ent.pch */,
- );
- path = "Supporting Files";
- sourceTree = "<group>";
- };
- 99C6FE8C22768EC000C7070A /* Resources */ = {
- isa = PBXGroup;
- children = (
- 99F4A7472277D5B5009AA6ED /* LoadImg */,
- );
- path = Resources;
- sourceTree = "<group>";
- };
- 99C6FE8D22768EC000C7070A /* Utils */ = {
- isa = PBXGroup;
- children = (
- 991C14652282D8100080B54A /* encode */,
- 2710E66B2281744C0002A4B0 /* UIPopoverListView */,
- 99B4252C22815E0700DAE304 /* AlertView */,
- 2710E65A22801D870002A4B0 /* UINavigation */,
- 2710E65922801D760002A4B0 /* UITextField */,
- 999F651B227E6A3E00329012 /* NSString */,
- 999F6517227E696900329012 /* UILabel */,
- 999F650D227E656B00329012 /* UIImageView */,
- 999F650C227E656B00329012 /* UIView */,
- 27029BCD227709A700D53A94 /* UIButton */,
- 27029BC9227705DB00D53A94 /* UIColor */,
- 99C6FF182276DD2400C7070A /* tableView */,
- );
- path = Utils;
- sourceTree = "<group>";
- };
- 99C6FE8E22768EC000C7070A /* ThirdLib */ = {
- isa = PBXGroup;
- children = (
- );
- path = ThirdLib;
- sourceTree = "<group>";
- };
- 99C6FE9A2276933100C7070A /* Main */ = {
- isa = PBXGroup;
- children = (
- 99C6FEAF2276942900C7070A /* Controllers */,
- 99C6FEAE2276942900C7070A /* Models */,
- 99C6FEAD2276942900C7070A /* Others */,
- 99C6FEAC2276942900C7070A /* Views */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99C6FE9B2276933F00C7070A /* Main */ = {
- isa = PBXGroup;
- children = (
- 99C6FEAA2276941A00C7070A /* Controllers */,
- 2710E66122815DAD0002A4B0 /* Models */,
- 99C6FEA92276941900C7070A /* Others */,
- 2710E66222815DB90002A4B0 /* Views */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99C6FE9C2276934900C7070A /* Main */ = {
- isa = PBXGroup;
- children = (
- 99C6FEB42276944800C7070A /* Controllers */,
- 99C6FEB62276944800C7070A /* Models */,
- 99C6FEB52276944800C7070A /* Others */,
- 99C6FEB72276944800C7070A /* Views */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99C6FE9D2276935400C7070A /* Main */ = {
- isa = PBXGroup;
- children = (
- 99C6FEB32276943C00C7070A /* Controllers */,
- 99C6FEB02276943B00C7070A /* Models */,
- 99C6FEB12276943B00C7070A /* Others */,
- 99C6FEB22276943C00C7070A /* Views */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99C6FE9E227693EB00C7070A /* Main */ = {
- isa = PBXGroup;
- children = (
- 99C6FE9F227693EB00C7070A /* Others */,
- 99C6FEA0227693EB00C7070A /* Models */,
- 99C6FEA1227693EB00C7070A /* Controllers */,
- 99C6FEA2227693EB00C7070A /* Views */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99C6FE9F227693EB00C7070A /* Others */ = {
- isa = PBXGroup;
- children = (
- );
- path = Others;
- sourceTree = "<group>";
- };
- 99C6FEA0227693EB00C7070A /* Models */ = {
- isa = PBXGroup;
- children = (
- );
- path = Models;
- sourceTree = "<group>";
- };
- 99C6FEA1227693EB00C7070A /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 99C6FEB82276950C00C7070A /* YRMainVC.h */,
- 99C6FEB92276950C00C7070A /* YRMainVC.m */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 99C6FEA2227693EB00C7070A /* Views */ = {
- isa = PBXGroup;
- children = (
- 99C6FECF2276982F00C7070A /* YRTabBar.h */,
- 99C6FED02276982F00C7070A /* YRTabBar.m */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 99C6FEA32276940600C7070A /* Main */ = {
- isa = PBXGroup;
- children = (
- 2710E671228175390002A4B0 /* Others */,
- 2710E670228175280002A4B0 /* Models */,
- 2710E66F228175140002A4B0 /* Views */,
- 99C6FEA62276940600C7070A /* Controllers */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99C6FEA62276940600C7070A /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 27029BC52276A23400D53A94 /* YRLoginVC.h */,
- 27029BC62276A23400D53A94 /* YRLoginVC.m */,
- 2710E65322801B7E0002A4B0 /* YRRegisterVC.h */,
- 2710E65422801B7E0002A4B0 /* YRRegisterVC.m */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 99C6FEA92276941900C7070A /* Others */ = {
- isa = PBXGroup;
- children = (
- 2710E669228166990002A4B0 /* mine_route.json */,
- 99C6FF152276D13500C7070A /* YRUserInfo.h */,
- 99C6FF162276D13500C7070A /* YRUserInfo.m */,
- );
- path = Others;
- sourceTree = "<group>";
- };
- 99C6FEAA2276941A00C7070A /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 99C6FEBE2276957400C7070A /* YRMineVC.h */,
- 99C6FEBF2276957400C7070A /* YRMineVC.m */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 99C6FEAC2276942900C7070A /* Views */ = {
- isa = PBXGroup;
- children = (
- 9948171522785013007C7CEA /* YRWorkTabCell.h */,
- 9948171622785013007C7CEA /* YRWorkTabCell.m */,
- 9948171822785044007C7CEA /* YRWorkCollCell.h */,
- 9948171922785044007C7CEA /* YRWorkCollCell.m */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 99C6FEAD2276942900C7070A /* Others */ = {
- isa = PBXGroup;
- children = (
- 99C16341227FDE64002ED79D /* work_route.json */,
- );
- path = Others;
- sourceTree = "<group>";
- };
- 99C6FEAE2276942900C7070A /* Models */ = {
- isa = PBXGroup;
- children = (
- 99C1633E227FD24E002ED79D /* YRWorkConModel.h */,
- 99C1633F227FD24E002ED79D /* YRWorkConModel.m */,
- );
- path = Models;
- sourceTree = "<group>";
- };
- 99C6FEAF2276942900C7070A /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 99C6FEC12276959B00C7070A /* YRWorkVC.h */,
- 99C6FEC22276959B00C7070A /* YRWorkVC.m */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 99C6FEB02276943B00C7070A /* Models */ = {
- isa = PBXGroup;
- children = (
- 99C6FF252276FAE000C7070A /* YRMsgMainModel.h */,
- 99C6FF242276FAE000C7070A /* YRMsgMainModel.m */,
- );
- path = Models;
- sourceTree = "<group>";
- };
- 99C6FEB12276943B00C7070A /* Others */ = {
- isa = PBXGroup;
- children = (
- 9948171322783494007C7CEA /* msg_route.json */,
- );
- path = Others;
- sourceTree = "<group>";
- };
- 99C6FEB22276943C00C7070A /* Views */ = {
- isa = PBXGroup;
- children = (
- 99C6FF212276E4C000C7070A /* YRMsgMainCell.h */,
- 99C6FF222276E4C000C7070A /* YRMsgMainCell.m */,
- 99C16343228027C8002ED79D /* YRMsgHeader.h */,
- 99C16344228027C8002ED79D /* YRMsgHeader.m */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 99C6FEB32276943C00C7070A /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 99C6FEC9227696CA00C7070A /* YRMsgVC.h */,
- 99C6FECA227696CA00C7070A /* YRMsgVC.m */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 99C6FEB42276944800C7070A /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 99C6FECC227697DA00C7070A /* YRContactVC.h */,
- 99C6FECD227697DA00C7070A /* YRContactVC.m */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 99C6FEB52276944800C7070A /* Others */ = {
- isa = PBXGroup;
- children = (
- );
- path = Others;
- sourceTree = "<group>";
- };
- 99C6FEB62276944800C7070A /* Models */ = {
- isa = PBXGroup;
- children = (
- );
- path = Models;
- sourceTree = "<group>";
- };
- 99C6FEB72276944800C7070A /* Views */ = {
- isa = PBXGroup;
- children = (
- );
- path = Views;
- sourceTree = "<group>";
- };
- 99C6FEC42276962800C7070A /* Web */ = {
- isa = PBXGroup;
- children = (
- 99C6FEC52276965200C7070A /* Main */,
- );
- name = Web;
- path = UU_Ent/Modules/Web;
- sourceTree = SOURCE_ROOT;
- };
- 99C6FEC52276965200C7070A /* Main */ = {
- isa = PBXGroup;
- children = (
- 99C6FEC62276966600C7070A /* YRWebVC.h */,
- 99C6FEC72276966600C7070A /* YRWebVC.m */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99C6FF182276DD2400C7070A /* tableView */ = {
- isa = PBXGroup;
- children = (
- 99C6FF192276DD3900C7070A /* YRTableView.h */,
- 99C6FF1A2276DD3900C7070A /* YRTableView.m */,
- );
- path = tableView;
- sourceTree = "<group>";
- };
- 99C6FF1C2276DF0D00C7070A /* defines */ = {
- isa = PBXGroup;
- children = (
- 99C6FF1D2276DF2700C7070A /* common.h */,
- 994817112278281F007C7CEA /* macro.h */,
- 994817122278290A007C7CEA /* import.h */,
- );
- path = defines;
- sourceTree = "<group>";
- };
- 99F4A7352277CFDD009AA6ED /* Loading */ = {
- isa = PBXGroup;
- children = (
- 99F4A7362277CFDD009AA6ED /* Main */,
- );
- path = Loading;
- sourceTree = "<group>";
- };
- 99F4A7362277CFDD009AA6ED /* Main */ = {
- isa = PBXGroup;
- children = (
- 99F4A7372277CFDD009AA6ED /* Others */,
- 99F4A7382277CFDD009AA6ED /* Models */,
- 99F4A7392277CFDD009AA6ED /* Controllers */,
- 99F4A73A2277CFDD009AA6ED /* Views */,
- );
- path = Main;
- sourceTree = "<group>";
- };
- 99F4A7372277CFDD009AA6ED /* Others */ = {
- isa = PBXGroup;
- children = (
- 99F4A73B2277D1B8009AA6ED /* YRLoadImgCacheTool.h */,
- 99F4A73C2277D1B8009AA6ED /* YRLoadImgCacheTool.m */,
- );
- path = Others;
- sourceTree = "<group>";
- };
- 99F4A7382277CFDD009AA6ED /* Models */ = {
- isa = PBXGroup;
- children = (
- );
- path = Models;
- sourceTree = "<group>";
- };
- 99F4A7392277CFDD009AA6ED /* Controllers */ = {
- isa = PBXGroup;
- children = (
- 99F4A73E2277D2DF009AA6ED /* YRLoadingVC.h */,
- 99F4A73F2277D2DF009AA6ED /* YRLoadingVC.m */,
- );
- path = Controllers;
- sourceTree = "<group>";
- };
- 99F4A73A2277CFDD009AA6ED /* Views */ = {
- isa = PBXGroup;
- children = (
- 99F4A7412277D332009AA6ED /* YRCountDownView.h */,
- 99F4A7422277D332009AA6ED /* YRCountDownView.m */,
- 99F4A7442277D503009AA6ED /* YRAdView.h */,
- 99F4A7452277D503009AA6ED /* YRAdView.m */,
- );
- path = Views;
- sourceTree = "<group>";
- };
- 99F4A7472277D5B5009AA6ED /* LoadImg */ = {
- isa = PBXGroup;
- children = (
- 99F4A7FA2277D842009AA6ED /* loading0.png */,
- 99F4A7D92277D83D009AA6ED /* loading1.png */,
- 99F4A7F92277D842009AA6ED /* loading2.png */,
- 99F4A7E12277D83F009AA6ED /* loading3.png */,
- 99F4A7F82277D842009AA6ED /* loading4.png */,
- 99F4A7FD2277D842009AA6ED /* loading5.png */,
- 99F4A8072277D844009AA6ED /* loading6.png */,
- 99F4A7DB2277D83E009AA6ED /* loading7.png */,
- 99F4A7DC2277D83E009AA6ED /* loading8.png */,
- 99F4A7ED2277D840009AA6ED /* loading9.png */,
- 99F4A7DD2277D83E009AA6ED /* loading10.png */,
- 99F4A7F32277D841009AA6ED /* loading11.png */,
- 99F4A7DF2277D83E009AA6ED /* loading12.png */,
- 99F4A7E92277D840009AA6ED /* loading13.png */,
- 99F4A7E52277D83F009AA6ED /* loading14.png */,
- 99F4A7F22277D841009AA6ED /* loading15.png */,
- 99F4A8042277D844009AA6ED /* loading16.png */,
- 99F4A7F62277D841009AA6ED /* loading17.png */,
- 99F4A7DA2277D83E009AA6ED /* loading18.png */,
- 99F4A7EB2277D840009AA6ED /* loading19.png */,
- 99F4A7D82277D83D009AA6ED /* loading20.png */,
- 99F4A7FC2277D842009AA6ED /* loading21.png */,
- 99F4A7E62277D83F009AA6ED /* loading22.png */,
- 99F4A7FE2277D843009AA6ED /* loading23.png */,
- 99F4A7D02277D83C009AA6ED /* loading24.png */,
- 99F4A7D22277D83C009AA6ED /* loading25.png */,
- 99F4A8032277D843009AA6ED /* loading26.png */,
- 99F4A7CC2277D83C009AA6ED /* loading27.png */,
- 99F4A7EF2277D840009AA6ED /* loading28.png */,
- 99F4A7C92277D83B009AA6ED /* loading29.png */,
- 99F4A7D42277D83D009AA6ED /* loading30.png */,
- 99F4A7D52277D83D009AA6ED /* loading31.png */,
- 99F4A7CA2277D83B009AA6ED /* loading32.png */,
- 99F4A7D12277D83C009AA6ED /* loading33.png */,
- 99F4A7E82277D840009AA6ED /* loading34.png */,
- 99F4A7E42277D83F009AA6ED /* loading35.png */,
- 99F4A7F52277D841009AA6ED /* loading36.png */,
- 99F4A8012277D843009AA6ED /* loading37.png */,
- 99F4A7E72277D83F009AA6ED /* loading38.png */,
- 99F4A7EE2277D840009AA6ED /* loading39.png */,
- 99F4A7F12277D841009AA6ED /* loading40.png */,
- 99F4A7EC2277D840009AA6ED /* loading41.png */,
- 99F4A7D32277D83D009AA6ED /* loading42.png */,
- 99F4A8062277D844009AA6ED /* loading43.png */,
- 99F4A7CF2277D83C009AA6ED /* loading44.png */,
- 99F4A7F72277D842009AA6ED /* loading45.png */,
- 99F4A7D72277D83D009AA6ED /* loading46.png */,
- 99F4A7F42277D841009AA6ED /* loading47.png */,
- 99F4A7C82277D83B009AA6ED /* loading48.png */,
- 99F4A7EA2277D840009AA6ED /* loading49.png */,
- 99F4A7CB2277D83B009AA6ED /* loading50.png */,
- 99F4A8052277D844009AA6ED /* loading51.png */,
- 99F4A7FF2277D843009AA6ED /* loading52.png */,
- 99F4A7CD2277D83C009AA6ED /* loading53.png */,
- 99F4A7E02277D83E009AA6ED /* loading54.png */,
- 99F4A7E22277D83F009AA6ED /* loading55.png */,
- 99F4A7FB2277D842009AA6ED /* loading56.png */,
- 99F4A7DE2277D83E009AA6ED /* loading57.png */,
- 99F4A8022277D843009AA6ED /* loading58.png */,
- 99F4A7E32277D83F009AA6ED /* loading59.png */,
- 99F4A7CE2277D83C009AA6ED /* loading60.png */,
- 99F4A8002277D843009AA6ED /* loading61.png */,
- 99F4A7F02277D840009AA6ED /* loading62.png */,
- 99F4A7D62277D83D009AA6ED /* loading63.png */,
- );
- path = LoadImg;
- sourceTree = "<group>";
- };
- C72D523677B19DCBAEBD26E1 /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 99C6FF132276C90E00C7070A /* libMasonry.a */,
- F21F3925C5D7942C9E06A9B7 /* libPods-UU_Ent.a */,
- 102F3AF440E73FF2A1EB3208 /* libPods-UU_EntTests.a */,
- F4F857DEEC69AEDCFACDFD51 /* libPods-UU_EntUITests.a */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- DEB95212CB06CC2B2E94075E /* Pods */ = {
- isa = PBXGroup;
- children = (
- 71B4DF45C8EC3368ACFC4193 /* Pods-UU_Ent.debug.xcconfig */,
- 13A4F2D13DACD5857BD40BDE /* Pods-UU_Ent.release.xcconfig */,
- DA26F5F8909B0156F0F3EC26 /* Pods-UU_EntTests.debug.xcconfig */,
- 49A8B37D50A80EFFD84620EC /* Pods-UU_EntTests.release.xcconfig */,
- B5220A6F4D02F3A377D1E1D6 /* Pods-UU_EntUITests.debug.xcconfig */,
- 49D3F089EECE8E3EDF7D2E1C /* Pods-UU_EntUITests.release.xcconfig */,
- );
- name = Pods;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 99C6FE4322768B5B00C7070A /* UU_Ent */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 99C6FE7022768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_Ent" */;
- buildPhases = (
- 090EEC0300D50242E42AF186 /* [CP] Check Pods Manifest.lock */,
- 99C6FE4022768B5B00C7070A /* Sources */,
- 99C6FE4122768B5B00C7070A /* Frameworks */,
- 99C6FE4222768B5B00C7070A /* Resources */,
- 79C55E5CC58E2B8BA0FAD00C /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = UU_Ent;
- productName = UU_Ent;
- productReference = 99C6FE4422768B5B00C7070A /* UU_Ent.app */;
- productType = "com.apple.product-type.application";
- };
- 99C6FE5B22768B5C00C7070A /* UU_EntTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 99C6FE7322768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_EntTests" */;
- buildPhases = (
- 448E7422669634DE3F6256F2 /* [CP] Check Pods Manifest.lock */,
- 99C6FE5822768B5C00C7070A /* Sources */,
- 99C6FE5922768B5C00C7070A /* Frameworks */,
- 99C6FE5A22768B5C00C7070A /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 99C6FE5E22768B5C00C7070A /* PBXTargetDependency */,
- );
- name = UU_EntTests;
- productName = UU_EntTests;
- productReference = 99C6FE5C22768B5C00C7070A /* UU_EntTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 99C6FE6622768B5C00C7070A /* UU_EntUITests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 99C6FE7622768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_EntUITests" */;
- buildPhases = (
- A2F6040888740937A057571A /* [CP] Check Pods Manifest.lock */,
- 99C6FE6322768B5C00C7070A /* Sources */,
- 99C6FE6422768B5C00C7070A /* Frameworks */,
- 99C6FE6522768B5C00C7070A /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 99C6FE6922768B5C00C7070A /* PBXTargetDependency */,
- );
- name = UU_EntUITests;
- productName = UU_EntUITests;
- productReference = 99C6FE6722768B5C00C7070A /* UU_EntUITests.xctest */;
- productType = "com.apple.product-type.bundle.ui-testing";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 99C6FE3C22768B5B00C7070A /* Project object */ = {
- isa = PBXProject;
- attributes = {
- CLASSPREFIX = YR;
- LastUpgradeCheck = 1020;
- ORGANIZATIONNAME = UAS;
- TargetAttributes = {
- 99C6FE4322768B5B00C7070A = {
- CreatedOnToolsVersion = 10.2.1;
- };
- 99C6FE5B22768B5C00C7070A = {
- CreatedOnToolsVersion = 10.2.1;
- TestTargetID = 99C6FE4322768B5B00C7070A;
- };
- 99C6FE6622768B5C00C7070A = {
- CreatedOnToolsVersion = 10.2.1;
- TestTargetID = 99C6FE4322768B5B00C7070A;
- };
- };
- };
- buildConfigurationList = 99C6FE3F22768B5B00C7070A /* Build configuration list for PBXProject "UU_Ent" */;
- compatibilityVersion = "Xcode 9.3";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 99C6FE3B22768B5B00C7070A;
- productRefGroup = 99C6FE4522768B5B00C7070A /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 99C6FE4322768B5B00C7070A /* UU_Ent */,
- 99C6FE5B22768B5C00C7070A /* UU_EntTests */,
- 99C6FE6622768B5C00C7070A /* UU_EntUITests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 99C6FE4222768B5B00C7070A /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 99C16342227FDE64002ED79D /* work_route.json in Resources */,
- 99F4A8432277D845009AA6ED /* loading26.png in Resources */,
- 99F4A8172277D845009AA6ED /* loading46.png in Resources */,
- 99F4A83A2277D845009AA6ED /* loading0.png in Resources */,
- 99F4A8102277D845009AA6ED /* loading24.png in Resources */,
- 991C14752282D89C0080B54A /* priva.txt in Resources */,
- 99F4A8302277D845009AA6ED /* loading62.png in Resources */,
- 99F4A8462277D845009AA6ED /* loading43.png in Resources */,
- 99F4A8262277D845009AA6ED /* loading22.png in Resources */,
- 99F4A8472277D845009AA6ED /* loading6.png in Resources */,
- 99F4A81E2277D845009AA6ED /* loading57.png in Resources */,
- 99F4A8082277D844009AA6ED /* loading48.png in Resources */,
- 99F4A8272277D845009AA6ED /* loading38.png in Resources */,
- 99F4A82B2277D845009AA6ED /* loading19.png in Resources */,
- 99F4A8132277D845009AA6ED /* loading42.png in Resources */,
- 2710E66A228166990002A4B0 /* mine_route.json in Resources */,
- 99F4A8142277D845009AA6ED /* loading30.png in Resources */,
- 99F4A8412277D845009AA6ED /* loading37.png in Resources */,
- 99F4A8252277D845009AA6ED /* loading14.png in Resources */,
- 99F4A8332277D845009AA6ED /* loading11.png in Resources */,
- 99F4A82E2277D845009AA6ED /* loading39.png in Resources */,
- 99F4A81B2277D845009AA6ED /* loading7.png in Resources */,
- 99F4A8112277D845009AA6ED /* loading33.png in Resources */,
- 99F4A8282277D845009AA6ED /* loading34.png in Resources */,
- 99F4A8242277D845009AA6ED /* loading35.png in Resources */,
- 99F4A8382277D845009AA6ED /* loading4.png in Resources */,
- 99F4A8372277D845009AA6ED /* loading45.png in Resources */,
- 99F4A8222277D845009AA6ED /* loading55.png in Resources */,
- 99F4A8402277D845009AA6ED /* loading61.png in Resources */,
- 99F4A8212277D845009AA6ED /* loading3.png in Resources */,
- 99F4A8442277D845009AA6ED /* loading16.png in Resources */,
- 99C6FE9022768EC000C7070A /* Assets.xcassets in Resources */,
- 99F4A8202277D845009AA6ED /* loading54.png in Resources */,
- 99F4A81A2277D845009AA6ED /* loading18.png in Resources */,
- 99F4A80F2277D845009AA6ED /* loading44.png in Resources */,
- 99F4A8182277D845009AA6ED /* loading20.png in Resources */,
- 9948171422783494007C7CEA /* msg_route.json in Resources */,
- 99F4A8162277D845009AA6ED /* loading63.png in Resources */,
- 99F4A8122277D845009AA6ED /* loading25.png in Resources */,
- 99F4A83C2277D845009AA6ED /* loading21.png in Resources */,
- 99F4A82D2277D845009AA6ED /* loading9.png in Resources */,
- 99F4A8232277D845009AA6ED /* loading59.png in Resources */,
- 99F4A83F2277D845009AA6ED /* loading52.png in Resources */,
- 99F4A83D2277D845009AA6ED /* loading5.png in Resources */,
- 99F4A83B2277D845009AA6ED /* loading56.png in Resources */,
- 99F4A8092277D845009AA6ED /* loading29.png in Resources */,
- 99F4A81D2277D845009AA6ED /* loading10.png in Resources */,
- 99F4A8192277D845009AA6ED /* loading1.png in Resources */,
- 99F4A82F2277D845009AA6ED /* loading28.png in Resources */,
- 99F4A82C2277D845009AA6ED /* loading41.png in Resources */,
- 99F4A80D2277D845009AA6ED /* loading53.png in Resources */,
- 99F4A8312277D845009AA6ED /* loading40.png in Resources */,
- 99F4A80E2277D845009AA6ED /* loading60.png in Resources */,
- 99F4A8452277D845009AA6ED /* loading51.png in Resources */,
- 99F4A8392277D845009AA6ED /* loading2.png in Resources */,
- 991C14762282D89C0080B54A /* publi.txt in Resources */,
- 99F4A81C2277D845009AA6ED /* loading8.png in Resources */,
- 99F4A8422277D845009AA6ED /* loading58.png in Resources */,
- 99F4A8152277D845009AA6ED /* loading31.png in Resources */,
- 99F4A8362277D845009AA6ED /* loading17.png in Resources */,
- 99F4A80B2277D845009AA6ED /* loading50.png in Resources */,
- 99F4A8342277D845009AA6ED /* loading47.png in Resources */,
- 99F4A80A2277D845009AA6ED /* loading32.png in Resources */,
- 99F4A8292277D845009AA6ED /* loading13.png in Resources */,
- 99F4A8322277D845009AA6ED /* loading15.png in Resources */,
- 99F4A83E2277D845009AA6ED /* loading23.png in Resources */,
- 99F4A80C2277D845009AA6ED /* loading27.png in Resources */,
- 99F4A81F2277D845009AA6ED /* loading12.png in Resources */,
- 99F4A82A2277D845009AA6ED /* loading49.png in Resources */,
- 99F4A8352277D845009AA6ED /* loading36.png in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 99C6FE5A22768B5C00C7070A /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 99C6FE6522768B5C00C7070A /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- 090EEC0300D50242E42AF186 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-UU_Ent-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- 448E7422669634DE3F6256F2 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-UU_EntTests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- 79C55E5CC58E2B8BA0FAD00C /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${SRCROOT}/Pods/Target Support Files/Pods-UU_Ent/Pods-UU_Ent-resources.sh",
- "${PODS_ROOT}/IQKeyboardManager/IQKeyboardManager/Resources/IQKeyboardManager.bundle",
- "${PODS_ROOT}/MJRefresh/MJRefresh/MJRefresh.bundle",
- "${PODS_CONFIGURATION_BUILD_DIR}/gRPC/gRPCCertificates.bundle",
- );
- name = "[CP] Copy Pods Resources";
- outputPaths = (
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/IQKeyboardManager.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/MJRefresh.bundle",
- "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/gRPCCertificates.bundle",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-UU_Ent/Pods-UU_Ent-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- A2F6040888740937A057571A /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-UU_EntUITests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- 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";
- showEnvVarsInLog = 0;
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 99C6FE4022768B5B00C7070A /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 99C6FED12276982F00C7070A /* YRTabBar.m in Sources */,
- 27029BD0227709CC00D53A94 /* UIButton+Layout.m in Sources */,
- 99C6FF232276E4C000C7070A /* YRMsgMainCell.m in Sources */,
- 2710E66E2281746E0002A4B0 /* UIPopoverListView.m in Sources */,
- 99C16345228027C8002ED79D /* YRMsgHeader.m in Sources */,
- 991C1464228275B70080B54A /* YRLoginManager.m in Sources */,
- 991C14742282D89C0080B54A /* RSA.m in Sources */,
- 99C6FECB227696CA00C7070A /* YRMsgVC.m in Sources */,
- 99C16340227FD24E002ED79D /* YRWorkConModel.m in Sources */,
- 99C6FF262276FAE000C7070A /* YRMsgMainModel.m in Sources */,
- 2710E66522815DCF0002A4B0 /* YRMineCell.m in Sources */,
- 99F4A7462277D503009AA6ED /* YRAdView.m in Sources */,
- 99C6FE9222768EC000C7070A /* main.m in Sources */,
- 99C6FE99227690F800C7070A /* YRBaseNav.m in Sources */,
- 99C6FE96227690BE00C7070A /* YRBaseVC.m in Sources */,
- 2710E65522801B7E0002A4B0 /* YRRegisterVC.m in Sources */,
- 99C6FF172276D13500C7070A /* YRUserInfo.m in Sources */,
- 270E6C972282B72D008B12B9 /* YRSettingVC.m in Sources */,
- 99B4252F22815E2900DAE304 /* YRAlertView.m in Sources */,
- 999F6510227E658E00329012 /* UIView+frame.m in Sources */,
- 99C6FEC32276959B00C7070A /* YRWorkVC.m in Sources */,
- 270E6C9B2282E6D0008B12B9 /* UINavigationController+safe.m in Sources */,
- 99F4A73D2277D1B8009AA6ED /* YRLoadImgCacheTool.m in Sources */,
- 99C6FECE227697DA00C7070A /* YRContactVC.m in Sources */,
- 99C6FEC82276966600C7070A /* YRWebVC.m in Sources */,
- 99C6FEC02276957400C7070A /* YRMineVC.m in Sources */,
- 2710E66022801ED10002A4B0 /* YRShowMessageFromNavi.m in Sources */,
- 2710E66822815E030002A4B0 /* YRMineModel.m in Sources */,
- 99C6FF1B2276DD3900C7070A /* YRTableView.m in Sources */,
- 27029BD32277E16300D53A94 /* YRButton.m in Sources */,
- 27029BCC2277063F00D53A94 /* UIColor+HexColor.m in Sources */,
- 2710E65822801B930002A4B0 /* YRPwdLevelView.m in Sources */,
- 99F4A7402277D2DF009AA6ED /* YRLoadingVC.m in Sources */,
- 99C6FE8F22768EC000C7070A /* AppDelegate.m in Sources */,
- 999F6516227E688600329012 /* UIView+selector.m in Sources */,
- 999F651E227E6A6000329012 /* NSString+regular.m in Sources */,
- 99F4A7432277D332009AA6ED /* YRCountDownView.m in Sources */,
- 2710E65D22801E330002A4B0 /* LeftViewTF.m in Sources */,
- 99C6FEBA2276950C00C7070A /* YRMainVC.m in Sources */,
- 9948171A22785044007C7CEA /* YRWorkCollCell.m in Sources */,
- 27029BC72276A23400D53A94 /* YRLoginVC.m in Sources */,
- 999F6513227E664C00329012 /* UIImageView+userId.m in Sources */,
- 991C146F2282D8900080B54A /* NSString+secri.m in Sources */,
- 999F651A227E697D00329012 /* UILabel+vertical.m in Sources */,
- 9948171722785013007C7CEA /* YRWorkTabCell.m in Sources */,
- 991C146C2282D8600080B54A /* GTMBase64.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 99C6FE5822768B5C00C7070A /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 99C6FE6122768B5C00C7070A /* UU_EntTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 99C6FE6322768B5C00C7070A /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 99C6FE6C22768B5C00C7070A /* UU_EntUITests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 99C6FE5E22768B5C00C7070A /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 99C6FE4322768B5B00C7070A /* UU_Ent */;
- targetProxy = 99C6FE5D22768B5C00C7070A /* PBXContainerItemProxy */;
- };
- 99C6FE6922768B5C00C7070A /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 99C6FE4322768B5B00C7070A /* UU_Ent */;
- targetProxy = 99C6FE6822768B5C00C7070A /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin XCBuildConfiguration section */
- 99C6FE6E22768B5C00C7070A /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 12.2;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- };
- name = Debug;
- };
- 99C6FE6F22768B5C00C7070A /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- CODE_SIGN_IDENTITY = "iPhone Developer";
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 12.2;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- SDKROOT = iphoneos;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 99C6FE7122768B5C00C7070A /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 71B4DF45C8EC3368ACFC4193 /* Pods-UU_Ent.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 433WAS8387;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "${SRCROOT}/UU_Ent/Supporting Files/UU_Ent.pch";
- INFOPLIST_FILE = "UU_Ent/Supporting Files/Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-Ent";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 99C6FE7222768B5C00C7070A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 13A4F2D13DACD5857BD40BDE /* Pods-UU_Ent.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
- CODE_SIGN_STYLE = Automatic;
- DEVELOPMENT_TEAM = 433WAS8387;
- GCC_PRECOMPILE_PREFIX_HEADER = YES;
- GCC_PREFIX_HEADER = "${SRCROOT}/UU_Ent/Supporting Files/UU_Ent.pch";
- INFOPLIST_FILE = "UU_Ent/Supporting Files/Info.plist";
- IPHONEOS_DEPLOYMENT_TARGET = 9.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-Ent";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- 99C6FE7422768B5C00C7070A /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = DA26F5F8909B0156F0F3EC26 /* Pods-UU_EntTests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- INFOPLIST_FILE = UU_EntTests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-EntTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UU_Ent.app/UU_Ent";
- };
- name = Debug;
- };
- 99C6FE7522768B5C00C7070A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 49A8B37D50A80EFFD84620EC /* Pods-UU_EntTests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- INFOPLIST_FILE = UU_EntTests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-EntTests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/UU_Ent.app/UU_Ent";
- };
- name = Release;
- };
- 99C6FE7722768B5C00C7070A /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = B5220A6F4D02F3A377D1E1D6 /* Pods-UU_EntUITests.debug.xcconfig */;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- INFOPLIST_FILE = UU_EntUITests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-EntUITests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = UU_Ent;
- };
- name = Debug;
- };
- 99C6FE7822768B5C00C7070A /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 49D3F089EECE8E3EDF7D2E1C /* Pods-UU_EntUITests.release.xcconfig */;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- INFOPLIST_FILE = UU_EntUITests/Info.plist;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- "@loader_path/Frameworks",
- );
- PRODUCT_BUNDLE_IDENTIFIER = "YR.UU-EntUITests";
- PRODUCT_NAME = "$(TARGET_NAME)";
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = UU_Ent;
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 99C6FE3F22768B5B00C7070A /* Build configuration list for PBXProject "UU_Ent" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 99C6FE6E22768B5C00C7070A /* Debug */,
- 99C6FE6F22768B5C00C7070A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 99C6FE7022768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_Ent" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 99C6FE7122768B5C00C7070A /* Debug */,
- 99C6FE7222768B5C00C7070A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 99C6FE7322768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_EntTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 99C6FE7422768B5C00C7070A /* Debug */,
- 99C6FE7522768B5C00C7070A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 99C6FE7622768B5C00C7070A /* Build configuration list for PBXNativeTarget "UU_EntUITests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 99C6FE7722768B5C00C7070A /* Debug */,
- 99C6FE7822768B5C00C7070A /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 99C6FE3C22768B5B00C7070A /* Project object */;
- }
|