project.pbxproj 156 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 51;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 45C4DF2F22FD42300072EE2F /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C4DF2E22FD42300072EE2F /* AppDelegate.m */; };
  10. 45C4DF3522FD42300072EE2F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 45C4DF3322FD42300072EE2F /* Main.storyboard */; };
  11. 45C4DF3722FD42310072EE2F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 45C4DF3622FD42310072EE2F /* Assets.xcassets */; };
  12. 45C4DF3A22FD42310072EE2F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 45C4DF3822FD42310072EE2F /* LaunchScreen.storyboard */; };
  13. 45C4DF3D22FD42310072EE2F /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C4DF3C22FD42310072EE2F /* main.m */; };
  14. 45C4DF4722FD42320072EE2F /* JianbinglianTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C4DF4622FD42320072EE2F /* JianbinglianTests.m */; };
  15. 45C4DF5222FD42320072EE2F /* JianbinglianUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 45C4DF5122FD42320072EE2F /* JianbinglianUITests.m */; };
  16. 5C6F095755A4F298376DFFC4 /* Pods_JianbinglianTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 48CAD46FAFF35F3578C3016B /* Pods_JianbinglianTests.framework */; };
  17. 8E6494CEAAD81ED909A7FCE3 /* Pods_JianbinglianUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08253954140C8723BFFEFA2C /* Pods_JianbinglianUITests.framework */; };
  18. F4029E4523079AB800D85DD0 /* MTMyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4029E3923079AB800D85DD0 /* MTMyViewController.m */; };
  19. F4029E4623079AB800D85DD0 /* MTMyViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4029E3B23079AB800D85DD0 /* MTMyViewModel.m */; };
  20. F4029E4723079AB800D85DD0 /* MTMyModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4029E3E23079AB800D85DD0 /* MTMyModel.m */; };
  21. F4029E4823079AB800D85DD0 /* MTMyHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4029E4323079AB800D85DD0 /* MTMyHeaderView.m */; };
  22. F4029E502307ECA600D85DD0 /* UIImageView+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F4029E4F2307ECA600D85DD0 /* UIImageView+MT.m */; };
  23. F4051E1C2306874200AD2B9B /* MTMD5Tool.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E1B2306874200AD2B9B /* MTMD5Tool.m */; };
  24. F4051E1F2306878C00AD2B9B /* MTStringTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E1E2306878C00AD2B9B /* MTStringTool.m */; };
  25. F4051E22230687DE00AD2B9B /* MTTimeTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E21230687DE00AD2B9B /* MTTimeTool.m */; };
  26. F4051E3F2306937200AD2B9B /* Routable.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E302306937200AD2B9B /* Routable.m */; };
  27. F4051E422306937200AD2B9B /* JYRouter.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E392306937200AD2B9B /* JYRouter.m */; };
  28. F4051E472306951D00AD2B9B /* UINavigationController+FDFullscreenPopGesture.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E462306951C00AD2B9B /* UINavigationController+FDFullscreenPopGesture.m */; };
  29. F4051E5323069AC400AD2B9B /* WMPageController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E4A23069AC400AD2B9B /* WMPageController.m */; };
  30. F4051E5423069AC400AD2B9B /* WMMenuItem.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E4E23069AC400AD2B9B /* WMMenuItem.m */; };
  31. F4051E5523069AC400AD2B9B /* WMScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E5023069AC400AD2B9B /* WMScrollView.m */; };
  32. F4051E5623069AC400AD2B9B /* WMMenuView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E5123069AC400AD2B9B /* WMMenuView.m */; };
  33. F4051E5723069AC400AD2B9B /* WMProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E5223069AC400AD2B9B /* WMProgressView.m */; };
  34. F4051E5F23069CFC00AD2B9B /* UIView+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E5923069CFC00AD2B9B /* UIView+MT.m */; };
  35. F4051E6023069CFC00AD2B9B /* NSString+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E5C23069CFC00AD2B9B /* NSString+MT.m */; };
  36. F4051E6123069CFC00AD2B9B /* UIColor+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E5E23069CFC00AD2B9B /* UIColor+MT.m */; };
  37. F4051E6723069E9700AD2B9B /* MTCacheTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E6323069E9700AD2B9B /* MTCacheTool.m */; };
  38. F4051E6823069E9700AD2B9B /* MTHttpTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F4051E6623069E9700AD2B9B /* MTHttpTool.m */; };
  39. F414BCC8230541F300CA26D8 /* MTDevicesTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCB8230541F300CA26D8 /* MTDevicesTool.m */; };
  40. F414BCC9230541F300CA26D8 /* MTInternationalTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCBB230541F300CA26D8 /* MTInternationalTool.m */; };
  41. F414BCCA230541F300CA26D8 /* MTTipsTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCBE230541F300CA26D8 /* MTTipsTool.m */; };
  42. F414BCCB230541F300CA26D8 /* MTTopImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCC1230541F300CA26D8 /* MTTopImageButton.m */; };
  43. F414BCCC230541F300CA26D8 /* MTRightImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCC2230541F300CA26D8 /* MTRightImageButton.m */; };
  44. F414BCCD230541F300CA26D8 /* MTGifRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCC6230541F300CA26D8 /* MTGifRefreshHeader.m */; };
  45. F414BCD523054E2000CA26D8 /* NSObject+YYModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCD223054E2000CA26D8 /* NSObject+YYModel.m */; };
  46. F414BCD623054E2000CA26D8 /* YYClassInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCD323054E2000CA26D8 /* YYClassInfo.m */; };
  47. F414BCDC2305521200CA26D8 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = F414BCDE2305521200CA26D8 /* Localizable.strings */; };
  48. F414BD112305537F00CA26D8 /* MTBaseTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCE12305537E00CA26D8 /* MTBaseTableView.m */; };
  49. F414BD122305537F00CA26D8 /* MTBaseCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCE52305537E00CA26D8 /* MTBaseCollectionView.m */; };
  50. F414BD132305537F00CA26D8 /* MTBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCE82305537F00CA26D8 /* MTBaseViewController.m */; };
  51. F414BD142305537F00CA26D8 /* CustomNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCEB2305537F00CA26D8 /* CustomNavigationController.m */; };
  52. F414BD152305537F00CA26D8 /* CustomNaviBarView.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCED2305537F00CA26D8 /* CustomNaviBarView.m */; };
  53. F414BD162305537F00CA26D8 /* MTBaseTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCEF2305537F00CA26D8 /* MTBaseTableViewCell.m */; };
  54. F414BD172305537F00CA26D8 /* MTBaseButton.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCF22305537F00CA26D8 /* MTBaseButton.m */; };
  55. F414BD182305537F00CA26D8 /* MTRootController.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCF62305537F00CA26D8 /* MTRootController.m */; };
  56. F414BD192305537F00CA26D8 /* MTBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BCF82305537F00CA26D8 /* MTBaseView.m */; };
  57. F414BD1C2305537F00CA26D8 /* MTBaseImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BD002305537F00CA26D8 /* MTBaseImageView.m */; };
  58. F414BD1D2305537F00CA26D8 /* MTBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BD042305537F00CA26D8 /* MTBaseModel.m */; };
  59. F414BD1E2305537F00CA26D8 /* MTBaseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BD062305537F00CA26D8 /* MTBaseCollectionViewCell.m */; };
  60. F414BD1F2305537F00CA26D8 /* MTBaseLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BD092305537F00CA26D8 /* MTBaseLabel.m */; };
  61. F414BD202305537F00CA26D8 /* MTBaseTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BD0D2305537F00CA26D8 /* MTBaseTextField.m */; };
  62. F414BD212305537F00CA26D8 /* MTBaseViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F414BD0F2305537F00CA26D8 /* MTBaseViewModel.m */; };
  63. F42019702580CD6200BECDE1 /* MTBoardListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F42019672580CD6200BECDE1 /* MTBoardListViewController.m */; };
  64. F42019712580CD6200BECDE1 /* MTBoardListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F420196A2580CD6200BECDE1 /* MTBoardListModel.m */; };
  65. F42019722580CD6200BECDE1 /* MTBoardListViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F420196D2580CD6200BECDE1 /* MTBoardListViewModel.m */; };
  66. F42019792580CD8500BECDE1 /* MTBoardListTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F42019772580CD8500BECDE1 /* MTBoardListTableViewCell.m */; };
  67. F420197A2580CD8500BECDE1 /* MTBoardListTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F42019782580CD8500BECDE1 /* MTBoardListTableViewCell.xib */; };
  68. F42019802580CEFE00BECDE1 /* MTBoardDetailViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F420197F2580CEFE00BECDE1 /* MTBoardDetailViewController.m */; };
  69. F423D414230C450A008D0675 /* UIButton+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F423D40A230C4509008D0675 /* UIButton+MT.m */; };
  70. F423D415230C450A008D0675 /* UILabel+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F423D40B230C450A008D0675 /* UILabel+MT.m */; };
  71. F423D416230C450A008D0675 /* UITextField+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F423D410230C450A008D0675 /* UITextField+MT.m */; };
  72. F423D417230C450A008D0675 /* UITextView+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F423D411230C450A008D0675 /* UITextView+MT.m */; };
  73. F423D418230C450A008D0675 /* NSLayoutConstraint+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F423D413230C450A008D0675 /* NSLayoutConstraint+MT.m */; };
  74. F44D3255230D1CEA00735FAD /* DVPieCenterView.m in Sources */ = {isa = PBXBuildFile; fileRef = F44D324F230D1CEA00735FAD /* DVPieCenterView.m */; };
  75. F44D3256230D1CEA00735FAD /* DVFoodPieModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F44D3250230D1CEA00735FAD /* DVFoodPieModel.m */; };
  76. F44D3257230D1CEA00735FAD /* DVPieChart.m in Sources */ = {isa = PBXBuildFile; fileRef = F44D3254230D1CEA00735FAD /* DVPieChart.m */; };
  77. F451BFC525CC0655000EEE1C /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F451BFC425CC0654000EEE1C /* ExternalAccessory.framework */; };
  78. F451BFC725CC0660000EEE1C /* Pods_Jianbinglian.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F451BFC625CC0660000EEE1C /* Pods_Jianbinglian.framework */; };
  79. F478D7FC25ADA20E006B4E61 /* MTLoginViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D7DC25ADA20E006B4E61 /* MTLoginViewModel.m */; };
  80. F478D7FD25ADA20E006B4E61 /* MTLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D7DF25ADA20E006B4E61 /* MTLoginViewController.m */; };
  81. F478D7FE25ADA20E006B4E61 /* MTLoginModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D7E225ADA20E006B4E61 /* MTLoginModel.m */; };
  82. F478D80025ADA20E006B4E61 /* MTLoginHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D7E625ADA20E006B4E61 /* MTLoginHeaderView.m */; };
  83. F478D81B25ADA403006B4E61 /* MTRegistViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D80F25ADA403006B4E61 /* MTRegistViewModel.m */; };
  84. F478D81C25ADA403006B4E61 /* MTRegistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D81125ADA403006B4E61 /* MTRegistViewController.m */; };
  85. F478D81D25ADA403006B4E61 /* MTRegistModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D81425ADA403006B4E61 /* MTRegistModel.m */; };
  86. F478D81E25ADA403006B4E61 /* MTRegistHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D81725ADA403006B4E61 /* MTRegistHeaderView.m */; };
  87. F478D83525ADA4C0006B4E61 /* MTForgetViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D82825ADA4C0006B4E61 /* MTForgetViewModel.m */; };
  88. F478D83625ADA4C0006B4E61 /* MTForgetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D82C25ADA4C0006B4E61 /* MTForgetViewController.m */; };
  89. F478D83725ADA4C0006B4E61 /* MTForgetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D82E25ADA4C0006B4E61 /* MTForgetModel.m */; };
  90. F478D83925ADA4C0006B4E61 /* MTForgetHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D83325ADA4C0006B4E61 /* MTForgetHeaderView.m */; };
  91. F478D84425ADA830006B4E61 /* MTLoginHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F478D84325ADA830006B4E61 /* MTLoginHeaderView.xib */; };
  92. F478D84925ADA864006B4E61 /* MTRegistHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F478D84825ADA864006B4E61 /* MTRegistHeaderView.xib */; };
  93. F478D84E25ADA8B3006B4E61 /* MTForgetHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F478D84D25ADA8B3006B4E61 /* MTForgetHeaderView.xib */; };
  94. F478D85F25AEDF58006B4E61 /* MTBingViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D85425AEDF57006B4E61 /* MTBingViewModel.m */; };
  95. F478D86025AEDF58006B4E61 /* MTBingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D85825AEDF57006B4E61 /* MTBingViewController.m */; };
  96. F478D86125AEDF58006B4E61 /* MTBingHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D85B25AEDF57006B4E61 /* MTBingHeaderView.m */; };
  97. F478D86225AEDF58006B4E61 /* MTBingModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D85D25AEDF58006B4E61 /* MTBingModel.m */; };
  98. F478D86725AEDF97006B4E61 /* MTBingHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F478D86625AEDF97006B4E61 /* MTBingHeaderView.xib */; };
  99. F478D86E25B02D00006B4E61 /* MTXieyiViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D86D25B02D00006B4E61 /* MTXieyiViewController.m */; };
  100. F478D87D25B06031006B4E61 /* UIImage+getSize.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D87C25B06030006B4E61 /* UIImage+getSize.m */; };
  101. F478D8A225B43D37006B4E61 /* MTUserInforModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D8A025B43D37006B4E61 /* MTUserInforModel.m */; };
  102. F478D8CD25B80747006B4E61 /* MTConfigModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D8CC25B80747006B4E61 /* MTConfigModel.m */; };
  103. F478D8E625BC01DC006B4E61 /* MTPhotoView.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D8E525BC01DC006B4E61 /* MTPhotoView.m */; };
  104. F478D8F025BC0345006B4E61 /* addImg.png in Resources */ = {isa = PBXBuildFile; fileRef = F478D8ED25BC0344006B4E61 /* addImg.png */; };
  105. F478D8F125BC0345006B4E61 /* addImg@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F478D8EE25BC0345006B4E61 /* addImg@2x.png */; };
  106. F478D8F225BC0345006B4E61 /* addImg@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F478D8EF25BC0345006B4E61 /* addImg@3x.png */; };
  107. F478D8F825BC0444006B4E61 /* MTPhotoConfigModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F478D8F725BC0444006B4E61 /* MTPhotoConfigModel.m */; };
  108. F478D8FD25BC15CB006B4E61 /* imgDel.png in Resources */ = {isa = PBXBuildFile; fileRef = F478D8FC25BC15CB006B4E61 /* imgDel.png */; };
  109. F479B0C62319639A00C58D9D /* MTUpLoadViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F479B0C52319639A00C58D9D /* MTUpLoadViewModel.m */; };
  110. F491D4352351BCD300D34A4A /* MTCopyLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = F491D4342351BCD200D34A4A /* MTCopyLabel.m */; };
  111. F497E534230FB73F00939809 /* MTWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F497E532230FB73F00939809 /* MTWebViewController.m */; };
  112. F4E51C35258A004200135614 /* MTTimePickView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E51C34258A004200135614 /* MTTimePickView.m */; };
  113. F4E51C3A258A005E00135614 /* MTTimePickView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E51C39258A005E00135614 /* MTTimePickView.xib */; };
  114. F4E99CB325903B1F002850DD /* MTStartView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99CB025903B1E002850DD /* MTStartView.m */; };
  115. F4E99CB425903B1F002850DD /* MTStartView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99CB125903B1E002850DD /* MTStartView.xib */; };
  116. F4E99DF72595C611002850DD /* MTMyTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99DF52595C611002850DD /* MTMyTableViewCell.m */; };
  117. F4E99DF82595C611002850DD /* MTMyTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99DF62595C611002850DD /* MTMyTableViewCell.xib */; };
  118. F4E99DFD2595C9BD002850DD /* MTMyHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99DFC2595C9BD002850DD /* MTMyHeaderView.xib */; };
  119. F4E99ED9259AF338002850DD /* GJ_Me_WalletViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99EC4259AF338002850DD /* GJ_Me_WalletViewController.m */; };
  120. F4E99EDA259AF338002850DD /* GJ_Me_Wallet_HeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99EC7259AF338002850DD /* GJ_Me_Wallet_HeaderView.xib */; };
  121. F4E99EDB259AF338002850DD /* GJ_Me_Wallet_Cell.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99EC9259AF338002850DD /* GJ_Me_Wallet_Cell.m */; };
  122. F4E99EDC259AF338002850DD /* GJ_Me_Wallet_HeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99ECA259AF338002850DD /* GJ_Me_Wallet_HeaderView.m */; };
  123. F4E99EDD259AF338002850DD /* GJ_Me_Wallet_Cell.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99ECB259AF338002850DD /* GJ_Me_Wallet_Cell.xib */; };
  124. F4E99EDE259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99ECD259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.m */; };
  125. F4E99EDF259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99ECE259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.xib */; };
  126. F4E99EE0259AF338002850DD /* GJ_Me_CashOut_WXViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99ED2259AF338002850DD /* GJ_Me_CashOut_WXViewController.xib */; };
  127. F4E99EE1259AF338002850DD /* GJ_Me_CashOut_WXViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99ED4259AF338002850DD /* GJ_Me_CashOut_WXViewController.m */; };
  128. F4E99EE2259AF338002850DD /* GJ_Me_CashOut_BankViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99ED7259AF338002850DD /* GJ_Me_CashOut_BankViewController.m */; };
  129. F4E99EE3259AF338002850DD /* GJ_Me_CashOut_BankViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99ED8259AF338002850DD /* GJ_Me_CashOut_BankViewController.xib */; };
  130. F4E99F7A259B2C92002850DD /* MTPayInViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F6E259B2C92002850DD /* MTPayInViewController.m */; };
  131. F4E99F7B259B2C93002850DD /* MTPayInModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F70259B2C92002850DD /* MTPayInModel.m */; };
  132. F4E99F7C259B2C93002850DD /* MTPayInHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F74259B2C92002850DD /* MTPayInHeaderView.m */; };
  133. F4E99F7D259B2C93002850DD /* MTPayInTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F76259B2C92002850DD /* MTPayInTableViewCell.m */; };
  134. F4E99F7E259B2C93002850DD /* MTPayInViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F78259B2C92002850DD /* MTPayInViewModel.m */; };
  135. F4E99F83259B2E10002850DD /* MTPayInHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99F82259B2E10002850DD /* MTPayInHeaderView.xib */; };
  136. F4E99F97259D7EC0002850DD /* MTSettingViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F8D259D7EBF002850DD /* MTSettingViewModel.m */; };
  137. F4E99F98259D7EC0002850DD /* MTSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F90259D7EBF002850DD /* MTSettingViewController.m */; };
  138. F4E99F99259D7EC0002850DD /* MTSettingModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F93259D7EBF002850DD /* MTSettingModel.m */; };
  139. F4E99F9A259D7EC0002850DD /* MTSettingHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99F96259D7EC0002850DD /* MTSettingHeaderView.m */; };
  140. F4E99F9F259D7EFD002850DD /* MTSettingHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99F9E259D7EFD002850DD /* MTSettingHeaderView.xib */; };
  141. F4E99FAD259DA697002850DD /* FFMineRetrievePayPwdController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99FA5259DA696002850DD /* FFMineRetrievePayPwdController.m */; };
  142. F4E99FAF259DA697002850DD /* FFMinePayPasswordController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99FAC259DA697002850DD /* FFMinePayPasswordController.m */; };
  143. F4E99FC6259DB1B1002850DD /* MTInfoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99FBB259DB1B1002850DD /* MTInfoModel.m */; };
  144. F4E99FC7259DB1B1002850DD /* MTInfoHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99FBF259DB1B1002850DD /* MTInfoHeaderView.m */; };
  145. F4E99FC8259DB1B1002850DD /* MTInfoViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99FC1259DB1B1002850DD /* MTInfoViewModel.m */; };
  146. F4E99FC9259DB1B1002850DD /* MTInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4E99FC4259DB1B1002850DD /* MTInfoViewController.m */; };
  147. F4E99FCE259DB1C6002850DD /* MTInfoHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4E99FCD259DB1C6002850DD /* MTInfoHeaderView.xib */; };
  148. F4ED176124C03A17003D7B3F /* DYFCodeScannerPreView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED175824C03A17003D7B3F /* DYFCodeScannerPreView.m */; };
  149. F4ED176224C03A17003D7B3F /* DYFCodeScannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED175A24C03A17003D7B3F /* DYFCodeScannerViewController.m */; };
  150. F4ED176324C03A17003D7B3F /* DYFQRCodeImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED175C24C03A17003D7B3F /* DYFQRCodeImageView.m */; };
  151. F4ED176424C03A17003D7B3F /* UIButton+Corner.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED175E24C03A17003D7B3F /* UIButton+Corner.m */; };
  152. F4ED176524C03A17003D7B3F /* UIImage+QRCode.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED176024C03A17003D7B3F /* UIImage+QRCode.m */; };
  153. F4ED176824C03ACB003D7B3F /* UIImage+MT.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED176724C03ACB003D7B3F /* UIImage+MT.m */; };
  154. F4ED177B24C03BD9003D7B3F /* WXApiManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED176B24C03BD9003D7B3F /* WXApiManager.m */; };
  155. F4ED177C24C03BD9003D7B3F /* MTImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED176E24C03BD9003D7B3F /* MTImageManager.m */; };
  156. F4ED177E24C03BD9003D7B3F /* MTAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED177424C03BD9003D7B3F /* MTAssetManager.m */; };
  157. F4ED177F24C03BD9003D7B3F /* MTApplePayTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED177724C03BD9003D7B3F /* MTApplePayTool.m */; };
  158. F4ED178024C03BD9003D7B3F /* MTVideoDownTool.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED177A24C03BD9003D7B3F /* MTVideoDownTool.m */; };
  159. F4ED179724C042D5003D7B3F /* EBBannerView+Categories.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED178424C042D5003D7B3F /* EBBannerView+Categories.m */; };
  160. F4ED179824C042D5003D7B3F /* EBBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED178524C042D5003D7B3F /* EBBannerView.m */; };
  161. F4ED179924C042D5003D7B3F /* EBBannerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4ED178624C042D5003D7B3F /* EBBannerView.xib */; };
  162. F4ED179A24C042D5003D7B3F /* EBBannerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED178724C042D5003D7B3F /* EBBannerViewController.m */; };
  163. F4ED179B24C042D5003D7B3F /* EBBannerViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4ED178824C042D5003D7B3F /* EBBannerViewController.xib */; };
  164. F4ED179C24C042D5003D7B3F /* EBBannerViewMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED178924C042D5003D7B3F /* EBBannerViewMaker.m */; };
  165. F4ED179D24C042D5003D7B3F /* EBBannerWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED178B24C042D5003D7B3F /* EBBannerWindow.m */; };
  166. F4ED179E24C042D5003D7B3F /* EBCustomBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED178C24C042D5003D7B3F /* EBCustomBannerView.m */; };
  167. F4ED179F24C042D5003D7B3F /* EBEmptyWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED178E24C042D5003D7B3F /* EBEmptyWindow.m */; };
  168. F4ED17A024C042D5003D7B3F /* EBMuteDetector.m in Sources */ = {isa = PBXBuildFile; fileRef = F4ED179024C042D5003D7B3F /* EBMuteDetector.m */; };
  169. F4ED17A124C042D5003D7B3F /* EBMuteDetector.mp3 in Resources */ = {isa = PBXBuildFile; fileRef = F4ED179124C042D5003D7B3F /* EBMuteDetector.mp3 */; };
  170. F4ED17A224C042D5003D7B3F /* EBSystemBannerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4ED179224C042D5003D7B3F /* EBSystemBannerView.xib */; };
  171. F4F5BC76258B4FBC00372E4D /* CustomDatePickerViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F5BC73258B4FBC00372E4D /* CustomDatePickerViewModel.m */; };
  172. F4F5BC77258B4FBC00372E4D /* NSDate+Category.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F5BC74258B4FBC00372E4D /* NSDate+Category.m */; };
  173. F4F5BCDA258C810600372E4D /* MTAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F5BCD7258C810600372E4D /* MTAlertView.m */; };
  174. F4F5BCDB258C810600372E4D /* MTAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4F5BCD8258C810600372E4D /* MTAlertView.xib */; };
  175. F4F5BD06258C91F700372E4D /* MTNoDataView.m in Sources */ = {isa = PBXBuildFile; fileRef = F4F5BD05258C91F700372E4D /* MTNoDataView.m */; };
  176. F4F5BD0E258C921800372E4D /* MTNoDataView.xib in Resources */ = {isa = PBXBuildFile; fileRef = F4F5BD0D258C921800372E4D /* MTNoDataView.xib */; };
  177. /* End PBXBuildFile section */
  178. /* Begin PBXContainerItemProxy section */
  179. 45C4DF4322FD42320072EE2F /* PBXContainerItemProxy */ = {
  180. isa = PBXContainerItemProxy;
  181. containerPortal = 45C4DF2222FD422F0072EE2F /* Project object */;
  182. proxyType = 1;
  183. remoteGlobalIDString = 45C4DF2922FD42300072EE2F;
  184. remoteInfo = Jianbinglian;
  185. };
  186. 45C4DF4E22FD42320072EE2F /* PBXContainerItemProxy */ = {
  187. isa = PBXContainerItemProxy;
  188. containerPortal = 45C4DF2222FD422F0072EE2F /* Project object */;
  189. proxyType = 1;
  190. remoteGlobalIDString = 45C4DF2922FD42300072EE2F;
  191. remoteInfo = Jianbinglian;
  192. };
  193. /* End PBXContainerItemProxy section */
  194. /* Begin PBXFileReference section */
  195. 03C6E27E12294EBE8B7F48DC /* Pods-JianbinglianUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JianbinglianUITests.release.xcconfig"; path = "Target Support Files/Pods-JianbinglianUITests/Pods-JianbinglianUITests.release.xcconfig"; sourceTree = "<group>"; };
  196. 08253954140C8723BFFEFA2C /* Pods_JianbinglianUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JianbinglianUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  197. 42B2BA49C2CD891CFA3AFA61 /* Pods-JianbinglianUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JianbinglianUITests.debug.xcconfig"; path = "Target Support Files/Pods-JianbinglianUITests/Pods-JianbinglianUITests.debug.xcconfig"; sourceTree = "<group>"; };
  198. 45C4DF2A22FD42300072EE2F /* Jianbinglian.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Jianbinglian.app; sourceTree = BUILT_PRODUCTS_DIR; };
  199. 45C4DF2D22FD42300072EE2F /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  200. 45C4DF2E22FD42300072EE2F /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  201. 45C4DF3422FD42300072EE2F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  202. 45C4DF3622FD42310072EE2F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  203. 45C4DF3922FD42310072EE2F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  204. 45C4DF3B22FD42310072EE2F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  205. 45C4DF3C22FD42310072EE2F /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  206. 45C4DF4222FD42320072EE2F /* JianbinglianTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JianbinglianTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  207. 45C4DF4622FD42320072EE2F /* JianbinglianTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JianbinglianTests.m; sourceTree = "<group>"; };
  208. 45C4DF4822FD42320072EE2F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  209. 45C4DF4D22FD42320072EE2F /* JianbinglianUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = JianbinglianUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  210. 45C4DF5122FD42320072EE2F /* JianbinglianUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = JianbinglianUITests.m; sourceTree = "<group>"; };
  211. 45C4DF5322FD42320072EE2F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  212. 48CAD46FAFF35F3578C3016B /* Pods_JianbinglianTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_JianbinglianTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  213. 673D0FABDEC01E041559FB9A /* Pods-Jianbinglian.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Jianbinglian.release.xcconfig"; path = "Target Support Files/Pods-Jianbinglian/Pods-Jianbinglian.release.xcconfig"; sourceTree = "<group>"; };
  214. 7AC95B38A7A6EEA0F29C5F38 /* Pods-JianbinglianTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JianbinglianTests.debug.xcconfig"; path = "Target Support Files/Pods-JianbinglianTests/Pods-JianbinglianTests.debug.xcconfig"; sourceTree = "<group>"; };
  215. 8C2D09D5B94C209D63BA7C67 /* Pods-Jianbinglian.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Jianbinglian.debug.xcconfig"; path = "Target Support Files/Pods-Jianbinglian/Pods-Jianbinglian.debug.xcconfig"; sourceTree = "<group>"; };
  216. C613242FEA4827FCB0291F7A /* Pods-JianbinglianTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-JianbinglianTests.release.xcconfig"; path = "Target Support Files/Pods-JianbinglianTests/Pods-JianbinglianTests.release.xcconfig"; sourceTree = "<group>"; };
  217. F4029E3823079AB800D85DD0 /* MTMyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTMyViewController.h; sourceTree = "<group>"; };
  218. F4029E3923079AB800D85DD0 /* MTMyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTMyViewController.m; sourceTree = "<group>"; };
  219. F4029E3B23079AB800D85DD0 /* MTMyViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTMyViewModel.m; sourceTree = "<group>"; };
  220. F4029E3C23079AB800D85DD0 /* MTMyViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTMyViewModel.h; sourceTree = "<group>"; };
  221. F4029E3E23079AB800D85DD0 /* MTMyModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTMyModel.m; sourceTree = "<group>"; };
  222. F4029E3F23079AB800D85DD0 /* MTMyModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTMyModel.h; sourceTree = "<group>"; };
  223. F4029E4123079AB800D85DD0 /* MTMyHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTMyHeaderView.h; sourceTree = "<group>"; };
  224. F4029E4323079AB800D85DD0 /* MTMyHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTMyHeaderView.m; sourceTree = "<group>"; };
  225. F4029E4E2307ECA600D85DD0 /* UIImageView+MT.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIImageView+MT.h"; sourceTree = "<group>"; };
  226. F4029E4F2307ECA600D85DD0 /* UIImageView+MT.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+MT.m"; sourceTree = "<group>"; };
  227. F4051E1A2306874200AD2B9B /* MTMD5Tool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTMD5Tool.h; sourceTree = "<group>"; };
  228. F4051E1B2306874200AD2B9B /* MTMD5Tool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTMD5Tool.m; sourceTree = "<group>"; };
  229. F4051E1D2306878C00AD2B9B /* MTStringTool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTStringTool.h; sourceTree = "<group>"; };
  230. F4051E1E2306878C00AD2B9B /* MTStringTool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTStringTool.m; sourceTree = "<group>"; };
  231. F4051E20230687DE00AD2B9B /* MTTimeTool.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTTimeTool.h; sourceTree = "<group>"; };
  232. F4051E21230687DE00AD2B9B /* MTTimeTool.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTTimeTool.m; sourceTree = "<group>"; };
  233. F4051E302306937200AD2B9B /* Routable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Routable.m; sourceTree = "<group>"; };
  234. F4051E312306937200AD2B9B /* JYRouter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JYRouter.h; sourceTree = "<group>"; };
  235. F4051E382306937200AD2B9B /* Routable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Routable.h; sourceTree = "<group>"; };
  236. F4051E392306937200AD2B9B /* JYRouter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JYRouter.m; sourceTree = "<group>"; };
  237. F4051E452306951C00AD2B9B /* UINavigationController+FDFullscreenPopGesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+FDFullscreenPopGesture.h"; sourceTree = "<group>"; };
  238. F4051E462306951C00AD2B9B /* UINavigationController+FDFullscreenPopGesture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+FDFullscreenPopGesture.m"; sourceTree = "<group>"; };
  239. F4051E4923069AC400AD2B9B /* WMScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMScrollView.h; sourceTree = "<group>"; };
  240. F4051E4A23069AC400AD2B9B /* WMPageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPageController.m; sourceTree = "<group>"; };
  241. F4051E4B23069AC400AD2B9B /* WMMenuItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMMenuItem.h; sourceTree = "<group>"; };
  242. F4051E4C23069AC400AD2B9B /* WMMenuView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMMenuView.h; sourceTree = "<group>"; };
  243. F4051E4D23069AC400AD2B9B /* WMProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMProgressView.h; sourceTree = "<group>"; };
  244. F4051E4E23069AC400AD2B9B /* WMMenuItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMMenuItem.m; sourceTree = "<group>"; };
  245. F4051E4F23069AC400AD2B9B /* WMPageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPageController.h; sourceTree = "<group>"; };
  246. F4051E5023069AC400AD2B9B /* WMScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMScrollView.m; sourceTree = "<group>"; };
  247. F4051E5123069AC400AD2B9B /* WMMenuView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMMenuView.m; sourceTree = "<group>"; };
  248. F4051E5223069AC400AD2B9B /* WMProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMProgressView.m; sourceTree = "<group>"; };
  249. F4051E5923069CFC00AD2B9B /* UIView+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MT.m"; sourceTree = "<group>"; };
  250. F4051E5A23069CFC00AD2B9B /* NSString+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MT.h"; sourceTree = "<group>"; };
  251. F4051E5B23069CFC00AD2B9B /* UIColor+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+MT.h"; sourceTree = "<group>"; };
  252. F4051E5C23069CFC00AD2B9B /* NSString+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MT.m"; sourceTree = "<group>"; };
  253. F4051E5D23069CFC00AD2B9B /* UIView+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MT.h"; sourceTree = "<group>"; };
  254. F4051E5E23069CFC00AD2B9B /* UIColor+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+MT.m"; sourceTree = "<group>"; };
  255. F4051E6323069E9700AD2B9B /* MTCacheTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTCacheTool.m; sourceTree = "<group>"; };
  256. F4051E6423069E9700AD2B9B /* MTHttpTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTHttpTool.h; sourceTree = "<group>"; };
  257. F4051E6523069E9700AD2B9B /* MTCacheTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTCacheTool.h; sourceTree = "<group>"; };
  258. F4051E6623069E9700AD2B9B /* MTHttpTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTHttpTool.m; sourceTree = "<group>"; };
  259. F414BCA323053D1F00CA26D8 /* PrefixHeader.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  260. F414BCA723053EB500CA26D8 /* UtilsMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UtilsMacro.h; sourceTree = "<group>"; };
  261. F414BCA823053EB500CA26D8 /* VendorMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VendorMacro.h; sourceTree = "<group>"; };
  262. F414BCA923053EB500CA26D8 /* ApiMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApiMacro.h; sourceTree = "<group>"; };
  263. F414BCAA23053EB500CA26D8 /* NotificationMacro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotificationMacro.h; sourceTree = "<group>"; };
  264. F414BCB8230541F300CA26D8 /* MTDevicesTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTDevicesTool.m; sourceTree = "<group>"; };
  265. F414BCB9230541F300CA26D8 /* MTDevicesTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTDevicesTool.h; sourceTree = "<group>"; };
  266. F414BCBB230541F300CA26D8 /* MTInternationalTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTInternationalTool.m; sourceTree = "<group>"; };
  267. F414BCBC230541F300CA26D8 /* MTInternationalTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTInternationalTool.h; sourceTree = "<group>"; };
  268. F414BCBE230541F300CA26D8 /* MTTipsTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTTipsTool.m; sourceTree = "<group>"; };
  269. F414BCBF230541F300CA26D8 /* MTTipsTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTTipsTool.h; sourceTree = "<group>"; };
  270. F414BCC1230541F300CA26D8 /* MTTopImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTTopImageButton.m; sourceTree = "<group>"; };
  271. F414BCC2230541F300CA26D8 /* MTRightImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTRightImageButton.m; sourceTree = "<group>"; };
  272. F414BCC3230541F300CA26D8 /* MTTopImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTTopImageButton.h; sourceTree = "<group>"; };
  273. F414BCC4230541F300CA26D8 /* MTRightImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTRightImageButton.h; sourceTree = "<group>"; };
  274. F414BCC6230541F300CA26D8 /* MTGifRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTGifRefreshHeader.m; sourceTree = "<group>"; };
  275. F414BCC7230541F300CA26D8 /* MTGifRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTGifRefreshHeader.h; sourceTree = "<group>"; };
  276. F414BCD023054E2000CA26D8 /* YYClassInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYClassInfo.h; sourceTree = "<group>"; };
  277. F414BCD123054E2000CA26D8 /* YYModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YYModel.h; sourceTree = "<group>"; };
  278. F414BCD223054E2000CA26D8 /* NSObject+YYModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+YYModel.m"; sourceTree = "<group>"; };
  279. F414BCD323054E2000CA26D8 /* YYClassInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YYClassInfo.m; sourceTree = "<group>"; };
  280. F414BCD423054E2000CA26D8 /* NSObject+YYModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+YYModel.h"; sourceTree = "<group>"; };
  281. F414BCD8230551CD00CA26D8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
  282. F414BCD9230551CE00CA26D8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
  283. F414BCDD2305521200CA26D8 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  284. F414BCDF2305521700CA26D8 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  285. F414BCE12305537E00CA26D8 /* MTBaseTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseTableView.m; sourceTree = "<group>"; };
  286. F414BCE22305537E00CA26D8 /* MTBaseTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseTableView.h; sourceTree = "<group>"; };
  287. F414BCE42305537E00CA26D8 /* MTBaseCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseCollectionView.h; sourceTree = "<group>"; };
  288. F414BCE52305537E00CA26D8 /* MTBaseCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseCollectionView.m; sourceTree = "<group>"; };
  289. F414BCE72305537F00CA26D8 /* CustomNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNavigationController.h; sourceTree = "<group>"; };
  290. F414BCE82305537F00CA26D8 /* MTBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseViewController.m; sourceTree = "<group>"; };
  291. F414BCE92305537F00CA26D8 /* MTViewControllerProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTViewControllerProtocol.h; sourceTree = "<group>"; };
  292. F414BCEA2305537F00CA26D8 /* CustomNaviBarView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNaviBarView.h; sourceTree = "<group>"; };
  293. F414BCEB2305537F00CA26D8 /* CustomNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNavigationController.m; sourceTree = "<group>"; };
  294. F414BCEC2305537F00CA26D8 /* MTBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseViewController.h; sourceTree = "<group>"; };
  295. F414BCED2305537F00CA26D8 /* CustomNaviBarView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNaviBarView.m; sourceTree = "<group>"; };
  296. F414BCEF2305537F00CA26D8 /* MTBaseTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseTableViewCell.m; sourceTree = "<group>"; };
  297. F414BCF02305537F00CA26D8 /* MTBaseTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseTableViewCell.h; sourceTree = "<group>"; };
  298. F414BCF22305537F00CA26D8 /* MTBaseButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseButton.m; sourceTree = "<group>"; };
  299. F414BCF32305537F00CA26D8 /* MTBaseButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseButton.h; sourceTree = "<group>"; };
  300. F414BCF52305537F00CA26D8 /* MTRootController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTRootController.h; sourceTree = "<group>"; };
  301. F414BCF62305537F00CA26D8 /* MTRootController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTRootController.m; sourceTree = "<group>"; };
  302. F414BCF82305537F00CA26D8 /* MTBaseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseView.m; sourceTree = "<group>"; };
  303. F414BCF92305537F00CA26D8 /* MTBaseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseView.h; sourceTree = "<group>"; };
  304. F414BD002305537F00CA26D8 /* MTBaseImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseImageView.m; sourceTree = "<group>"; };
  305. F414BD012305537F00CA26D8 /* MTBaseImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseImageView.h; sourceTree = "<group>"; };
  306. F414BD032305537F00CA26D8 /* MTBaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseModel.h; sourceTree = "<group>"; };
  307. F414BD042305537F00CA26D8 /* MTBaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseModel.m; sourceTree = "<group>"; };
  308. F414BD062305537F00CA26D8 /* MTBaseCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseCollectionViewCell.m; sourceTree = "<group>"; };
  309. F414BD072305537F00CA26D8 /* MTBaseCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseCollectionViewCell.h; sourceTree = "<group>"; };
  310. F414BD092305537F00CA26D8 /* MTBaseLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseLabel.m; sourceTree = "<group>"; };
  311. F414BD0A2305537F00CA26D8 /* MTBaseLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseLabel.h; sourceTree = "<group>"; };
  312. F414BD0C2305537F00CA26D8 /* MTBaseTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseTextField.h; sourceTree = "<group>"; };
  313. F414BD0D2305537F00CA26D8 /* MTBaseTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseTextField.m; sourceTree = "<group>"; };
  314. F414BD0F2305537F00CA26D8 /* MTBaseViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBaseViewModel.m; sourceTree = "<group>"; };
  315. F414BD102305537F00CA26D8 /* MTBaseViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBaseViewModel.h; sourceTree = "<group>"; };
  316. F42019672580CD6200BECDE1 /* MTBoardListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBoardListViewController.m; sourceTree = "<group>"; };
  317. F42019682580CD6200BECDE1 /* MTBoardListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBoardListViewController.h; sourceTree = "<group>"; };
  318. F420196A2580CD6200BECDE1 /* MTBoardListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBoardListModel.m; sourceTree = "<group>"; };
  319. F420196B2580CD6200BECDE1 /* MTBoardListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBoardListModel.h; sourceTree = "<group>"; };
  320. F420196D2580CD6200BECDE1 /* MTBoardListViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBoardListViewModel.m; sourceTree = "<group>"; };
  321. F420196E2580CD6200BECDE1 /* MTBoardListViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBoardListViewModel.h; sourceTree = "<group>"; };
  322. F42019762580CD8500BECDE1 /* MTBoardListTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTBoardListTableViewCell.h; sourceTree = "<group>"; };
  323. F42019772580CD8500BECDE1 /* MTBoardListTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTBoardListTableViewCell.m; sourceTree = "<group>"; };
  324. F42019782580CD8500BECDE1 /* MTBoardListTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTBoardListTableViewCell.xib; sourceTree = "<group>"; };
  325. F420197E2580CEFE00BECDE1 /* MTBoardDetailViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBoardDetailViewController.h; sourceTree = "<group>"; };
  326. F420197F2580CEFE00BECDE1 /* MTBoardDetailViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBoardDetailViewController.m; sourceTree = "<group>"; };
  327. F423D40A230C4509008D0675 /* UIButton+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+MT.m"; sourceTree = "<group>"; };
  328. F423D40B230C450A008D0675 /* UILabel+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+MT.m"; sourceTree = "<group>"; };
  329. F423D40C230C450A008D0675 /* UIButton+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+MT.h"; sourceTree = "<group>"; };
  330. F423D40D230C450A008D0675 /* UITextField+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextField+MT.h"; sourceTree = "<group>"; };
  331. F423D40E230C450A008D0675 /* NSLayoutConstraint+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+MT.h"; sourceTree = "<group>"; };
  332. F423D40F230C450A008D0675 /* UITextView+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+MT.h"; sourceTree = "<group>"; };
  333. F423D410230C450A008D0675 /* UITextField+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextField+MT.m"; sourceTree = "<group>"; };
  334. F423D411230C450A008D0675 /* UITextView+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+MT.m"; sourceTree = "<group>"; };
  335. F423D412230C450A008D0675 /* UILabel+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+MT.h"; sourceTree = "<group>"; };
  336. F423D413230C450A008D0675 /* NSLayoutConstraint+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+MT.m"; sourceTree = "<group>"; };
  337. F44D324F230D1CEA00735FAD /* DVPieCenterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DVPieCenterView.m; sourceTree = "<group>"; };
  338. F44D3250230D1CEA00735FAD /* DVFoodPieModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DVFoodPieModel.m; sourceTree = "<group>"; };
  339. F44D3251230D1CEA00735FAD /* DVPieChart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DVPieChart.h; sourceTree = "<group>"; };
  340. F44D3252230D1CEA00735FAD /* DVPieCenterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DVPieCenterView.h; sourceTree = "<group>"; };
  341. F44D3253230D1CEA00735FAD /* DVFoodPieModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DVFoodPieModel.h; sourceTree = "<group>"; };
  342. F44D3254230D1CEA00735FAD /* DVPieChart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DVPieChart.m; sourceTree = "<group>"; };
  343. F451BFC425CC0654000EEE1C /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; };
  344. F451BFC625CC0660000EEE1C /* Pods_Jianbinglian.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Pods_Jianbinglian.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  345. F478D7DB25ADA20E006B4E61 /* MTLoginViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTLoginViewModel.h; sourceTree = "<group>"; };
  346. F478D7DC25ADA20E006B4E61 /* MTLoginViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTLoginViewModel.m; sourceTree = "<group>"; };
  347. F478D7DE25ADA20E006B4E61 /* MTLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTLoginViewController.h; sourceTree = "<group>"; };
  348. F478D7DF25ADA20E006B4E61 /* MTLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTLoginViewController.m; sourceTree = "<group>"; };
  349. F478D7E125ADA20E006B4E61 /* MTLoginModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTLoginModel.h; sourceTree = "<group>"; };
  350. F478D7E225ADA20E006B4E61 /* MTLoginModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTLoginModel.m; sourceTree = "<group>"; };
  351. F478D7E425ADA20E006B4E61 /* MTLoginHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTLoginHeaderView.h; sourceTree = "<group>"; };
  352. F478D7E625ADA20E006B4E61 /* MTLoginHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTLoginHeaderView.m; sourceTree = "<group>"; };
  353. F478D80E25ADA403006B4E61 /* MTRegistViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTRegistViewModel.h; sourceTree = "<group>"; };
  354. F478D80F25ADA403006B4E61 /* MTRegistViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTRegistViewModel.m; sourceTree = "<group>"; };
  355. F478D81125ADA403006B4E61 /* MTRegistViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTRegistViewController.m; sourceTree = "<group>"; };
  356. F478D81225ADA403006B4E61 /* MTRegistViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTRegistViewController.h; sourceTree = "<group>"; };
  357. F478D81425ADA403006B4E61 /* MTRegistModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTRegistModel.m; sourceTree = "<group>"; };
  358. F478D81525ADA403006B4E61 /* MTRegistModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTRegistModel.h; sourceTree = "<group>"; };
  359. F478D81725ADA403006B4E61 /* MTRegistHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTRegistHeaderView.m; sourceTree = "<group>"; };
  360. F478D81A25ADA403006B4E61 /* MTRegistHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTRegistHeaderView.h; sourceTree = "<group>"; };
  361. F478D82825ADA4C0006B4E61 /* MTForgetViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTForgetViewModel.m; sourceTree = "<group>"; };
  362. F478D82925ADA4C0006B4E61 /* MTForgetViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTForgetViewModel.h; sourceTree = "<group>"; };
  363. F478D82B25ADA4C0006B4E61 /* MTForgetViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTForgetViewController.h; sourceTree = "<group>"; };
  364. F478D82C25ADA4C0006B4E61 /* MTForgetViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTForgetViewController.m; sourceTree = "<group>"; };
  365. F478D82E25ADA4C0006B4E61 /* MTForgetModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTForgetModel.m; sourceTree = "<group>"; };
  366. F478D82F25ADA4C0006B4E61 /* MTForgetModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTForgetModel.h; sourceTree = "<group>"; };
  367. F478D83125ADA4C0006B4E61 /* MTForgetHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTForgetHeaderView.h; sourceTree = "<group>"; };
  368. F478D83325ADA4C0006B4E61 /* MTForgetHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTForgetHeaderView.m; sourceTree = "<group>"; };
  369. F478D84325ADA830006B4E61 /* MTLoginHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTLoginHeaderView.xib; sourceTree = "<group>"; };
  370. F478D84825ADA864006B4E61 /* MTRegistHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTRegistHeaderView.xib; sourceTree = "<group>"; };
  371. F478D84D25ADA8B3006B4E61 /* MTForgetHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTForgetHeaderView.xib; sourceTree = "<group>"; };
  372. F478D85425AEDF57006B4E61 /* MTBingViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBingViewModel.m; sourceTree = "<group>"; };
  373. F478D85525AEDF57006B4E61 /* MTBingViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBingViewModel.h; sourceTree = "<group>"; };
  374. F478D85725AEDF57006B4E61 /* MTBingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBingViewController.h; sourceTree = "<group>"; };
  375. F478D85825AEDF57006B4E61 /* MTBingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBingViewController.m; sourceTree = "<group>"; };
  376. F478D85A25AEDF57006B4E61 /* MTBingHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBingHeaderView.h; sourceTree = "<group>"; };
  377. F478D85B25AEDF57006B4E61 /* MTBingHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBingHeaderView.m; sourceTree = "<group>"; };
  378. F478D85D25AEDF58006B4E61 /* MTBingModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTBingModel.m; sourceTree = "<group>"; };
  379. F478D85E25AEDF58006B4E61 /* MTBingModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTBingModel.h; sourceTree = "<group>"; };
  380. F478D86625AEDF97006B4E61 /* MTBingHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTBingHeaderView.xib; sourceTree = "<group>"; };
  381. F478D86C25B02D00006B4E61 /* MTXieyiViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTXieyiViewController.h; sourceTree = "<group>"; };
  382. F478D86D25B02D00006B4E61 /* MTXieyiViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTXieyiViewController.m; sourceTree = "<group>"; };
  383. F478D87B25B06030006B4E61 /* UIImage+getSize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+getSize.h"; sourceTree = "<group>"; };
  384. F478D87C25B06030006B4E61 /* UIImage+getSize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+getSize.m"; sourceTree = "<group>"; };
  385. F478D8A025B43D37006B4E61 /* MTUserInforModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTUserInforModel.m; sourceTree = "<group>"; };
  386. F478D8A125B43D37006B4E61 /* MTUserInforModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTUserInforModel.h; sourceTree = "<group>"; };
  387. F478D8CB25B80747006B4E61 /* MTConfigModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTConfigModel.h; sourceTree = "<group>"; };
  388. F478D8CC25B80747006B4E61 /* MTConfigModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTConfigModel.m; sourceTree = "<group>"; };
  389. F478D8E425BC01DC006B4E61 /* MTPhotoView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTPhotoView.h; sourceTree = "<group>"; };
  390. F478D8E525BC01DC006B4E61 /* MTPhotoView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTPhotoView.m; sourceTree = "<group>"; };
  391. F478D8ED25BC0344006B4E61 /* addImg.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = addImg.png; sourceTree = "<group>"; };
  392. F478D8EE25BC0345006B4E61 /* addImg@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "addImg@2x.png"; sourceTree = "<group>"; };
  393. F478D8EF25BC0345006B4E61 /* addImg@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "addImg@3x.png"; sourceTree = "<group>"; };
  394. F478D8F625BC0444006B4E61 /* MTPhotoConfigModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTPhotoConfigModel.h; sourceTree = "<group>"; };
  395. F478D8F725BC0444006B4E61 /* MTPhotoConfigModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTPhotoConfigModel.m; sourceTree = "<group>"; };
  396. F478D8FC25BC15CB006B4E61 /* imgDel.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = imgDel.png; sourceTree = "<group>"; };
  397. F479B0C42319639A00C58D9D /* MTUpLoadViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTUpLoadViewModel.h; sourceTree = "<group>"; };
  398. F479B0C52319639A00C58D9D /* MTUpLoadViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTUpLoadViewModel.m; sourceTree = "<group>"; };
  399. F491D4332351BCD200D34A4A /* MTCopyLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTCopyLabel.h; sourceTree = "<group>"; };
  400. F491D4342351BCD200D34A4A /* MTCopyLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTCopyLabel.m; sourceTree = "<group>"; };
  401. F497E532230FB73F00939809 /* MTWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTWebViewController.m; sourceTree = "<group>"; };
  402. F497E533230FB73F00939809 /* MTWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTWebViewController.h; sourceTree = "<group>"; };
  403. F4E51C33258A004200135614 /* MTTimePickView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTTimePickView.h; sourceTree = "<group>"; };
  404. F4E51C34258A004200135614 /* MTTimePickView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTTimePickView.m; sourceTree = "<group>"; };
  405. F4E51C39258A005E00135614 /* MTTimePickView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTTimePickView.xib; sourceTree = "<group>"; };
  406. F4E99CB025903B1E002850DD /* MTStartView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTStartView.m; sourceTree = "<group>"; };
  407. F4E99CB125903B1E002850DD /* MTStartView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MTStartView.xib; sourceTree = "<group>"; };
  408. F4E99CB225903B1F002850DD /* MTStartView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTStartView.h; sourceTree = "<group>"; };
  409. F4E99DF42595C611002850DD /* MTMyTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTMyTableViewCell.h; sourceTree = "<group>"; };
  410. F4E99DF52595C611002850DD /* MTMyTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTMyTableViewCell.m; sourceTree = "<group>"; };
  411. F4E99DF62595C611002850DD /* MTMyTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTMyTableViewCell.xib; sourceTree = "<group>"; };
  412. F4E99DFC2595C9BD002850DD /* MTMyHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTMyHeaderView.xib; sourceTree = "<group>"; };
  413. F4E99EC4259AF338002850DD /* GJ_Me_WalletViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GJ_Me_WalletViewController.m; sourceTree = "<group>"; };
  414. F4E99EC6259AF338002850DD /* GJ_Me_Wallet_Cell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GJ_Me_Wallet_Cell.h; sourceTree = "<group>"; };
  415. F4E99EC7259AF338002850DD /* GJ_Me_Wallet_HeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GJ_Me_Wallet_HeaderView.xib; sourceTree = "<group>"; };
  416. F4E99EC8259AF338002850DD /* GJ_Me_Wallet_HeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GJ_Me_Wallet_HeaderView.h; sourceTree = "<group>"; };
  417. F4E99EC9259AF338002850DD /* GJ_Me_Wallet_Cell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GJ_Me_Wallet_Cell.m; sourceTree = "<group>"; };
  418. F4E99ECA259AF338002850DD /* GJ_Me_Wallet_HeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GJ_Me_Wallet_HeaderView.m; sourceTree = "<group>"; };
  419. F4E99ECB259AF338002850DD /* GJ_Me_Wallet_Cell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GJ_Me_Wallet_Cell.xib; sourceTree = "<group>"; };
  420. F4E99ECD259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GJ_Me_CashOut_ZFBViewController.m; sourceTree = "<group>"; };
  421. F4E99ECE259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GJ_Me_CashOut_ZFBViewController.xib; sourceTree = "<group>"; };
  422. F4E99ECF259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GJ_Me_CashOut_ZFBViewController.h; sourceTree = "<group>"; };
  423. F4E99ED0259AF338002850DD /* GJ_Me_WalletViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GJ_Me_WalletViewController.h; sourceTree = "<group>"; };
  424. F4E99ED2259AF338002850DD /* GJ_Me_CashOut_WXViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GJ_Me_CashOut_WXViewController.xib; sourceTree = "<group>"; };
  425. F4E99ED3259AF338002850DD /* GJ_Me_CashOut_WXViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GJ_Me_CashOut_WXViewController.h; sourceTree = "<group>"; };
  426. F4E99ED4259AF338002850DD /* GJ_Me_CashOut_WXViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GJ_Me_CashOut_WXViewController.m; sourceTree = "<group>"; };
  427. F4E99ED6259AF338002850DD /* GJ_Me_CashOut_BankViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GJ_Me_CashOut_BankViewController.h; sourceTree = "<group>"; };
  428. F4E99ED7259AF338002850DD /* GJ_Me_CashOut_BankViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GJ_Me_CashOut_BankViewController.m; sourceTree = "<group>"; };
  429. F4E99ED8259AF338002850DD /* GJ_Me_CashOut_BankViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GJ_Me_CashOut_BankViewController.xib; sourceTree = "<group>"; };
  430. F4E99F6D259B2C92002850DD /* MTPayInViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTPayInViewController.h; sourceTree = "<group>"; };
  431. F4E99F6E259B2C92002850DD /* MTPayInViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTPayInViewController.m; sourceTree = "<group>"; };
  432. F4E99F70259B2C92002850DD /* MTPayInModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTPayInModel.m; sourceTree = "<group>"; };
  433. F4E99F71259B2C92002850DD /* MTPayInModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTPayInModel.h; sourceTree = "<group>"; };
  434. F4E99F73259B2C92002850DD /* MTPayInTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTPayInTableViewCell.h; sourceTree = "<group>"; };
  435. F4E99F74259B2C92002850DD /* MTPayInHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTPayInHeaderView.m; sourceTree = "<group>"; };
  436. F4E99F75259B2C92002850DD /* MTPayInHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTPayInHeaderView.h; sourceTree = "<group>"; };
  437. F4E99F76259B2C92002850DD /* MTPayInTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTPayInTableViewCell.m; sourceTree = "<group>"; };
  438. F4E99F78259B2C92002850DD /* MTPayInViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTPayInViewModel.m; sourceTree = "<group>"; };
  439. F4E99F79259B2C92002850DD /* MTPayInViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTPayInViewModel.h; sourceTree = "<group>"; };
  440. F4E99F82259B2E10002850DD /* MTPayInHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTPayInHeaderView.xib; sourceTree = "<group>"; };
  441. F4E99F8C259D7EBF002850DD /* MTSettingViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTSettingViewModel.h; sourceTree = "<group>"; };
  442. F4E99F8D259D7EBF002850DD /* MTSettingViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTSettingViewModel.m; sourceTree = "<group>"; };
  443. F4E99F8F259D7EBF002850DD /* MTSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTSettingViewController.h; sourceTree = "<group>"; };
  444. F4E99F90259D7EBF002850DD /* MTSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTSettingViewController.m; sourceTree = "<group>"; };
  445. F4E99F92259D7EBF002850DD /* MTSettingModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTSettingModel.h; sourceTree = "<group>"; };
  446. F4E99F93259D7EBF002850DD /* MTSettingModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTSettingModel.m; sourceTree = "<group>"; };
  447. F4E99F95259D7EC0002850DD /* MTSettingHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTSettingHeaderView.h; sourceTree = "<group>"; };
  448. F4E99F96259D7EC0002850DD /* MTSettingHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTSettingHeaderView.m; sourceTree = "<group>"; };
  449. F4E99F9E259D7EFD002850DD /* MTSettingHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTSettingHeaderView.xib; sourceTree = "<group>"; };
  450. F4E99FA5259DA696002850DD /* FFMineRetrievePayPwdController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FFMineRetrievePayPwdController.m; sourceTree = "<group>"; };
  451. F4E99FA6259DA697002850DD /* FFMineRetrievePayPwdController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FFMineRetrievePayPwdController.h; sourceTree = "<group>"; };
  452. F4E99FAB259DA697002850DD /* FFMinePayPasswordController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FFMinePayPasswordController.h; sourceTree = "<group>"; };
  453. F4E99FAC259DA697002850DD /* FFMinePayPasswordController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FFMinePayPasswordController.m; sourceTree = "<group>"; };
  454. F4E99FBB259DB1B1002850DD /* MTInfoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTInfoModel.m; sourceTree = "<group>"; };
  455. F4E99FBC259DB1B1002850DD /* MTInfoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTInfoModel.h; sourceTree = "<group>"; };
  456. F4E99FBE259DB1B1002850DD /* MTInfoHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTInfoHeaderView.h; sourceTree = "<group>"; };
  457. F4E99FBF259DB1B1002850DD /* MTInfoHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTInfoHeaderView.m; sourceTree = "<group>"; };
  458. F4E99FC1259DB1B1002850DD /* MTInfoViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTInfoViewModel.m; sourceTree = "<group>"; };
  459. F4E99FC2259DB1B1002850DD /* MTInfoViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTInfoViewModel.h; sourceTree = "<group>"; };
  460. F4E99FC4259DB1B1002850DD /* MTInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTInfoViewController.m; sourceTree = "<group>"; };
  461. F4E99FC5259DB1B1002850DD /* MTInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTInfoViewController.h; sourceTree = "<group>"; };
  462. F4E99FCD259DB1C6002850DD /* MTInfoHeaderView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTInfoHeaderView.xib; sourceTree = "<group>"; };
  463. F4ED175524C03A17003D7B3F /* DYFCodeScanner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DYFCodeScanner.h; sourceTree = "<group>"; };
  464. F4ED175624C03A17003D7B3F /* DYFCodeScannerMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DYFCodeScannerMacros.h; sourceTree = "<group>"; };
  465. F4ED175724C03A17003D7B3F /* DYFCodeScannerPreView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DYFCodeScannerPreView.h; sourceTree = "<group>"; };
  466. F4ED175824C03A17003D7B3F /* DYFCodeScannerPreView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DYFCodeScannerPreView.m; sourceTree = "<group>"; };
  467. F4ED175924C03A17003D7B3F /* DYFCodeScannerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DYFCodeScannerViewController.h; sourceTree = "<group>"; };
  468. F4ED175A24C03A17003D7B3F /* DYFCodeScannerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DYFCodeScannerViewController.m; sourceTree = "<group>"; };
  469. F4ED175B24C03A17003D7B3F /* DYFQRCodeImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DYFQRCodeImageView.h; sourceTree = "<group>"; };
  470. F4ED175C24C03A17003D7B3F /* DYFQRCodeImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DYFQRCodeImageView.m; sourceTree = "<group>"; };
  471. F4ED175D24C03A17003D7B3F /* UIButton+Corner.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Corner.h"; sourceTree = "<group>"; };
  472. F4ED175E24C03A17003D7B3F /* UIButton+Corner.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Corner.m"; sourceTree = "<group>"; };
  473. F4ED175F24C03A17003D7B3F /* UIImage+QRCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+QRCode.h"; sourceTree = "<group>"; };
  474. F4ED176024C03A17003D7B3F /* UIImage+QRCode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+QRCode.m"; sourceTree = "<group>"; };
  475. F4ED176624C03ACB003D7B3F /* UIImage+MT.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MT.h"; sourceTree = "<group>"; };
  476. F4ED176724C03ACB003D7B3F /* UIImage+MT.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MT.m"; sourceTree = "<group>"; };
  477. F4ED176A24C03BD9003D7B3F /* WXApiManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiManager.h; sourceTree = "<group>"; };
  478. F4ED176B24C03BD9003D7B3F /* WXApiManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WXApiManager.m; sourceTree = "<group>"; };
  479. F4ED176D24C03BD9003D7B3F /* MTImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTImageManager.h; sourceTree = "<group>"; };
  480. F4ED176E24C03BD9003D7B3F /* MTImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTImageManager.m; sourceTree = "<group>"; };
  481. F4ED177324C03BD9003D7B3F /* MTAssetManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTAssetManager.h; sourceTree = "<group>"; };
  482. F4ED177424C03BD9003D7B3F /* MTAssetManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTAssetManager.m; sourceTree = "<group>"; };
  483. F4ED177624C03BD9003D7B3F /* MTApplePayTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTApplePayTool.h; sourceTree = "<group>"; };
  484. F4ED177724C03BD9003D7B3F /* MTApplePayTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTApplePayTool.m; sourceTree = "<group>"; };
  485. F4ED177924C03BD9003D7B3F /* MTVideoDownTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTVideoDownTool.h; sourceTree = "<group>"; };
  486. F4ED177A24C03BD9003D7B3F /* MTVideoDownTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTVideoDownTool.m; sourceTree = "<group>"; };
  487. F4ED178324C042D5003D7B3F /* EBBannerView+Categories.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "EBBannerView+Categories.h"; sourceTree = "<group>"; };
  488. F4ED178424C042D5003D7B3F /* EBBannerView+Categories.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "EBBannerView+Categories.m"; sourceTree = "<group>"; };
  489. F4ED178524C042D5003D7B3F /* EBBannerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EBBannerView.m; sourceTree = "<group>"; };
  490. F4ED178624C042D5003D7B3F /* EBBannerView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EBBannerView.xib; sourceTree = "<group>"; };
  491. F4ED178724C042D5003D7B3F /* EBBannerViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EBBannerViewController.m; sourceTree = "<group>"; };
  492. F4ED178824C042D5003D7B3F /* EBBannerViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EBBannerViewController.xib; sourceTree = "<group>"; };
  493. F4ED178924C042D5003D7B3F /* EBBannerViewMaker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EBBannerViewMaker.m; sourceTree = "<group>"; };
  494. F4ED178A24C042D5003D7B3F /* EBBannerWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EBBannerWindow.h; sourceTree = "<group>"; };
  495. F4ED178B24C042D5003D7B3F /* EBBannerWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EBBannerWindow.m; sourceTree = "<group>"; };
  496. F4ED178C24C042D5003D7B3F /* EBCustomBannerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EBCustomBannerView.m; sourceTree = "<group>"; };
  497. F4ED178D24C042D5003D7B3F /* EBEmptyWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EBEmptyWindow.h; sourceTree = "<group>"; };
  498. F4ED178E24C042D5003D7B3F /* EBEmptyWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EBEmptyWindow.m; sourceTree = "<group>"; };
  499. F4ED178F24C042D5003D7B3F /* EBMuteDetector.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EBMuteDetector.h; sourceTree = "<group>"; };
  500. F4ED179024C042D5003D7B3F /* EBMuteDetector.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EBMuteDetector.m; sourceTree = "<group>"; };
  501. F4ED179124C042D5003D7B3F /* EBMuteDetector.mp3 */ = {isa = PBXFileReference; lastKnownFileType = audio.mp3; path = EBMuteDetector.mp3; sourceTree = "<group>"; };
  502. F4ED179224C042D5003D7B3F /* EBSystemBannerView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EBSystemBannerView.xib; sourceTree = "<group>"; };
  503. F4ED179324C042D5003D7B3F /* EBBannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EBBannerView.h; sourceTree = "<group>"; };
  504. F4ED179424C042D5003D7B3F /* EBBannerViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EBBannerViewController.h; sourceTree = "<group>"; };
  505. F4ED179524C042D5003D7B3F /* EBCustomBannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EBCustomBannerView.h; sourceTree = "<group>"; };
  506. F4F5BC72258B4FBC00372E4D /* NSDate+Category.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Category.h"; sourceTree = "<group>"; };
  507. F4F5BC73258B4FBC00372E4D /* CustomDatePickerViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomDatePickerViewModel.m; sourceTree = "<group>"; };
  508. F4F5BC74258B4FBC00372E4D /* NSDate+Category.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Category.m"; sourceTree = "<group>"; };
  509. F4F5BC75258B4FBC00372E4D /* CustomDatePickerViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomDatePickerViewModel.h; sourceTree = "<group>"; };
  510. F4F5BCD7258C810600372E4D /* MTAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MTAlertView.m; sourceTree = "<group>"; };
  511. F4F5BCD8258C810600372E4D /* MTAlertView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MTAlertView.xib; sourceTree = "<group>"; };
  512. F4F5BCD9258C810600372E4D /* MTAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MTAlertView.h; sourceTree = "<group>"; };
  513. F4F5BD04258C91F700372E4D /* MTNoDataView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MTNoDataView.h; sourceTree = "<group>"; };
  514. F4F5BD05258C91F700372E4D /* MTNoDataView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MTNoDataView.m; sourceTree = "<group>"; };
  515. F4F5BD0D258C921800372E4D /* MTNoDataView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MTNoDataView.xib; sourceTree = "<group>"; };
  516. /* End PBXFileReference section */
  517. /* Begin PBXFrameworksBuildPhase section */
  518. 45C4DF2722FD42300072EE2F /* Frameworks */ = {
  519. isa = PBXFrameworksBuildPhase;
  520. buildActionMask = 2147483647;
  521. files = (
  522. F451BFC725CC0660000EEE1C /* Pods_Jianbinglian.framework in Frameworks */,
  523. F451BFC525CC0655000EEE1C /* ExternalAccessory.framework in Frameworks */,
  524. );
  525. runOnlyForDeploymentPostprocessing = 0;
  526. };
  527. 45C4DF3F22FD42320072EE2F /* Frameworks */ = {
  528. isa = PBXFrameworksBuildPhase;
  529. buildActionMask = 2147483647;
  530. files = (
  531. 5C6F095755A4F298376DFFC4 /* Pods_JianbinglianTests.framework in Frameworks */,
  532. );
  533. runOnlyForDeploymentPostprocessing = 0;
  534. };
  535. 45C4DF4A22FD42320072EE2F /* Frameworks */ = {
  536. isa = PBXFrameworksBuildPhase;
  537. buildActionMask = 2147483647;
  538. files = (
  539. 8E6494CEAAD81ED909A7FCE3 /* Pods_JianbinglianUITests.framework in Frameworks */,
  540. );
  541. runOnlyForDeploymentPostprocessing = 0;
  542. };
  543. /* End PBXFrameworksBuildPhase section */
  544. /* Begin PBXGroup section */
  545. 45C4DF2122FD422F0072EE2F = {
  546. isa = PBXGroup;
  547. children = (
  548. 45C4DF2C22FD42300072EE2F /* Jianbinglian */,
  549. 45C4DF4522FD42320072EE2F /* JianbinglianTests */,
  550. 45C4DF5022FD42320072EE2F /* JianbinglianUITests */,
  551. 45C4DF2B22FD42300072EE2F /* Products */,
  552. 5D1B287FB8D59AEE281D7037 /* Pods */,
  553. EB527EC4116F16B1FC472C2A /* Frameworks */,
  554. );
  555. sourceTree = "<group>";
  556. };
  557. 45C4DF2B22FD42300072EE2F /* Products */ = {
  558. isa = PBXGroup;
  559. children = (
  560. 45C4DF2A22FD42300072EE2F /* Jianbinglian.app */,
  561. 45C4DF4222FD42320072EE2F /* JianbinglianTests.xctest */,
  562. 45C4DF4D22FD42320072EE2F /* JianbinglianUITests.xctest */,
  563. );
  564. name = Products;
  565. sourceTree = "<group>";
  566. };
  567. 45C4DF2C22FD42300072EE2F /* Jianbinglian */ = {
  568. isa = PBXGroup;
  569. children = (
  570. F414BCA623053EB500CA26D8 /* Macros(宏) */,
  571. F414BCCE23054E0700CA26D8 /* Lib(第三方库) */,
  572. F414BCD72305507500CA26D8 /* Base(基类) */,
  573. F4051E5823069CFC00AD2B9B /* Category(分类扩展) */,
  574. F414BCB6230541F300CA26D8 /* Tools(工具类) */,
  575. F414BD2523055D7400CA26D8 /* Main(主类) */,
  576. F4051E43230693E100AD2B9B /* Other */,
  577. );
  578. path = Jianbinglian;
  579. sourceTree = "<group>";
  580. };
  581. 45C4DF4522FD42320072EE2F /* JianbinglianTests */ = {
  582. isa = PBXGroup;
  583. children = (
  584. 45C4DF4622FD42320072EE2F /* JianbinglianTests.m */,
  585. 45C4DF4822FD42320072EE2F /* Info.plist */,
  586. );
  587. path = JianbinglianTests;
  588. sourceTree = "<group>";
  589. };
  590. 45C4DF5022FD42320072EE2F /* JianbinglianUITests */ = {
  591. isa = PBXGroup;
  592. children = (
  593. 45C4DF5122FD42320072EE2F /* JianbinglianUITests.m */,
  594. 45C4DF5322FD42320072EE2F /* Info.plist */,
  595. );
  596. path = JianbinglianUITests;
  597. sourceTree = "<group>";
  598. };
  599. 5D1B287FB8D59AEE281D7037 /* Pods */ = {
  600. isa = PBXGroup;
  601. children = (
  602. 8C2D09D5B94C209D63BA7C67 /* Pods-Jianbinglian.debug.xcconfig */,
  603. 673D0FABDEC01E041559FB9A /* Pods-Jianbinglian.release.xcconfig */,
  604. 7AC95B38A7A6EEA0F29C5F38 /* Pods-JianbinglianTests.debug.xcconfig */,
  605. C613242FEA4827FCB0291F7A /* Pods-JianbinglianTests.release.xcconfig */,
  606. 42B2BA49C2CD891CFA3AFA61 /* Pods-JianbinglianUITests.debug.xcconfig */,
  607. 03C6E27E12294EBE8B7F48DC /* Pods-JianbinglianUITests.release.xcconfig */,
  608. );
  609. path = Pods;
  610. sourceTree = "<group>";
  611. };
  612. EB527EC4116F16B1FC472C2A /* Frameworks */ = {
  613. isa = PBXGroup;
  614. children = (
  615. F451BFC625CC0660000EEE1C /* Pods_Jianbinglian.framework */,
  616. F451BFC425CC0654000EEE1C /* ExternalAccessory.framework */,
  617. 48CAD46FAFF35F3578C3016B /* Pods_JianbinglianTests.framework */,
  618. 08253954140C8723BFFEFA2C /* Pods_JianbinglianUITests.framework */,
  619. );
  620. name = Frameworks;
  621. sourceTree = "<group>";
  622. };
  623. F4029E102307931100D85DD0 /* BaseNavigationController */ = {
  624. isa = PBXGroup;
  625. children = (
  626. F414BCEA2305537F00CA26D8 /* CustomNaviBarView.h */,
  627. F414BCED2305537F00CA26D8 /* CustomNaviBarView.m */,
  628. F414BCE72305537F00CA26D8 /* CustomNavigationController.h */,
  629. F414BCEB2305537F00CA26D8 /* CustomNavigationController.m */,
  630. );
  631. path = BaseNavigationController;
  632. sourceTree = "<group>";
  633. };
  634. F4029E3723079AB800D85DD0 /* Controller */ = {
  635. isa = PBXGroup;
  636. children = (
  637. F4029E3823079AB800D85DD0 /* MTMyViewController.h */,
  638. F4029E3923079AB800D85DD0 /* MTMyViewController.m */,
  639. );
  640. path = Controller;
  641. sourceTree = "<group>";
  642. };
  643. F4029E3A23079AB800D85DD0 /* ViewModel */ = {
  644. isa = PBXGroup;
  645. children = (
  646. F4029E3C23079AB800D85DD0 /* MTMyViewModel.h */,
  647. F4029E3B23079AB800D85DD0 /* MTMyViewModel.m */,
  648. );
  649. path = ViewModel;
  650. sourceTree = "<group>";
  651. };
  652. F4029E3D23079AB800D85DD0 /* Model */ = {
  653. isa = PBXGroup;
  654. children = (
  655. F4029E3F23079AB800D85DD0 /* MTMyModel.h */,
  656. F4029E3E23079AB800D85DD0 /* MTMyModel.m */,
  657. );
  658. path = Model;
  659. sourceTree = "<group>";
  660. };
  661. F4029E4023079AB800D85DD0 /* View */ = {
  662. isa = PBXGroup;
  663. children = (
  664. F4029E4123079AB800D85DD0 /* MTMyHeaderView.h */,
  665. F4029E4323079AB800D85DD0 /* MTMyHeaderView.m */,
  666. F4E99DFC2595C9BD002850DD /* MTMyHeaderView.xib */,
  667. F4E99DF42595C611002850DD /* MTMyTableViewCell.h */,
  668. F4E99DF52595C611002850DD /* MTMyTableViewCell.m */,
  669. F4E99DF62595C611002850DD /* MTMyTableViewCell.xib */,
  670. );
  671. path = View;
  672. sourceTree = "<group>";
  673. };
  674. F4029E4A23079D1500D85DD0 /* My */ = {
  675. isa = PBXGroup;
  676. children = (
  677. F4029E3723079AB800D85DD0 /* Controller */,
  678. F4029E3D23079AB800D85DD0 /* Model */,
  679. F4029E4023079AB800D85DD0 /* View */,
  680. F4029E3A23079AB800D85DD0 /* ViewModel */,
  681. );
  682. path = My;
  683. sourceTree = "<group>";
  684. };
  685. F4051E17230686F000AD2B9B /* MD5Tool */ = {
  686. isa = PBXGroup;
  687. children = (
  688. F4051E1A2306874200AD2B9B /* MTMD5Tool.h */,
  689. F4051E1B2306874200AD2B9B /* MTMD5Tool.m */,
  690. );
  691. path = MD5Tool;
  692. sourceTree = "<group>";
  693. };
  694. F4051E18230686FC00AD2B9B /* StringTool */ = {
  695. isa = PBXGroup;
  696. children = (
  697. F4051E1D2306878C00AD2B9B /* MTStringTool.h */,
  698. F4051E1E2306878C00AD2B9B /* MTStringTool.m */,
  699. );
  700. path = StringTool;
  701. sourceTree = "<group>";
  702. };
  703. F4051E192306870500AD2B9B /* TimeTool */ = {
  704. isa = PBXGroup;
  705. children = (
  706. F4051E20230687DE00AD2B9B /* MTTimeTool.h */,
  707. F4051E21230687DE00AD2B9B /* MTTimeTool.m */,
  708. );
  709. path = TimeTool;
  710. sourceTree = "<group>";
  711. };
  712. F4051E2F2306937200AD2B9B /* JYRouter */ = {
  713. isa = PBXGroup;
  714. children = (
  715. F4051E312306937200AD2B9B /* JYRouter.h */,
  716. F4051E392306937200AD2B9B /* JYRouter.m */,
  717. F4051E382306937200AD2B9B /* Routable.h */,
  718. F4051E302306937200AD2B9B /* Routable.m */,
  719. );
  720. path = JYRouter;
  721. sourceTree = "<group>";
  722. };
  723. F4051E43230693E100AD2B9B /* Other */ = {
  724. isa = PBXGroup;
  725. children = (
  726. 45C4DF2D22FD42300072EE2F /* AppDelegate.h */,
  727. 45C4DF2E22FD42300072EE2F /* AppDelegate.m */,
  728. 45C4DF3322FD42300072EE2F /* Main.storyboard */,
  729. 45C4DF3622FD42310072EE2F /* Assets.xcassets */,
  730. 45C4DF3822FD42310072EE2F /* LaunchScreen.storyboard */,
  731. 45C4DF3B22FD42310072EE2F /* Info.plist */,
  732. 45C4DF3C22FD42310072EE2F /* main.m */,
  733. F414BCA323053D1F00CA26D8 /* PrefixHeader.pch */,
  734. F414BCDE2305521200CA26D8 /* Localizable.strings */,
  735. );
  736. path = Other;
  737. sourceTree = "<group>";
  738. };
  739. F4051E442306951C00AD2B9B /* FDFullscreenPopGesture */ = {
  740. isa = PBXGroup;
  741. children = (
  742. F4051E452306951C00AD2B9B /* UINavigationController+FDFullscreenPopGesture.h */,
  743. F4051E462306951C00AD2B9B /* UINavigationController+FDFullscreenPopGesture.m */,
  744. );
  745. path = FDFullscreenPopGesture;
  746. sourceTree = "<group>";
  747. };
  748. F4051E4823069AC400AD2B9B /* WMPageController */ = {
  749. isa = PBXGroup;
  750. children = (
  751. F4051E4B23069AC400AD2B9B /* WMMenuItem.h */,
  752. F4051E4E23069AC400AD2B9B /* WMMenuItem.m */,
  753. F4051E4C23069AC400AD2B9B /* WMMenuView.h */,
  754. F4051E5123069AC400AD2B9B /* WMMenuView.m */,
  755. F4051E4F23069AC400AD2B9B /* WMPageController.h */,
  756. F4051E4A23069AC400AD2B9B /* WMPageController.m */,
  757. F4051E4D23069AC400AD2B9B /* WMProgressView.h */,
  758. F4051E5223069AC400AD2B9B /* WMProgressView.m */,
  759. F4051E4923069AC400AD2B9B /* WMScrollView.h */,
  760. F4051E5023069AC400AD2B9B /* WMScrollView.m */,
  761. );
  762. path = WMPageController;
  763. sourceTree = "<group>";
  764. };
  765. F4051E5823069CFC00AD2B9B /* Category(分类扩展) */ = {
  766. isa = PBXGroup;
  767. children = (
  768. F478D87B25B06030006B4E61 /* UIImage+getSize.h */,
  769. F478D87C25B06030006B4E61 /* UIImage+getSize.m */,
  770. F4051E5A23069CFC00AD2B9B /* NSString+MT.h */,
  771. F4051E5C23069CFC00AD2B9B /* NSString+MT.m */,
  772. F4051E5B23069CFC00AD2B9B /* UIColor+MT.h */,
  773. F4051E5E23069CFC00AD2B9B /* UIColor+MT.m */,
  774. F4051E5D23069CFC00AD2B9B /* UIView+MT.h */,
  775. F4051E5923069CFC00AD2B9B /* UIView+MT.m */,
  776. F4029E4E2307ECA600D85DD0 /* UIImageView+MT.h */,
  777. F4029E4F2307ECA600D85DD0 /* UIImageView+MT.m */,
  778. F423D40E230C450A008D0675 /* NSLayoutConstraint+MT.h */,
  779. F423D413230C450A008D0675 /* NSLayoutConstraint+MT.m */,
  780. F423D40C230C450A008D0675 /* UIButton+MT.h */,
  781. F423D40A230C4509008D0675 /* UIButton+MT.m */,
  782. F423D412230C450A008D0675 /* UILabel+MT.h */,
  783. F423D40B230C450A008D0675 /* UILabel+MT.m */,
  784. F423D40D230C450A008D0675 /* UITextField+MT.h */,
  785. F423D410230C450A008D0675 /* UITextField+MT.m */,
  786. F423D40F230C450A008D0675 /* UITextView+MT.h */,
  787. F423D411230C450A008D0675 /* UITextView+MT.m */,
  788. F4ED176624C03ACB003D7B3F /* UIImage+MT.h */,
  789. F4ED176724C03ACB003D7B3F /* UIImage+MT.m */,
  790. );
  791. path = "Category(分类扩展)";
  792. sourceTree = "<group>";
  793. };
  794. F4051E6223069E9700AD2B9B /* NetworkTool */ = {
  795. isa = PBXGroup;
  796. children = (
  797. F479B0C42319639A00C58D9D /* MTUpLoadViewModel.h */,
  798. F479B0C52319639A00C58D9D /* MTUpLoadViewModel.m */,
  799. F4051E6523069E9700AD2B9B /* MTCacheTool.h */,
  800. F4051E6323069E9700AD2B9B /* MTCacheTool.m */,
  801. F4051E6423069E9700AD2B9B /* MTHttpTool.h */,
  802. F4051E6623069E9700AD2B9B /* MTHttpTool.m */,
  803. );
  804. path = NetworkTool;
  805. sourceTree = "<group>";
  806. };
  807. F414BCA623053EB500CA26D8 /* Macros(宏) */ = {
  808. isa = PBXGroup;
  809. children = (
  810. F414BCA723053EB500CA26D8 /* UtilsMacro.h */,
  811. F414BCA823053EB500CA26D8 /* VendorMacro.h */,
  812. F414BCA923053EB500CA26D8 /* ApiMacro.h */,
  813. F414BCAA23053EB500CA26D8 /* NotificationMacro.h */,
  814. );
  815. path = "Macros(宏)";
  816. sourceTree = "<group>";
  817. };
  818. F414BCB6230541F300CA26D8 /* Tools(工具类) */ = {
  819. isa = PBXGroup;
  820. children = (
  821. F478D8E325BC01BE006B4E61 /* PhotoView */,
  822. F4E99CAF25903AE6002850DD /* StarView */,
  823. F4F5BD03258C91E100372E4D /* NoDataView */,
  824. F4F5BCD6258C810600372E4D /* AlertView */,
  825. F4F5BC71258B4F9100372E4D /* SelectDayHourTool */,
  826. F4ED177524C03BD9003D7B3F /* ApplePayTool */,
  827. F4ED176C24C03BD9003D7B3F /* ImageTool */,
  828. F4ED177824C03BD9003D7B3F /* VideoDownTool */,
  829. F4ED177224C03BD9003D7B3F /* VideoTool */,
  830. F4ED176924C03BD9003D7B3F /* WXApiTool */,
  831. F497E531230FB6FA00939809 /* WebviewTool */,
  832. F4051E192306870500AD2B9B /* TimeTool */,
  833. F4051E6223069E9700AD2B9B /* NetworkTool */,
  834. F4051E18230686FC00AD2B9B /* StringTool */,
  835. F4051E17230686F000AD2B9B /* MD5Tool */,
  836. F414BCB7230541F300CA26D8 /* DeviceTool */,
  837. F414BCBA230541F300CA26D8 /* LocationTool */,
  838. F414BCC5230541F300CA26D8 /* RefushTool */,
  839. F414BCBD230541F300CA26D8 /* TipTool */,
  840. F414BCC0230541F300CA26D8 /* UITool */,
  841. );
  842. path = "Tools(工具类)";
  843. sourceTree = "<group>";
  844. };
  845. F414BCB7230541F300CA26D8 /* DeviceTool */ = {
  846. isa = PBXGroup;
  847. children = (
  848. F414BCB9230541F300CA26D8 /* MTDevicesTool.h */,
  849. F414BCB8230541F300CA26D8 /* MTDevicesTool.m */,
  850. );
  851. path = DeviceTool;
  852. sourceTree = "<group>";
  853. };
  854. F414BCBA230541F300CA26D8 /* LocationTool */ = {
  855. isa = PBXGroup;
  856. children = (
  857. F414BCBC230541F300CA26D8 /* MTInternationalTool.h */,
  858. F414BCBB230541F300CA26D8 /* MTInternationalTool.m */,
  859. );
  860. path = LocationTool;
  861. sourceTree = "<group>";
  862. };
  863. F414BCBD230541F300CA26D8 /* TipTool */ = {
  864. isa = PBXGroup;
  865. children = (
  866. F414BCBF230541F300CA26D8 /* MTTipsTool.h */,
  867. F414BCBE230541F300CA26D8 /* MTTipsTool.m */,
  868. );
  869. path = TipTool;
  870. sourceTree = "<group>";
  871. };
  872. F414BCC0230541F300CA26D8 /* UITool */ = {
  873. isa = PBXGroup;
  874. children = (
  875. F491D4332351BCD200D34A4A /* MTCopyLabel.h */,
  876. F491D4342351BCD200D34A4A /* MTCopyLabel.m */,
  877. F414BCC4230541F300CA26D8 /* MTRightImageButton.h */,
  878. F414BCC2230541F300CA26D8 /* MTRightImageButton.m */,
  879. F414BCC3230541F300CA26D8 /* MTTopImageButton.h */,
  880. F414BCC1230541F300CA26D8 /* MTTopImageButton.m */,
  881. );
  882. path = UITool;
  883. sourceTree = "<group>";
  884. };
  885. F414BCC5230541F300CA26D8 /* RefushTool */ = {
  886. isa = PBXGroup;
  887. children = (
  888. F414BCC7230541F300CA26D8 /* MTGifRefreshHeader.h */,
  889. F414BCC6230541F300CA26D8 /* MTGifRefreshHeader.m */,
  890. );
  891. path = RefushTool;
  892. sourceTree = "<group>";
  893. };
  894. F414BCCE23054E0700CA26D8 /* Lib(第三方库) */ = {
  895. isa = PBXGroup;
  896. children = (
  897. F4ED178124C042D5003D7B3F /* EBBannerView(前台通知栏) */,
  898. F4ED175424C03A17003D7B3F /* DYCodeScanner(二维码) */,
  899. F44D324E230D1CEA00735FAD /* DVDishPieHeader(饼状图) */,
  900. F4051E4823069AC400AD2B9B /* WMPageController */,
  901. F4051E442306951C00AD2B9B /* FDFullscreenPopGesture */,
  902. F4051E2F2306937200AD2B9B /* JYRouter */,
  903. F414BCCF23054E2000CA26D8 /* YYModel */,
  904. );
  905. path = "Lib(第三方库)";
  906. sourceTree = "<group>";
  907. };
  908. F414BCCF23054E2000CA26D8 /* YYModel */ = {
  909. isa = PBXGroup;
  910. children = (
  911. F414BCD423054E2000CA26D8 /* NSObject+YYModel.h */,
  912. F414BCD223054E2000CA26D8 /* NSObject+YYModel.m */,
  913. F414BCD023054E2000CA26D8 /* YYClassInfo.h */,
  914. F414BCD323054E2000CA26D8 /* YYClassInfo.m */,
  915. F414BCD123054E2000CA26D8 /* YYModel.h */,
  916. );
  917. path = YYModel;
  918. sourceTree = "<group>";
  919. };
  920. F414BCD72305507500CA26D8 /* Base(基类) */ = {
  921. isa = PBXGroup;
  922. children = (
  923. F4029E102307931100D85DD0 /* BaseNavigationController */,
  924. F414BCF42305537F00CA26D8 /* BaseRootController */,
  925. F414BCE62305537F00CA26D8 /* BaseController */,
  926. F414BCF72305537F00CA26D8 /* BaseView */,
  927. F414BD0E2305537F00CA26D8 /* BaseViewModel */,
  928. F414BD022305537F00CA26D8 /* BaseModel */,
  929. F414BCF12305537F00CA26D8 /* BaseButton */,
  930. F414BCE32305537E00CA26D8 /* BaseCollectionView */,
  931. F414BD052305537F00CA26D8 /* BaseCollectionViewCell */,
  932. F414BD0B2305537F00CA26D8 /* BaseTextField */,
  933. F414BCEE2305537F00CA26D8 /* BaseTableViewCell */,
  934. F414BCE02305537E00CA26D8 /* BaseTableView */,
  935. F414BD082305537F00CA26D8 /* BaseLabel */,
  936. F414BCFF2305537F00CA26D8 /* BaseImageView */,
  937. );
  938. path = "Base(基类)";
  939. sourceTree = "<group>";
  940. };
  941. F414BCE02305537E00CA26D8 /* BaseTableView */ = {
  942. isa = PBXGroup;
  943. children = (
  944. F414BCE22305537E00CA26D8 /* MTBaseTableView.h */,
  945. F414BCE12305537E00CA26D8 /* MTBaseTableView.m */,
  946. );
  947. path = BaseTableView;
  948. sourceTree = "<group>";
  949. };
  950. F414BCE32305537E00CA26D8 /* BaseCollectionView */ = {
  951. isa = PBXGroup;
  952. children = (
  953. F414BCE42305537E00CA26D8 /* MTBaseCollectionView.h */,
  954. F414BCE52305537E00CA26D8 /* MTBaseCollectionView.m */,
  955. );
  956. path = BaseCollectionView;
  957. sourceTree = "<group>";
  958. };
  959. F414BCE62305537F00CA26D8 /* BaseController */ = {
  960. isa = PBXGroup;
  961. children = (
  962. F414BCEC2305537F00CA26D8 /* MTBaseViewController.h */,
  963. F414BCE82305537F00CA26D8 /* MTBaseViewController.m */,
  964. F414BCE92305537F00CA26D8 /* MTViewControllerProtocol.h */,
  965. );
  966. path = BaseController;
  967. sourceTree = "<group>";
  968. };
  969. F414BCEE2305537F00CA26D8 /* BaseTableViewCell */ = {
  970. isa = PBXGroup;
  971. children = (
  972. F414BCF02305537F00CA26D8 /* MTBaseTableViewCell.h */,
  973. F414BCEF2305537F00CA26D8 /* MTBaseTableViewCell.m */,
  974. );
  975. path = BaseTableViewCell;
  976. sourceTree = "<group>";
  977. };
  978. F414BCF12305537F00CA26D8 /* BaseButton */ = {
  979. isa = PBXGroup;
  980. children = (
  981. F414BCF32305537F00CA26D8 /* MTBaseButton.h */,
  982. F414BCF22305537F00CA26D8 /* MTBaseButton.m */,
  983. );
  984. path = BaseButton;
  985. sourceTree = "<group>";
  986. };
  987. F414BCF42305537F00CA26D8 /* BaseRootController */ = {
  988. isa = PBXGroup;
  989. children = (
  990. F414BCF52305537F00CA26D8 /* MTRootController.h */,
  991. F414BCF62305537F00CA26D8 /* MTRootController.m */,
  992. );
  993. path = BaseRootController;
  994. sourceTree = "<group>";
  995. };
  996. F414BCF72305537F00CA26D8 /* BaseView */ = {
  997. isa = PBXGroup;
  998. children = (
  999. F414BCF92305537F00CA26D8 /* MTBaseView.h */,
  1000. F414BCF82305537F00CA26D8 /* MTBaseView.m */,
  1001. );
  1002. path = BaseView;
  1003. sourceTree = "<group>";
  1004. };
  1005. F414BCFF2305537F00CA26D8 /* BaseImageView */ = {
  1006. isa = PBXGroup;
  1007. children = (
  1008. F414BD012305537F00CA26D8 /* MTBaseImageView.h */,
  1009. F414BD002305537F00CA26D8 /* MTBaseImageView.m */,
  1010. );
  1011. path = BaseImageView;
  1012. sourceTree = "<group>";
  1013. };
  1014. F414BD022305537F00CA26D8 /* BaseModel */ = {
  1015. isa = PBXGroup;
  1016. children = (
  1017. F414BD032305537F00CA26D8 /* MTBaseModel.h */,
  1018. F414BD042305537F00CA26D8 /* MTBaseModel.m */,
  1019. );
  1020. path = BaseModel;
  1021. sourceTree = "<group>";
  1022. };
  1023. F414BD052305537F00CA26D8 /* BaseCollectionViewCell */ = {
  1024. isa = PBXGroup;
  1025. children = (
  1026. F414BD072305537F00CA26D8 /* MTBaseCollectionViewCell.h */,
  1027. F414BD062305537F00CA26D8 /* MTBaseCollectionViewCell.m */,
  1028. );
  1029. path = BaseCollectionViewCell;
  1030. sourceTree = "<group>";
  1031. };
  1032. F414BD082305537F00CA26D8 /* BaseLabel */ = {
  1033. isa = PBXGroup;
  1034. children = (
  1035. F414BD0A2305537F00CA26D8 /* MTBaseLabel.h */,
  1036. F414BD092305537F00CA26D8 /* MTBaseLabel.m */,
  1037. );
  1038. path = BaseLabel;
  1039. sourceTree = "<group>";
  1040. };
  1041. F414BD0B2305537F00CA26D8 /* BaseTextField */ = {
  1042. isa = PBXGroup;
  1043. children = (
  1044. F414BD0C2305537F00CA26D8 /* MTBaseTextField.h */,
  1045. F414BD0D2305537F00CA26D8 /* MTBaseTextField.m */,
  1046. );
  1047. path = BaseTextField;
  1048. sourceTree = "<group>";
  1049. };
  1050. F414BD0E2305537F00CA26D8 /* BaseViewModel */ = {
  1051. isa = PBXGroup;
  1052. children = (
  1053. F414BD102305537F00CA26D8 /* MTBaseViewModel.h */,
  1054. F414BD0F2305537F00CA26D8 /* MTBaseViewModel.m */,
  1055. );
  1056. path = BaseViewModel;
  1057. sourceTree = "<group>";
  1058. };
  1059. F414BD2523055D7400CA26D8 /* Main(主类) */ = {
  1060. isa = PBXGroup;
  1061. children = (
  1062. F478D8CB25B80747006B4E61 /* MTConfigModel.h */,
  1063. F478D8CC25B80747006B4E61 /* MTConfigModel.m */,
  1064. F478D8A125B43D37006B4E61 /* MTUserInforModel.h */,
  1065. F478D8A025B43D37006B4E61 /* MTUserInforModel.m */,
  1066. F414BD2623055D8300CA26D8 /* Login */,
  1067. F414BD2723055D8900CA26D8 /* Message */,
  1068. F4D833BE25DF571300534C29 /* Contacts */,
  1069. F4D833BF25DF575500534C29 /* Work */,
  1070. F414BD2823055DB100CA26D8 /* My */,
  1071. );
  1072. path = "Main(主类)";
  1073. sourceTree = "<group>";
  1074. };
  1075. F414BD2623055D8300CA26D8 /* Login */ = {
  1076. isa = PBXGroup;
  1077. children = (
  1078. F478D85225AEDF13006B4E61 /* 绑定手机号 */,
  1079. F478D82625ADA4C0006B4E61 /* 找回密码 */,
  1080. F478D80C25ADA403006B4E61 /* 注册 */,
  1081. F478D7D925ADA20E006B4E61 /* 登陆 */,
  1082. );
  1083. path = Login;
  1084. sourceTree = "<group>";
  1085. };
  1086. F414BD2723055D8900CA26D8 /* Message */ = {
  1087. isa = PBXGroup;
  1088. children = (
  1089. F45F6E9225DF6566002E8AE5 /* MsgHome */,
  1090. F42019652580CCEB00BECDE1 /* Board */,
  1091. );
  1092. path = Message;
  1093. sourceTree = "<group>";
  1094. };
  1095. F414BD2823055DB100CA26D8 /* My */ = {
  1096. isa = PBXGroup;
  1097. children = (
  1098. F4E99FB9259DB0E1002850DD /* 个人信息 */,
  1099. F4E99F8A259D7E64002850DD /* 设置 */,
  1100. F4E99EC3259AF338002850DD /* 我的钱包 */,
  1101. F4029E4A23079D1500D85DD0 /* My */,
  1102. );
  1103. path = My;
  1104. sourceTree = "<group>";
  1105. };
  1106. F42019652580CCEB00BECDE1 /* Board */ = {
  1107. isa = PBXGroup;
  1108. children = (
  1109. F42019662580CD6200BECDE1 /* Controller */,
  1110. F42019692580CD6200BECDE1 /* Model */,
  1111. F420196F2580CD6200BECDE1 /* View */,
  1112. F420196C2580CD6200BECDE1 /* ViewModel */,
  1113. );
  1114. path = Board;
  1115. sourceTree = "<group>";
  1116. };
  1117. F42019662580CD6200BECDE1 /* Controller */ = {
  1118. isa = PBXGroup;
  1119. children = (
  1120. F42019672580CD6200BECDE1 /* MTBoardListViewController.m */,
  1121. F42019682580CD6200BECDE1 /* MTBoardListViewController.h */,
  1122. F420197E2580CEFE00BECDE1 /* MTBoardDetailViewController.h */,
  1123. F420197F2580CEFE00BECDE1 /* MTBoardDetailViewController.m */,
  1124. );
  1125. path = Controller;
  1126. sourceTree = "<group>";
  1127. };
  1128. F42019692580CD6200BECDE1 /* Model */ = {
  1129. isa = PBXGroup;
  1130. children = (
  1131. F420196A2580CD6200BECDE1 /* MTBoardListModel.m */,
  1132. F420196B2580CD6200BECDE1 /* MTBoardListModel.h */,
  1133. );
  1134. path = Model;
  1135. sourceTree = "<group>";
  1136. };
  1137. F420196C2580CD6200BECDE1 /* ViewModel */ = {
  1138. isa = PBXGroup;
  1139. children = (
  1140. F420196D2580CD6200BECDE1 /* MTBoardListViewModel.m */,
  1141. F420196E2580CD6200BECDE1 /* MTBoardListViewModel.h */,
  1142. );
  1143. path = ViewModel;
  1144. sourceTree = "<group>";
  1145. };
  1146. F420196F2580CD6200BECDE1 /* View */ = {
  1147. isa = PBXGroup;
  1148. children = (
  1149. F42019762580CD8500BECDE1 /* MTBoardListTableViewCell.h */,
  1150. F42019772580CD8500BECDE1 /* MTBoardListTableViewCell.m */,
  1151. F42019782580CD8500BECDE1 /* MTBoardListTableViewCell.xib */,
  1152. );
  1153. path = View;
  1154. sourceTree = "<group>";
  1155. };
  1156. F44D324E230D1CEA00735FAD /* DVDishPieHeader(饼状图) */ = {
  1157. isa = PBXGroup;
  1158. children = (
  1159. F44D324F230D1CEA00735FAD /* DVPieCenterView.m */,
  1160. F44D3250230D1CEA00735FAD /* DVFoodPieModel.m */,
  1161. F44D3251230D1CEA00735FAD /* DVPieChart.h */,
  1162. F44D3252230D1CEA00735FAD /* DVPieCenterView.h */,
  1163. F44D3253230D1CEA00735FAD /* DVFoodPieModel.h */,
  1164. F44D3254230D1CEA00735FAD /* DVPieChart.m */,
  1165. );
  1166. path = "DVDishPieHeader(饼状图)";
  1167. sourceTree = "<group>";
  1168. };
  1169. F45F6E9225DF6566002E8AE5 /* MsgHome */ = {
  1170. isa = PBXGroup;
  1171. children = (
  1172. );
  1173. path = MsgHome;
  1174. sourceTree = "<group>";
  1175. };
  1176. F478D7D925ADA20E006B4E61 /* 登陆 */ = {
  1177. isa = PBXGroup;
  1178. children = (
  1179. F478D7DA25ADA20E006B4E61 /* ViewModel */,
  1180. F478D7DD25ADA20E006B4E61 /* Controller */,
  1181. F478D7E025ADA20E006B4E61 /* Model */,
  1182. F478D7E325ADA20E006B4E61 /* View */,
  1183. );
  1184. path = "登陆";
  1185. sourceTree = "<group>";
  1186. };
  1187. F478D7DA25ADA20E006B4E61 /* ViewModel */ = {
  1188. isa = PBXGroup;
  1189. children = (
  1190. F478D7DB25ADA20E006B4E61 /* MTLoginViewModel.h */,
  1191. F478D7DC25ADA20E006B4E61 /* MTLoginViewModel.m */,
  1192. );
  1193. path = ViewModel;
  1194. sourceTree = "<group>";
  1195. };
  1196. F478D7DD25ADA20E006B4E61 /* Controller */ = {
  1197. isa = PBXGroup;
  1198. children = (
  1199. F478D7DE25ADA20E006B4E61 /* MTLoginViewController.h */,
  1200. F478D7DF25ADA20E006B4E61 /* MTLoginViewController.m */,
  1201. F478D86C25B02D00006B4E61 /* MTXieyiViewController.h */,
  1202. F478D86D25B02D00006B4E61 /* MTXieyiViewController.m */,
  1203. );
  1204. path = Controller;
  1205. sourceTree = "<group>";
  1206. };
  1207. F478D7E025ADA20E006B4E61 /* Model */ = {
  1208. isa = PBXGroup;
  1209. children = (
  1210. F478D7E125ADA20E006B4E61 /* MTLoginModel.h */,
  1211. F478D7E225ADA20E006B4E61 /* MTLoginModel.m */,
  1212. );
  1213. path = Model;
  1214. sourceTree = "<group>";
  1215. };
  1216. F478D7E325ADA20E006B4E61 /* View */ = {
  1217. isa = PBXGroup;
  1218. children = (
  1219. F478D7E425ADA20E006B4E61 /* MTLoginHeaderView.h */,
  1220. F478D7E625ADA20E006B4E61 /* MTLoginHeaderView.m */,
  1221. F478D84325ADA830006B4E61 /* MTLoginHeaderView.xib */,
  1222. );
  1223. path = View;
  1224. sourceTree = "<group>";
  1225. };
  1226. F478D80C25ADA403006B4E61 /* 注册 */ = {
  1227. isa = PBXGroup;
  1228. children = (
  1229. F478D80D25ADA403006B4E61 /* ViewModel */,
  1230. F478D81025ADA403006B4E61 /* Controller */,
  1231. F478D81325ADA403006B4E61 /* Model */,
  1232. F478D81625ADA403006B4E61 /* View */,
  1233. );
  1234. path = "注册";
  1235. sourceTree = "<group>";
  1236. };
  1237. F478D80D25ADA403006B4E61 /* ViewModel */ = {
  1238. isa = PBXGroup;
  1239. children = (
  1240. F478D80E25ADA403006B4E61 /* MTRegistViewModel.h */,
  1241. F478D80F25ADA403006B4E61 /* MTRegistViewModel.m */,
  1242. );
  1243. path = ViewModel;
  1244. sourceTree = "<group>";
  1245. };
  1246. F478D81025ADA403006B4E61 /* Controller */ = {
  1247. isa = PBXGroup;
  1248. children = (
  1249. F478D81125ADA403006B4E61 /* MTRegistViewController.m */,
  1250. F478D81225ADA403006B4E61 /* MTRegistViewController.h */,
  1251. );
  1252. path = Controller;
  1253. sourceTree = "<group>";
  1254. };
  1255. F478D81325ADA403006B4E61 /* Model */ = {
  1256. isa = PBXGroup;
  1257. children = (
  1258. F478D81425ADA403006B4E61 /* MTRegistModel.m */,
  1259. F478D81525ADA403006B4E61 /* MTRegistModel.h */,
  1260. );
  1261. path = Model;
  1262. sourceTree = "<group>";
  1263. };
  1264. F478D81625ADA403006B4E61 /* View */ = {
  1265. isa = PBXGroup;
  1266. children = (
  1267. F478D81725ADA403006B4E61 /* MTRegistHeaderView.m */,
  1268. F478D81A25ADA403006B4E61 /* MTRegistHeaderView.h */,
  1269. F478D84825ADA864006B4E61 /* MTRegistHeaderView.xib */,
  1270. );
  1271. path = View;
  1272. sourceTree = "<group>";
  1273. };
  1274. F478D82625ADA4C0006B4E61 /* 找回密码 */ = {
  1275. isa = PBXGroup;
  1276. children = (
  1277. F478D82725ADA4C0006B4E61 /* ViewModel */,
  1278. F478D82A25ADA4C0006B4E61 /* Controller */,
  1279. F478D82D25ADA4C0006B4E61 /* Model */,
  1280. F478D83025ADA4C0006B4E61 /* View */,
  1281. );
  1282. path = "找回密码";
  1283. sourceTree = "<group>";
  1284. };
  1285. F478D82725ADA4C0006B4E61 /* ViewModel */ = {
  1286. isa = PBXGroup;
  1287. children = (
  1288. F478D82825ADA4C0006B4E61 /* MTForgetViewModel.m */,
  1289. F478D82925ADA4C0006B4E61 /* MTForgetViewModel.h */,
  1290. );
  1291. path = ViewModel;
  1292. sourceTree = "<group>";
  1293. };
  1294. F478D82A25ADA4C0006B4E61 /* Controller */ = {
  1295. isa = PBXGroup;
  1296. children = (
  1297. F478D82B25ADA4C0006B4E61 /* MTForgetViewController.h */,
  1298. F478D82C25ADA4C0006B4E61 /* MTForgetViewController.m */,
  1299. );
  1300. path = Controller;
  1301. sourceTree = "<group>";
  1302. };
  1303. F478D82D25ADA4C0006B4E61 /* Model */ = {
  1304. isa = PBXGroup;
  1305. children = (
  1306. F478D82E25ADA4C0006B4E61 /* MTForgetModel.m */,
  1307. F478D82F25ADA4C0006B4E61 /* MTForgetModel.h */,
  1308. );
  1309. path = Model;
  1310. sourceTree = "<group>";
  1311. };
  1312. F478D83025ADA4C0006B4E61 /* View */ = {
  1313. isa = PBXGroup;
  1314. children = (
  1315. F478D83125ADA4C0006B4E61 /* MTForgetHeaderView.h */,
  1316. F478D83325ADA4C0006B4E61 /* MTForgetHeaderView.m */,
  1317. F478D84D25ADA8B3006B4E61 /* MTForgetHeaderView.xib */,
  1318. );
  1319. path = View;
  1320. sourceTree = "<group>";
  1321. };
  1322. F478D85225AEDF13006B4E61 /* 绑定手机号 */ = {
  1323. isa = PBXGroup;
  1324. children = (
  1325. F478D85625AEDF57006B4E61 /* Controller */,
  1326. F478D85C25AEDF58006B4E61 /* Model */,
  1327. F478D85925AEDF57006B4E61 /* View */,
  1328. F478D85325AEDF57006B4E61 /* ViewModel */,
  1329. );
  1330. path = "绑定手机号";
  1331. sourceTree = "<group>";
  1332. };
  1333. F478D85325AEDF57006B4E61 /* ViewModel */ = {
  1334. isa = PBXGroup;
  1335. children = (
  1336. F478D85425AEDF57006B4E61 /* MTBingViewModel.m */,
  1337. F478D85525AEDF57006B4E61 /* MTBingViewModel.h */,
  1338. );
  1339. path = ViewModel;
  1340. sourceTree = "<group>";
  1341. };
  1342. F478D85625AEDF57006B4E61 /* Controller */ = {
  1343. isa = PBXGroup;
  1344. children = (
  1345. F478D85725AEDF57006B4E61 /* MTBingViewController.h */,
  1346. F478D85825AEDF57006B4E61 /* MTBingViewController.m */,
  1347. );
  1348. path = Controller;
  1349. sourceTree = "<group>";
  1350. };
  1351. F478D85925AEDF57006B4E61 /* View */ = {
  1352. isa = PBXGroup;
  1353. children = (
  1354. F478D85A25AEDF57006B4E61 /* MTBingHeaderView.h */,
  1355. F478D85B25AEDF57006B4E61 /* MTBingHeaderView.m */,
  1356. F478D86625AEDF97006B4E61 /* MTBingHeaderView.xib */,
  1357. );
  1358. path = View;
  1359. sourceTree = "<group>";
  1360. };
  1361. F478D85C25AEDF58006B4E61 /* Model */ = {
  1362. isa = PBXGroup;
  1363. children = (
  1364. F478D85D25AEDF58006B4E61 /* MTBingModel.m */,
  1365. F478D85E25AEDF58006B4E61 /* MTBingModel.h */,
  1366. );
  1367. path = Model;
  1368. sourceTree = "<group>";
  1369. };
  1370. F478D8E325BC01BE006B4E61 /* PhotoView */ = {
  1371. isa = PBXGroup;
  1372. children = (
  1373. F478D8E425BC01DC006B4E61 /* MTPhotoView.h */,
  1374. F478D8E525BC01DC006B4E61 /* MTPhotoView.m */,
  1375. F478D8ED25BC0344006B4E61 /* addImg.png */,
  1376. F478D8FC25BC15CB006B4E61 /* imgDel.png */,
  1377. F478D8EE25BC0345006B4E61 /* addImg@2x.png */,
  1378. F478D8EF25BC0345006B4E61 /* addImg@3x.png */,
  1379. F478D8F625BC0444006B4E61 /* MTPhotoConfigModel.h */,
  1380. F478D8F725BC0444006B4E61 /* MTPhotoConfigModel.m */,
  1381. );
  1382. path = PhotoView;
  1383. sourceTree = "<group>";
  1384. };
  1385. F497E531230FB6FA00939809 /* WebviewTool */ = {
  1386. isa = PBXGroup;
  1387. children = (
  1388. F497E533230FB73F00939809 /* MTWebViewController.h */,
  1389. F497E532230FB73F00939809 /* MTWebViewController.m */,
  1390. );
  1391. path = WebviewTool;
  1392. sourceTree = "<group>";
  1393. };
  1394. F4D833BE25DF571300534C29 /* Contacts */ = {
  1395. isa = PBXGroup;
  1396. children = (
  1397. );
  1398. path = Contacts;
  1399. sourceTree = "<group>";
  1400. };
  1401. F4D833BF25DF575500534C29 /* Work */ = {
  1402. isa = PBXGroup;
  1403. children = (
  1404. );
  1405. path = Work;
  1406. sourceTree = "<group>";
  1407. };
  1408. F4E99CAF25903AE6002850DD /* StarView */ = {
  1409. isa = PBXGroup;
  1410. children = (
  1411. F4E99CB225903B1F002850DD /* MTStartView.h */,
  1412. F4E99CB025903B1E002850DD /* MTStartView.m */,
  1413. F4E99CB125903B1E002850DD /* MTStartView.xib */,
  1414. );
  1415. path = StarView;
  1416. sourceTree = "<group>";
  1417. };
  1418. F4E99EC3259AF338002850DD /* 我的钱包 */ = {
  1419. isa = PBXGroup;
  1420. children = (
  1421. F4E99F6B259B2B18002850DD /* 充值 */,
  1422. F4E99ED1259AF338002850DD /* 微信提现 */,
  1423. F4E99ED5259AF338002850DD /* 银行卡提现 */,
  1424. F4E99ECC259AF338002850DD /* 支付宝提现 */,
  1425. F4E99ED0259AF338002850DD /* GJ_Me_WalletViewController.h */,
  1426. F4E99EC4259AF338002850DD /* GJ_Me_WalletViewController.m */,
  1427. F4E99EC5259AF338002850DD /* SubViews */,
  1428. );
  1429. path = "我的钱包";
  1430. sourceTree = "<group>";
  1431. };
  1432. F4E99EC5259AF338002850DD /* SubViews */ = {
  1433. isa = PBXGroup;
  1434. children = (
  1435. F4E99EC6259AF338002850DD /* GJ_Me_Wallet_Cell.h */,
  1436. F4E99EC9259AF338002850DD /* GJ_Me_Wallet_Cell.m */,
  1437. F4E99ECB259AF338002850DD /* GJ_Me_Wallet_Cell.xib */,
  1438. F4E99EC8259AF338002850DD /* GJ_Me_Wallet_HeaderView.h */,
  1439. F4E99ECA259AF338002850DD /* GJ_Me_Wallet_HeaderView.m */,
  1440. F4E99EC7259AF338002850DD /* GJ_Me_Wallet_HeaderView.xib */,
  1441. );
  1442. path = SubViews;
  1443. sourceTree = "<group>";
  1444. };
  1445. F4E99ECC259AF338002850DD /* 支付宝提现 */ = {
  1446. isa = PBXGroup;
  1447. children = (
  1448. F4E99ECF259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.h */,
  1449. F4E99ECD259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.m */,
  1450. F4E99ECE259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.xib */,
  1451. );
  1452. path = "支付宝提现";
  1453. sourceTree = "<group>";
  1454. };
  1455. F4E99ED1259AF338002850DD /* 微信提现 */ = {
  1456. isa = PBXGroup;
  1457. children = (
  1458. F4E99ED3259AF338002850DD /* GJ_Me_CashOut_WXViewController.h */,
  1459. F4E99ED4259AF338002850DD /* GJ_Me_CashOut_WXViewController.m */,
  1460. F4E99ED2259AF338002850DD /* GJ_Me_CashOut_WXViewController.xib */,
  1461. );
  1462. path = "微信提现";
  1463. sourceTree = "<group>";
  1464. };
  1465. F4E99ED5259AF338002850DD /* 银行卡提现 */ = {
  1466. isa = PBXGroup;
  1467. children = (
  1468. F4E99ED6259AF338002850DD /* GJ_Me_CashOut_BankViewController.h */,
  1469. F4E99ED7259AF338002850DD /* GJ_Me_CashOut_BankViewController.m */,
  1470. F4E99ED8259AF338002850DD /* GJ_Me_CashOut_BankViewController.xib */,
  1471. );
  1472. path = "银行卡提现";
  1473. sourceTree = "<group>";
  1474. };
  1475. F4E99F6B259B2B18002850DD /* 充值 */ = {
  1476. isa = PBXGroup;
  1477. children = (
  1478. F4E99F6C259B2C92002850DD /* Controller */,
  1479. F4E99F6F259B2C92002850DD /* Model */,
  1480. F4E99F72259B2C92002850DD /* View */,
  1481. F4E99F77259B2C92002850DD /* ViewModel */,
  1482. );
  1483. path = "充值";
  1484. sourceTree = "<group>";
  1485. };
  1486. F4E99F6C259B2C92002850DD /* Controller */ = {
  1487. isa = PBXGroup;
  1488. children = (
  1489. F4E99F6D259B2C92002850DD /* MTPayInViewController.h */,
  1490. F4E99F6E259B2C92002850DD /* MTPayInViewController.m */,
  1491. );
  1492. path = Controller;
  1493. sourceTree = "<group>";
  1494. };
  1495. F4E99F6F259B2C92002850DD /* Model */ = {
  1496. isa = PBXGroup;
  1497. children = (
  1498. F4E99F70259B2C92002850DD /* MTPayInModel.m */,
  1499. F4E99F71259B2C92002850DD /* MTPayInModel.h */,
  1500. );
  1501. path = Model;
  1502. sourceTree = "<group>";
  1503. };
  1504. F4E99F72259B2C92002850DD /* View */ = {
  1505. isa = PBXGroup;
  1506. children = (
  1507. F4E99F75259B2C92002850DD /* MTPayInHeaderView.h */,
  1508. F4E99F74259B2C92002850DD /* MTPayInHeaderView.m */,
  1509. F4E99F82259B2E10002850DD /* MTPayInHeaderView.xib */,
  1510. F4E99F73259B2C92002850DD /* MTPayInTableViewCell.h */,
  1511. F4E99F76259B2C92002850DD /* MTPayInTableViewCell.m */,
  1512. );
  1513. path = View;
  1514. sourceTree = "<group>";
  1515. };
  1516. F4E99F77259B2C92002850DD /* ViewModel */ = {
  1517. isa = PBXGroup;
  1518. children = (
  1519. F4E99F78259B2C92002850DD /* MTPayInViewModel.m */,
  1520. F4E99F79259B2C92002850DD /* MTPayInViewModel.h */,
  1521. );
  1522. path = ViewModel;
  1523. sourceTree = "<group>";
  1524. };
  1525. F4E99F8A259D7E64002850DD /* 设置 */ = {
  1526. isa = PBXGroup;
  1527. children = (
  1528. F4E99FA3259DA696002850DD /* 密码 */,
  1529. F4E99F8E259D7EBF002850DD /* Controller */,
  1530. F4E99F91259D7EBF002850DD /* Model */,
  1531. F4E99F94259D7EC0002850DD /* View */,
  1532. F4E99F8B259D7EBF002850DD /* ViewModel */,
  1533. );
  1534. path = "设置";
  1535. sourceTree = "<group>";
  1536. };
  1537. F4E99F8B259D7EBF002850DD /* ViewModel */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. F4E99F8C259D7EBF002850DD /* MTSettingViewModel.h */,
  1541. F4E99F8D259D7EBF002850DD /* MTSettingViewModel.m */,
  1542. );
  1543. path = ViewModel;
  1544. sourceTree = "<group>";
  1545. };
  1546. F4E99F8E259D7EBF002850DD /* Controller */ = {
  1547. isa = PBXGroup;
  1548. children = (
  1549. F4E99F8F259D7EBF002850DD /* MTSettingViewController.h */,
  1550. F4E99F90259D7EBF002850DD /* MTSettingViewController.m */,
  1551. );
  1552. path = Controller;
  1553. sourceTree = "<group>";
  1554. };
  1555. F4E99F91259D7EBF002850DD /* Model */ = {
  1556. isa = PBXGroup;
  1557. children = (
  1558. F4E99F92259D7EBF002850DD /* MTSettingModel.h */,
  1559. F4E99F93259D7EBF002850DD /* MTSettingModel.m */,
  1560. );
  1561. path = Model;
  1562. sourceTree = "<group>";
  1563. };
  1564. F4E99F94259D7EC0002850DD /* View */ = {
  1565. isa = PBXGroup;
  1566. children = (
  1567. F4E99F95259D7EC0002850DD /* MTSettingHeaderView.h */,
  1568. F4E99F96259D7EC0002850DD /* MTSettingHeaderView.m */,
  1569. F4E99F9E259D7EFD002850DD /* MTSettingHeaderView.xib */,
  1570. );
  1571. path = View;
  1572. sourceTree = "<group>";
  1573. };
  1574. F4E99FA3259DA696002850DD /* 密码 */ = {
  1575. isa = PBXGroup;
  1576. children = (
  1577. F4E99FA4259DA696002850DD /* 修改 */,
  1578. F4E99FAA259DA697002850DD /* 首次 */,
  1579. );
  1580. path = "密码";
  1581. sourceTree = "<group>";
  1582. };
  1583. F4E99FA4259DA696002850DD /* 修改 */ = {
  1584. isa = PBXGroup;
  1585. children = (
  1586. F4E99FA5259DA696002850DD /* FFMineRetrievePayPwdController.m */,
  1587. F4E99FA6259DA697002850DD /* FFMineRetrievePayPwdController.h */,
  1588. );
  1589. path = "修改";
  1590. sourceTree = "<group>";
  1591. };
  1592. F4E99FAA259DA697002850DD /* 首次 */ = {
  1593. isa = PBXGroup;
  1594. children = (
  1595. F4E99FAB259DA697002850DD /* FFMinePayPasswordController.h */,
  1596. F4E99FAC259DA697002850DD /* FFMinePayPasswordController.m */,
  1597. );
  1598. path = "首次";
  1599. sourceTree = "<group>";
  1600. };
  1601. F4E99FB9259DB0E1002850DD /* 个人信息 */ = {
  1602. isa = PBXGroup;
  1603. children = (
  1604. F4E99FC3259DB1B1002850DD /* Controller */,
  1605. F4E99FBA259DB1B1002850DD /* Model */,
  1606. F4E99FBD259DB1B1002850DD /* View */,
  1607. F4E99FC0259DB1B1002850DD /* ViewModel */,
  1608. );
  1609. path = "个人信息";
  1610. sourceTree = "<group>";
  1611. };
  1612. F4E99FBA259DB1B1002850DD /* Model */ = {
  1613. isa = PBXGroup;
  1614. children = (
  1615. F4E99FBB259DB1B1002850DD /* MTInfoModel.m */,
  1616. F4E99FBC259DB1B1002850DD /* MTInfoModel.h */,
  1617. );
  1618. path = Model;
  1619. sourceTree = "<group>";
  1620. };
  1621. F4E99FBD259DB1B1002850DD /* View */ = {
  1622. isa = PBXGroup;
  1623. children = (
  1624. F4E99FBE259DB1B1002850DD /* MTInfoHeaderView.h */,
  1625. F4E99FBF259DB1B1002850DD /* MTInfoHeaderView.m */,
  1626. F4E99FCD259DB1C6002850DD /* MTInfoHeaderView.xib */,
  1627. );
  1628. path = View;
  1629. sourceTree = "<group>";
  1630. };
  1631. F4E99FC0259DB1B1002850DD /* ViewModel */ = {
  1632. isa = PBXGroup;
  1633. children = (
  1634. F4E99FC1259DB1B1002850DD /* MTInfoViewModel.m */,
  1635. F4E99FC2259DB1B1002850DD /* MTInfoViewModel.h */,
  1636. );
  1637. path = ViewModel;
  1638. sourceTree = "<group>";
  1639. };
  1640. F4E99FC3259DB1B1002850DD /* Controller */ = {
  1641. isa = PBXGroup;
  1642. children = (
  1643. F4E99FC4259DB1B1002850DD /* MTInfoViewController.m */,
  1644. F4E99FC5259DB1B1002850DD /* MTInfoViewController.h */,
  1645. );
  1646. path = Controller;
  1647. sourceTree = "<group>";
  1648. };
  1649. F4ED175424C03A17003D7B3F /* DYCodeScanner(二维码) */ = {
  1650. isa = PBXGroup;
  1651. children = (
  1652. F4ED175524C03A17003D7B3F /* DYFCodeScanner.h */,
  1653. F4ED175624C03A17003D7B3F /* DYFCodeScannerMacros.h */,
  1654. F4ED175724C03A17003D7B3F /* DYFCodeScannerPreView.h */,
  1655. F4ED175824C03A17003D7B3F /* DYFCodeScannerPreView.m */,
  1656. F4ED175924C03A17003D7B3F /* DYFCodeScannerViewController.h */,
  1657. F4ED175A24C03A17003D7B3F /* DYFCodeScannerViewController.m */,
  1658. F4ED175B24C03A17003D7B3F /* DYFQRCodeImageView.h */,
  1659. F4ED175C24C03A17003D7B3F /* DYFQRCodeImageView.m */,
  1660. F4ED175D24C03A17003D7B3F /* UIButton+Corner.h */,
  1661. F4ED175E24C03A17003D7B3F /* UIButton+Corner.m */,
  1662. F4ED175F24C03A17003D7B3F /* UIImage+QRCode.h */,
  1663. F4ED176024C03A17003D7B3F /* UIImage+QRCode.m */,
  1664. );
  1665. path = "DYCodeScanner(二维码)";
  1666. sourceTree = "<group>";
  1667. };
  1668. F4ED176924C03BD9003D7B3F /* WXApiTool */ = {
  1669. isa = PBXGroup;
  1670. children = (
  1671. F4ED176A24C03BD9003D7B3F /* WXApiManager.h */,
  1672. F4ED176B24C03BD9003D7B3F /* WXApiManager.m */,
  1673. );
  1674. path = WXApiTool;
  1675. sourceTree = "<group>";
  1676. };
  1677. F4ED176C24C03BD9003D7B3F /* ImageTool */ = {
  1678. isa = PBXGroup;
  1679. children = (
  1680. F4ED176D24C03BD9003D7B3F /* MTImageManager.h */,
  1681. F4ED176E24C03BD9003D7B3F /* MTImageManager.m */,
  1682. );
  1683. path = ImageTool;
  1684. sourceTree = "<group>";
  1685. };
  1686. F4ED177224C03BD9003D7B3F /* VideoTool */ = {
  1687. isa = PBXGroup;
  1688. children = (
  1689. F4ED177324C03BD9003D7B3F /* MTAssetManager.h */,
  1690. F4ED177424C03BD9003D7B3F /* MTAssetManager.m */,
  1691. );
  1692. path = VideoTool;
  1693. sourceTree = "<group>";
  1694. };
  1695. F4ED177524C03BD9003D7B3F /* ApplePayTool */ = {
  1696. isa = PBXGroup;
  1697. children = (
  1698. F4ED177624C03BD9003D7B3F /* MTApplePayTool.h */,
  1699. F4ED177724C03BD9003D7B3F /* MTApplePayTool.m */,
  1700. );
  1701. path = ApplePayTool;
  1702. sourceTree = "<group>";
  1703. };
  1704. F4ED177824C03BD9003D7B3F /* VideoDownTool */ = {
  1705. isa = PBXGroup;
  1706. children = (
  1707. F4ED177924C03BD9003D7B3F /* MTVideoDownTool.h */,
  1708. F4ED177A24C03BD9003D7B3F /* MTVideoDownTool.m */,
  1709. );
  1710. path = VideoDownTool;
  1711. sourceTree = "<group>";
  1712. };
  1713. F4ED178124C042D5003D7B3F /* EBBannerView(前台通知栏) */ = {
  1714. isa = PBXGroup;
  1715. children = (
  1716. F4ED178224C042D5003D7B3F /* Classes */,
  1717. F4ED179324C042D5003D7B3F /* EBBannerView.h */,
  1718. F4ED179424C042D5003D7B3F /* EBBannerViewController.h */,
  1719. F4ED179524C042D5003D7B3F /* EBCustomBannerView.h */,
  1720. F4ED179624C042D5003D7B3F /* SwiftClasses */,
  1721. );
  1722. path = "EBBannerView(前台通知栏)";
  1723. sourceTree = "<group>";
  1724. };
  1725. F4ED178224C042D5003D7B3F /* Classes */ = {
  1726. isa = PBXGroup;
  1727. children = (
  1728. F4ED178324C042D5003D7B3F /* EBBannerView+Categories.h */,
  1729. F4ED178424C042D5003D7B3F /* EBBannerView+Categories.m */,
  1730. F4ED178524C042D5003D7B3F /* EBBannerView.m */,
  1731. F4ED178624C042D5003D7B3F /* EBBannerView.xib */,
  1732. F4ED178724C042D5003D7B3F /* EBBannerViewController.m */,
  1733. F4ED178824C042D5003D7B3F /* EBBannerViewController.xib */,
  1734. F4ED178924C042D5003D7B3F /* EBBannerViewMaker.m */,
  1735. F4ED178A24C042D5003D7B3F /* EBBannerWindow.h */,
  1736. F4ED178B24C042D5003D7B3F /* EBBannerWindow.m */,
  1737. F4ED178C24C042D5003D7B3F /* EBCustomBannerView.m */,
  1738. F4ED178D24C042D5003D7B3F /* EBEmptyWindow.h */,
  1739. F4ED178E24C042D5003D7B3F /* EBEmptyWindow.m */,
  1740. F4ED178F24C042D5003D7B3F /* EBMuteDetector.h */,
  1741. F4ED179024C042D5003D7B3F /* EBMuteDetector.m */,
  1742. F4ED179124C042D5003D7B3F /* EBMuteDetector.mp3 */,
  1743. F4ED179224C042D5003D7B3F /* EBSystemBannerView.xib */,
  1744. );
  1745. path = Classes;
  1746. sourceTree = "<group>";
  1747. };
  1748. F4ED179624C042D5003D7B3F /* SwiftClasses */ = {
  1749. isa = PBXGroup;
  1750. children = (
  1751. );
  1752. path = SwiftClasses;
  1753. sourceTree = "<group>";
  1754. };
  1755. F4F5BC71258B4F9100372E4D /* SelectDayHourTool */ = {
  1756. isa = PBXGroup;
  1757. children = (
  1758. F4E51C33258A004200135614 /* MTTimePickView.h */,
  1759. F4E51C34258A004200135614 /* MTTimePickView.m */,
  1760. F4E51C39258A005E00135614 /* MTTimePickView.xib */,
  1761. F4F5BC75258B4FBC00372E4D /* CustomDatePickerViewModel.h */,
  1762. F4F5BC73258B4FBC00372E4D /* CustomDatePickerViewModel.m */,
  1763. F4F5BC72258B4FBC00372E4D /* NSDate+Category.h */,
  1764. F4F5BC74258B4FBC00372E4D /* NSDate+Category.m */,
  1765. );
  1766. path = SelectDayHourTool;
  1767. sourceTree = "<group>";
  1768. };
  1769. F4F5BCD6258C810600372E4D /* AlertView */ = {
  1770. isa = PBXGroup;
  1771. children = (
  1772. F4F5BCD7258C810600372E4D /* MTAlertView.m */,
  1773. F4F5BCD8258C810600372E4D /* MTAlertView.xib */,
  1774. F4F5BCD9258C810600372E4D /* MTAlertView.h */,
  1775. );
  1776. path = AlertView;
  1777. sourceTree = "<group>";
  1778. };
  1779. F4F5BD03258C91E100372E4D /* NoDataView */ = {
  1780. isa = PBXGroup;
  1781. children = (
  1782. F4F5BD04258C91F700372E4D /* MTNoDataView.h */,
  1783. F4F5BD05258C91F700372E4D /* MTNoDataView.m */,
  1784. F4F5BD0D258C921800372E4D /* MTNoDataView.xib */,
  1785. );
  1786. path = NoDataView;
  1787. sourceTree = "<group>";
  1788. };
  1789. /* End PBXGroup section */
  1790. /* Begin PBXNativeTarget section */
  1791. 45C4DF2922FD42300072EE2F /* Jianbinglian */ = {
  1792. isa = PBXNativeTarget;
  1793. buildConfigurationList = 45C4DF5622FD42320072EE2F /* Build configuration list for PBXNativeTarget "Jianbinglian" */;
  1794. buildPhases = (
  1795. 1A746AF75FE788BD5A2608B1 /* [CP] Check Pods Manifest.lock */,
  1796. 45C4DF2622FD42300072EE2F /* Sources */,
  1797. 45C4DF2722FD42300072EE2F /* Frameworks */,
  1798. 45C4DF2822FD42300072EE2F /* Resources */,
  1799. 06AD7EF272ECA02BD24A6FC9 /* [CP] Embed Pods Frameworks */,
  1800. 817D35CF50B1272F949DA1FE /* [CP] Copy Pods Resources */,
  1801. );
  1802. buildRules = (
  1803. );
  1804. dependencies = (
  1805. );
  1806. name = Jianbinglian;
  1807. productName = Jianbinglian;
  1808. productReference = 45C4DF2A22FD42300072EE2F /* Jianbinglian.app */;
  1809. productType = "com.apple.product-type.application";
  1810. };
  1811. 45C4DF4122FD42320072EE2F /* JianbinglianTests */ = {
  1812. isa = PBXNativeTarget;
  1813. buildConfigurationList = 45C4DF5922FD42320072EE2F /* Build configuration list for PBXNativeTarget "JianbinglianTests" */;
  1814. buildPhases = (
  1815. F0F31CF4443C619D16423103 /* [CP] Check Pods Manifest.lock */,
  1816. 45C4DF3E22FD42320072EE2F /* Sources */,
  1817. 45C4DF3F22FD42320072EE2F /* Frameworks */,
  1818. 45C4DF4022FD42320072EE2F /* Resources */,
  1819. );
  1820. buildRules = (
  1821. );
  1822. dependencies = (
  1823. 45C4DF4422FD42320072EE2F /* PBXTargetDependency */,
  1824. );
  1825. name = JianbinglianTests;
  1826. productName = JianbinglianTests;
  1827. productReference = 45C4DF4222FD42320072EE2F /* JianbinglianTests.xctest */;
  1828. productType = "com.apple.product-type.bundle.unit-test";
  1829. };
  1830. 45C4DF4C22FD42320072EE2F /* JianbinglianUITests */ = {
  1831. isa = PBXNativeTarget;
  1832. buildConfigurationList = 45C4DF5C22FD42320072EE2F /* Build configuration list for PBXNativeTarget "JianbinglianUITests" */;
  1833. buildPhases = (
  1834. DE7094A5006F5F25DD609EA2 /* [CP] Check Pods Manifest.lock */,
  1835. 45C4DF4922FD42320072EE2F /* Sources */,
  1836. 45C4DF4A22FD42320072EE2F /* Frameworks */,
  1837. 45C4DF4B22FD42320072EE2F /* Resources */,
  1838. );
  1839. buildRules = (
  1840. );
  1841. dependencies = (
  1842. 45C4DF4F22FD42320072EE2F /* PBXTargetDependency */,
  1843. );
  1844. name = JianbinglianUITests;
  1845. productName = JianbinglianUITests;
  1846. productReference = 45C4DF4D22FD42320072EE2F /* JianbinglianUITests.xctest */;
  1847. productType = "com.apple.product-type.bundle.ui-testing";
  1848. };
  1849. /* End PBXNativeTarget section */
  1850. /* Begin PBXProject section */
  1851. 45C4DF2222FD422F0072EE2F /* Project object */ = {
  1852. isa = PBXProject;
  1853. attributes = {
  1854. LastUpgradeCheck = 1030;
  1855. ORGANIZATIONNAME = Simon;
  1856. TargetAttributes = {
  1857. 45C4DF2922FD42300072EE2F = {
  1858. CreatedOnToolsVersion = 10.3;
  1859. };
  1860. 45C4DF4122FD42320072EE2F = {
  1861. CreatedOnToolsVersion = 10.3;
  1862. TestTargetID = 45C4DF2922FD42300072EE2F;
  1863. };
  1864. 45C4DF4C22FD42320072EE2F = {
  1865. CreatedOnToolsVersion = 10.3;
  1866. TestTargetID = 45C4DF2922FD42300072EE2F;
  1867. };
  1868. };
  1869. };
  1870. buildConfigurationList = 45C4DF2522FD422F0072EE2F /* Build configuration list for PBXProject "Jianbinglian" */;
  1871. compatibilityVersion = "Xcode 9.3";
  1872. developmentRegion = en;
  1873. hasScannedForEncodings = 0;
  1874. knownRegions = (
  1875. en,
  1876. Base,
  1877. "zh-Hans",
  1878. );
  1879. mainGroup = 45C4DF2122FD422F0072EE2F;
  1880. productRefGroup = 45C4DF2B22FD42300072EE2F /* Products */;
  1881. projectDirPath = "";
  1882. projectRoot = "";
  1883. targets = (
  1884. 45C4DF2922FD42300072EE2F /* Jianbinglian */,
  1885. 45C4DF4122FD42320072EE2F /* JianbinglianTests */,
  1886. 45C4DF4C22FD42320072EE2F /* JianbinglianUITests */,
  1887. );
  1888. };
  1889. /* End PBXProject section */
  1890. /* Begin PBXResourcesBuildPhase section */
  1891. 45C4DF2822FD42300072EE2F /* Resources */ = {
  1892. isa = PBXResourcesBuildPhase;
  1893. buildActionMask = 2147483647;
  1894. files = (
  1895. F4ED17A124C042D5003D7B3F /* EBMuteDetector.mp3 in Resources */,
  1896. F4E99F83259B2E10002850DD /* MTPayInHeaderView.xib in Resources */,
  1897. F4ED179924C042D5003D7B3F /* EBBannerView.xib in Resources */,
  1898. F478D8F225BC0345006B4E61 /* addImg@3x.png in Resources */,
  1899. F4E99FCE259DB1C6002850DD /* MTInfoHeaderView.xib in Resources */,
  1900. 45C4DF3A22FD42310072EE2F /* LaunchScreen.storyboard in Resources */,
  1901. F4E99DFD2595C9BD002850DD /* MTMyHeaderView.xib in Resources */,
  1902. F4E99DF82595C611002850DD /* MTMyTableViewCell.xib in Resources */,
  1903. F478D84925ADA864006B4E61 /* MTRegistHeaderView.xib in Resources */,
  1904. F478D86725AEDF97006B4E61 /* MTBingHeaderView.xib in Resources */,
  1905. F414BCDC2305521200CA26D8 /* Localizable.strings in Resources */,
  1906. F4ED17A224C042D5003D7B3F /* EBSystemBannerView.xib in Resources */,
  1907. F4E99F9F259D7EFD002850DD /* MTSettingHeaderView.xib in Resources */,
  1908. F4E51C3A258A005E00135614 /* MTTimePickView.xib in Resources */,
  1909. F4F5BCDB258C810600372E4D /* MTAlertView.xib in Resources */,
  1910. F478D84425ADA830006B4E61 /* MTLoginHeaderView.xib in Resources */,
  1911. F420197A2580CD8500BECDE1 /* MTBoardListTableViewCell.xib in Resources */,
  1912. F4F5BD0E258C921800372E4D /* MTNoDataView.xib in Resources */,
  1913. F4E99EDF259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.xib in Resources */,
  1914. F478D8F125BC0345006B4E61 /* addImg@2x.png in Resources */,
  1915. F4E99EE0259AF338002850DD /* GJ_Me_CashOut_WXViewController.xib in Resources */,
  1916. F4ED179B24C042D5003D7B3F /* EBBannerViewController.xib in Resources */,
  1917. F4E99EDD259AF338002850DD /* GJ_Me_Wallet_Cell.xib in Resources */,
  1918. F478D8FD25BC15CB006B4E61 /* imgDel.png in Resources */,
  1919. F4E99EDA259AF338002850DD /* GJ_Me_Wallet_HeaderView.xib in Resources */,
  1920. F4E99EE3259AF338002850DD /* GJ_Me_CashOut_BankViewController.xib in Resources */,
  1921. F4E99CB425903B1F002850DD /* MTStartView.xib in Resources */,
  1922. 45C4DF3722FD42310072EE2F /* Assets.xcassets in Resources */,
  1923. F478D8F025BC0345006B4E61 /* addImg.png in Resources */,
  1924. 45C4DF3522FD42300072EE2F /* Main.storyboard in Resources */,
  1925. F478D84E25ADA8B3006B4E61 /* MTForgetHeaderView.xib in Resources */,
  1926. );
  1927. runOnlyForDeploymentPostprocessing = 0;
  1928. };
  1929. 45C4DF4022FD42320072EE2F /* Resources */ = {
  1930. isa = PBXResourcesBuildPhase;
  1931. buildActionMask = 2147483647;
  1932. files = (
  1933. );
  1934. runOnlyForDeploymentPostprocessing = 0;
  1935. };
  1936. 45C4DF4B22FD42320072EE2F /* Resources */ = {
  1937. isa = PBXResourcesBuildPhase;
  1938. buildActionMask = 2147483647;
  1939. files = (
  1940. );
  1941. runOnlyForDeploymentPostprocessing = 0;
  1942. };
  1943. /* End PBXResourcesBuildPhase section */
  1944. /* Begin PBXShellScriptBuildPhase section */
  1945. 06AD7EF272ECA02BD24A6FC9 /* [CP] Embed Pods Frameworks */ = {
  1946. isa = PBXShellScriptBuildPhase;
  1947. buildActionMask = 2147483647;
  1948. files = (
  1949. );
  1950. inputFileListPaths = (
  1951. "${PODS_ROOT}/Target Support Files/Pods-Jianbinglian/Pods-Jianbinglian-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  1952. );
  1953. name = "[CP] Embed Pods Frameworks";
  1954. outputFileListPaths = (
  1955. "${PODS_ROOT}/Target Support Files/Pods-Jianbinglian/Pods-Jianbinglian-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  1956. );
  1957. runOnlyForDeploymentPostprocessing = 0;
  1958. shellPath = /bin/sh;
  1959. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Jianbinglian/Pods-Jianbinglian-frameworks.sh\"\n";
  1960. showEnvVarsInLog = 0;
  1961. };
  1962. 1A746AF75FE788BD5A2608B1 /* [CP] Check Pods Manifest.lock */ = {
  1963. isa = PBXShellScriptBuildPhase;
  1964. buildActionMask = 2147483647;
  1965. files = (
  1966. );
  1967. inputFileListPaths = (
  1968. );
  1969. inputPaths = (
  1970. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  1971. "${PODS_ROOT}/Manifest.lock",
  1972. );
  1973. name = "[CP] Check Pods Manifest.lock";
  1974. outputFileListPaths = (
  1975. );
  1976. outputPaths = (
  1977. "$(DERIVED_FILE_DIR)/Pods-Jianbinglian-checkManifestLockResult.txt",
  1978. );
  1979. runOnlyForDeploymentPostprocessing = 0;
  1980. shellPath = /bin/sh;
  1981. 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";
  1982. showEnvVarsInLog = 0;
  1983. };
  1984. 817D35CF50B1272F949DA1FE /* [CP] Copy Pods Resources */ = {
  1985. isa = PBXShellScriptBuildPhase;
  1986. buildActionMask = 2147483647;
  1987. files = (
  1988. );
  1989. inputFileListPaths = (
  1990. "${PODS_ROOT}/Target Support Files/Pods-Jianbinglian/Pods-Jianbinglian-resources-${CONFIGURATION}-input-files.xcfilelist",
  1991. );
  1992. name = "[CP] Copy Pods Resources";
  1993. outputFileListPaths = (
  1994. "${PODS_ROOT}/Target Support Files/Pods-Jianbinglian/Pods-Jianbinglian-resources-${CONFIGURATION}-output-files.xcfilelist",
  1995. );
  1996. runOnlyForDeploymentPostprocessing = 0;
  1997. shellPath = /bin/sh;
  1998. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Jianbinglian/Pods-Jianbinglian-resources.sh\"\n";
  1999. showEnvVarsInLog = 0;
  2000. };
  2001. DE7094A5006F5F25DD609EA2 /* [CP] Check Pods Manifest.lock */ = {
  2002. isa = PBXShellScriptBuildPhase;
  2003. buildActionMask = 2147483647;
  2004. files = (
  2005. );
  2006. inputFileListPaths = (
  2007. );
  2008. inputPaths = (
  2009. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2010. "${PODS_ROOT}/Manifest.lock",
  2011. );
  2012. name = "[CP] Check Pods Manifest.lock";
  2013. outputFileListPaths = (
  2014. );
  2015. outputPaths = (
  2016. "$(DERIVED_FILE_DIR)/Pods-JianbinglianUITests-checkManifestLockResult.txt",
  2017. );
  2018. runOnlyForDeploymentPostprocessing = 0;
  2019. shellPath = /bin/sh;
  2020. 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";
  2021. showEnvVarsInLog = 0;
  2022. };
  2023. F0F31CF4443C619D16423103 /* [CP] Check Pods Manifest.lock */ = {
  2024. isa = PBXShellScriptBuildPhase;
  2025. buildActionMask = 2147483647;
  2026. files = (
  2027. );
  2028. inputFileListPaths = (
  2029. );
  2030. inputPaths = (
  2031. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2032. "${PODS_ROOT}/Manifest.lock",
  2033. );
  2034. name = "[CP] Check Pods Manifest.lock";
  2035. outputFileListPaths = (
  2036. );
  2037. outputPaths = (
  2038. "$(DERIVED_FILE_DIR)/Pods-JianbinglianTests-checkManifestLockResult.txt",
  2039. );
  2040. runOnlyForDeploymentPostprocessing = 0;
  2041. shellPath = /bin/sh;
  2042. 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";
  2043. showEnvVarsInLog = 0;
  2044. };
  2045. /* End PBXShellScriptBuildPhase section */
  2046. /* Begin PBXSourcesBuildPhase section */
  2047. 45C4DF2622FD42300072EE2F /* Sources */ = {
  2048. isa = PBXSourcesBuildPhase;
  2049. buildActionMask = 2147483647;
  2050. files = (
  2051. F4E99FAD259DA697002850DD /* FFMineRetrievePayPwdController.m in Sources */,
  2052. F4ED179D24C042D5003D7B3F /* EBBannerWindow.m in Sources */,
  2053. F44D3256230D1CEA00735FAD /* DVFoodPieModel.m in Sources */,
  2054. F414BD1F2305537F00CA26D8 /* MTBaseLabel.m in Sources */,
  2055. F478D83625ADA4C0006B4E61 /* MTForgetViewController.m in Sources */,
  2056. F478D7FE25ADA20E006B4E61 /* MTLoginModel.m in Sources */,
  2057. F478D81C25ADA403006B4E61 /* MTRegistViewController.m in Sources */,
  2058. F478D86E25B02D00006B4E61 /* MTXieyiViewController.m in Sources */,
  2059. F4E99F7C259B2C93002850DD /* MTPayInHeaderView.m in Sources */,
  2060. F4E99F9A259D7EC0002850DD /* MTSettingHeaderView.m in Sources */,
  2061. F478D7FD25ADA20E006B4E61 /* MTLoginViewController.m in Sources */,
  2062. F491D4352351BCD300D34A4A /* MTCopyLabel.m in Sources */,
  2063. F478D8A225B43D37006B4E61 /* MTUserInforModel.m in Sources */,
  2064. F4ED177F24C03BD9003D7B3F /* MTApplePayTool.m in Sources */,
  2065. F4051E5623069AC400AD2B9B /* WMMenuView.m in Sources */,
  2066. F4F5BD06258C91F700372E4D /* MTNoDataView.m in Sources */,
  2067. F42019792580CD8500BECDE1 /* MTBoardListTableViewCell.m in Sources */,
  2068. F4051E22230687DE00AD2B9B /* MTTimeTool.m in Sources */,
  2069. F423D418230C450A008D0675 /* NSLayoutConstraint+MT.m in Sources */,
  2070. F423D414230C450A008D0675 /* UIButton+MT.m in Sources */,
  2071. F414BCD523054E2000CA26D8 /* NSObject+YYModel.m in Sources */,
  2072. F414BD172305537F00CA26D8 /* MTBaseButton.m in Sources */,
  2073. F42019712580CD6200BECDE1 /* MTBoardListModel.m in Sources */,
  2074. F414BD152305537F00CA26D8 /* CustomNaviBarView.m in Sources */,
  2075. F4051E6823069E9700AD2B9B /* MTHttpTool.m in Sources */,
  2076. F4051E5423069AC400AD2B9B /* WMMenuItem.m in Sources */,
  2077. F414BCCC230541F300CA26D8 /* MTRightImageButton.m in Sources */,
  2078. F4051E6723069E9700AD2B9B /* MTCacheTool.m in Sources */,
  2079. F4051E3F2306937200AD2B9B /* Routable.m in Sources */,
  2080. F42019722580CD6200BECDE1 /* MTBoardListViewModel.m in Sources */,
  2081. F479B0C62319639A00C58D9D /* MTUpLoadViewModel.m in Sources */,
  2082. F4E99EDB259AF338002850DD /* GJ_Me_Wallet_Cell.m in Sources */,
  2083. F414BD1E2305537F00CA26D8 /* MTBaseCollectionViewCell.m in Sources */,
  2084. F4029E4823079AB800D85DD0 /* MTMyHeaderView.m in Sources */,
  2085. F414BD202305537F00CA26D8 /* MTBaseTextField.m in Sources */,
  2086. F478D8E625BC01DC006B4E61 /* MTPhotoView.m in Sources */,
  2087. F478D80025ADA20E006B4E61 /* MTLoginHeaderView.m in Sources */,
  2088. F4ED179E24C042D5003D7B3F /* EBCustomBannerView.m in Sources */,
  2089. F44D3257230D1CEA00735FAD /* DVPieChart.m in Sources */,
  2090. F414BD122305537F00CA26D8 /* MTBaseCollectionView.m in Sources */,
  2091. F423D417230C450A008D0675 /* UITextView+MT.m in Sources */,
  2092. F478D81B25ADA403006B4E61 /* MTRegistViewModel.m in Sources */,
  2093. F4051E5723069AC400AD2B9B /* WMProgressView.m in Sources */,
  2094. F478D8F825BC0444006B4E61 /* MTPhotoConfigModel.m in Sources */,
  2095. F4E99EE2259AF338002850DD /* GJ_Me_CashOut_BankViewController.m in Sources */,
  2096. F478D8CD25B80747006B4E61 /* MTConfigModel.m in Sources */,
  2097. F4ED176324C03A17003D7B3F /* DYFQRCodeImageView.m in Sources */,
  2098. F478D86125AEDF58006B4E61 /* MTBingHeaderView.m in Sources */,
  2099. F414BD142305537F00CA26D8 /* CustomNavigationController.m in Sources */,
  2100. F4051E6023069CFC00AD2B9B /* NSString+MT.m in Sources */,
  2101. F44D3255230D1CEA00735FAD /* DVPieCenterView.m in Sources */,
  2102. F4029E4623079AB800D85DD0 /* MTMyViewModel.m in Sources */,
  2103. F4051E422306937200AD2B9B /* JYRouter.m in Sources */,
  2104. F4ED176824C03ACB003D7B3F /* UIImage+MT.m in Sources */,
  2105. F4051E5323069AC400AD2B9B /* WMPageController.m in Sources */,
  2106. F4E99F97259D7EC0002850DD /* MTSettingViewModel.m in Sources */,
  2107. F4E99CB325903B1F002850DD /* MTStartView.m in Sources */,
  2108. F4E99F99259D7EC0002850DD /* MTSettingModel.m in Sources */,
  2109. F4E99FC7259DB1B1002850DD /* MTInfoHeaderView.m in Sources */,
  2110. F4ED178024C03BD9003D7B3F /* MTVideoDownTool.m in Sources */,
  2111. F4051E6123069CFC00AD2B9B /* UIColor+MT.m in Sources */,
  2112. F4051E5F23069CFC00AD2B9B /* UIView+MT.m in Sources */,
  2113. F4E99FC9259DB1B1002850DD /* MTInfoViewController.m in Sources */,
  2114. F478D87D25B06031006B4E61 /* UIImage+getSize.m in Sources */,
  2115. 45C4DF3D22FD42310072EE2F /* main.m in Sources */,
  2116. F478D7FC25ADA20E006B4E61 /* MTLoginViewModel.m in Sources */,
  2117. F4ED176424C03A17003D7B3F /* UIButton+Corner.m in Sources */,
  2118. F414BD182305537F00CA26D8 /* MTRootController.m in Sources */,
  2119. F414BCD623054E2000CA26D8 /* YYClassInfo.m in Sources */,
  2120. F4E99ED9259AF338002850DD /* GJ_Me_WalletViewController.m in Sources */,
  2121. F414BD212305537F00CA26D8 /* MTBaseViewModel.m in Sources */,
  2122. F4E99EDC259AF338002850DD /* GJ_Me_Wallet_HeaderView.m in Sources */,
  2123. F4ED179A24C042D5003D7B3F /* EBBannerViewController.m in Sources */,
  2124. F4ED179824C042D5003D7B3F /* EBBannerView.m in Sources */,
  2125. F414BD162305537F00CA26D8 /* MTBaseTableViewCell.m in Sources */,
  2126. F4ED179F24C042D5003D7B3F /* EBEmptyWindow.m in Sources */,
  2127. F4E99EE1259AF338002850DD /* GJ_Me_CashOut_WXViewController.m in Sources */,
  2128. F478D83925ADA4C0006B4E61 /* MTForgetHeaderView.m in Sources */,
  2129. F4E99EDE259AF338002850DD /* GJ_Me_CashOut_ZFBViewController.m in Sources */,
  2130. F4ED17A024C042D5003D7B3F /* EBMuteDetector.m in Sources */,
  2131. F478D81D25ADA403006B4E61 /* MTRegistModel.m in Sources */,
  2132. F4E99DF72595C611002850DD /* MTMyTableViewCell.m in Sources */,
  2133. F414BCC8230541F300CA26D8 /* MTDevicesTool.m in Sources */,
  2134. F414BD112305537F00CA26D8 /* MTBaseTableView.m in Sources */,
  2135. F4E99FC8259DB1B1002850DD /* MTInfoViewModel.m in Sources */,
  2136. F414BD192305537F00CA26D8 /* MTBaseView.m in Sources */,
  2137. F4029E4723079AB800D85DD0 /* MTMyModel.m in Sources */,
  2138. F497E534230FB73F00939809 /* MTWebViewController.m in Sources */,
  2139. F4F5BC76258B4FBC00372E4D /* CustomDatePickerViewModel.m in Sources */,
  2140. F414BD1D2305537F00CA26D8 /* MTBaseModel.m in Sources */,
  2141. F423D415230C450A008D0675 /* UILabel+MT.m in Sources */,
  2142. F4ED177E24C03BD9003D7B3F /* MTAssetManager.m in Sources */,
  2143. F4F5BCDA258C810600372E4D /* MTAlertView.m in Sources */,
  2144. F478D83725ADA4C0006B4E61 /* MTForgetModel.m in Sources */,
  2145. F4ED177C24C03BD9003D7B3F /* MTImageManager.m in Sources */,
  2146. F4E99FAF259DA697002850DD /* FFMinePayPasswordController.m in Sources */,
  2147. F414BCCA230541F300CA26D8 /* MTTipsTool.m in Sources */,
  2148. F4ED176224C03A17003D7B3F /* DYFCodeScannerViewController.m in Sources */,
  2149. F423D416230C450A008D0675 /* UITextField+MT.m in Sources */,
  2150. F478D86025AEDF58006B4E61 /* MTBingViewController.m in Sources */,
  2151. F4ED179C24C042D5003D7B3F /* EBBannerViewMaker.m in Sources */,
  2152. F4051E1C2306874200AD2B9B /* MTMD5Tool.m in Sources */,
  2153. F4ED176524C03A17003D7B3F /* UIImage+QRCode.m in Sources */,
  2154. F478D81E25ADA403006B4E61 /* MTRegistHeaderView.m in Sources */,
  2155. F4029E502307ECA600D85DD0 /* UIImageView+MT.m in Sources */,
  2156. F4E99F98259D7EC0002850DD /* MTSettingViewController.m in Sources */,
  2157. F4ED177B24C03BD9003D7B3F /* WXApiManager.m in Sources */,
  2158. 45C4DF2F22FD42300072EE2F /* AppDelegate.m in Sources */,
  2159. F414BCC9230541F300CA26D8 /* MTInternationalTool.m in Sources */,
  2160. F4E99F7B259B2C93002850DD /* MTPayInModel.m in Sources */,
  2161. F478D86225AEDF58006B4E61 /* MTBingModel.m in Sources */,
  2162. F414BD132305537F00CA26D8 /* MTBaseViewController.m in Sources */,
  2163. F4E99F7E259B2C93002850DD /* MTPayInViewModel.m in Sources */,
  2164. F478D83525ADA4C0006B4E61 /* MTForgetViewModel.m in Sources */,
  2165. F4051E5523069AC400AD2B9B /* WMScrollView.m in Sources */,
  2166. F4051E472306951D00AD2B9B /* UINavigationController+FDFullscreenPopGesture.m in Sources */,
  2167. F4ED179724C042D5003D7B3F /* EBBannerView+Categories.m in Sources */,
  2168. F4E99FC6259DB1B1002850DD /* MTInfoModel.m in Sources */,
  2169. F4ED176124C03A17003D7B3F /* DYFCodeScannerPreView.m in Sources */,
  2170. F4E99F7D259B2C93002850DD /* MTPayInTableViewCell.m in Sources */,
  2171. F42019702580CD6200BECDE1 /* MTBoardListViewController.m in Sources */,
  2172. F4029E4523079AB800D85DD0 /* MTMyViewController.m in Sources */,
  2173. F4F5BC77258B4FBC00372E4D /* NSDate+Category.m in Sources */,
  2174. F478D85F25AEDF58006B4E61 /* MTBingViewModel.m in Sources */,
  2175. F4E99F7A259B2C92002850DD /* MTPayInViewController.m in Sources */,
  2176. F414BD1C2305537F00CA26D8 /* MTBaseImageView.m in Sources */,
  2177. F414BCCD230541F300CA26D8 /* MTGifRefreshHeader.m in Sources */,
  2178. F4051E1F2306878C00AD2B9B /* MTStringTool.m in Sources */,
  2179. F4E51C35258A004200135614 /* MTTimePickView.m in Sources */,
  2180. F414BCCB230541F300CA26D8 /* MTTopImageButton.m in Sources */,
  2181. F42019802580CEFE00BECDE1 /* MTBoardDetailViewController.m in Sources */,
  2182. );
  2183. runOnlyForDeploymentPostprocessing = 0;
  2184. };
  2185. 45C4DF3E22FD42320072EE2F /* Sources */ = {
  2186. isa = PBXSourcesBuildPhase;
  2187. buildActionMask = 2147483647;
  2188. files = (
  2189. 45C4DF4722FD42320072EE2F /* JianbinglianTests.m in Sources */,
  2190. );
  2191. runOnlyForDeploymentPostprocessing = 0;
  2192. };
  2193. 45C4DF4922FD42320072EE2F /* Sources */ = {
  2194. isa = PBXSourcesBuildPhase;
  2195. buildActionMask = 2147483647;
  2196. files = (
  2197. 45C4DF5222FD42320072EE2F /* JianbinglianUITests.m in Sources */,
  2198. );
  2199. runOnlyForDeploymentPostprocessing = 0;
  2200. };
  2201. /* End PBXSourcesBuildPhase section */
  2202. /* Begin PBXTargetDependency section */
  2203. 45C4DF4422FD42320072EE2F /* PBXTargetDependency */ = {
  2204. isa = PBXTargetDependency;
  2205. target = 45C4DF2922FD42300072EE2F /* Jianbinglian */;
  2206. targetProxy = 45C4DF4322FD42320072EE2F /* PBXContainerItemProxy */;
  2207. };
  2208. 45C4DF4F22FD42320072EE2F /* PBXTargetDependency */ = {
  2209. isa = PBXTargetDependency;
  2210. target = 45C4DF2922FD42300072EE2F /* Jianbinglian */;
  2211. targetProxy = 45C4DF4E22FD42320072EE2F /* PBXContainerItemProxy */;
  2212. };
  2213. /* End PBXTargetDependency section */
  2214. /* Begin PBXVariantGroup section */
  2215. 45C4DF3322FD42300072EE2F /* Main.storyboard */ = {
  2216. isa = PBXVariantGroup;
  2217. children = (
  2218. 45C4DF3422FD42300072EE2F /* Base */,
  2219. F414BCD8230551CD00CA26D8 /* zh-Hans */,
  2220. );
  2221. name = Main.storyboard;
  2222. sourceTree = "<group>";
  2223. };
  2224. 45C4DF3822FD42310072EE2F /* LaunchScreen.storyboard */ = {
  2225. isa = PBXVariantGroup;
  2226. children = (
  2227. 45C4DF3922FD42310072EE2F /* Base */,
  2228. F414BCD9230551CE00CA26D8 /* zh-Hans */,
  2229. );
  2230. name = LaunchScreen.storyboard;
  2231. sourceTree = "<group>";
  2232. };
  2233. F414BCDE2305521200CA26D8 /* Localizable.strings */ = {
  2234. isa = PBXVariantGroup;
  2235. children = (
  2236. F414BCDD2305521200CA26D8 /* zh-Hans */,
  2237. F414BCDF2305521700CA26D8 /* en */,
  2238. );
  2239. name = Localizable.strings;
  2240. sourceTree = "<group>";
  2241. };
  2242. /* End PBXVariantGroup section */
  2243. /* Begin XCBuildConfiguration section */
  2244. 45C4DF5422FD42320072EE2F /* Debug */ = {
  2245. isa = XCBuildConfiguration;
  2246. buildSettings = {
  2247. ALWAYS_SEARCH_USER_PATHS = NO;
  2248. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2249. CLANG_ANALYZER_NONNULL = YES;
  2250. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2251. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2252. CLANG_CXX_LIBRARY = "libc++";
  2253. CLANG_ENABLE_MODULES = YES;
  2254. CLANG_ENABLE_OBJC_ARC = YES;
  2255. CLANG_ENABLE_OBJC_WEAK = YES;
  2256. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2257. CLANG_WARN_BOOL_CONVERSION = YES;
  2258. CLANG_WARN_COMMA = YES;
  2259. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2260. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2261. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2262. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2263. CLANG_WARN_EMPTY_BODY = YES;
  2264. CLANG_WARN_ENUM_CONVERSION = YES;
  2265. CLANG_WARN_INFINITE_RECURSION = YES;
  2266. CLANG_WARN_INT_CONVERSION = YES;
  2267. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2268. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2269. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2270. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2271. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2272. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2273. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2274. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2275. CLANG_WARN_UNREACHABLE_CODE = YES;
  2276. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2277. CODE_SIGN_IDENTITY = "iPhone Developer";
  2278. COPY_PHASE_STRIP = NO;
  2279. DEBUG_INFORMATION_FORMAT = dwarf;
  2280. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2281. ENABLE_TESTABILITY = YES;
  2282. GCC_C_LANGUAGE_STANDARD = gnu11;
  2283. GCC_DYNAMIC_NO_PIC = NO;
  2284. GCC_NO_COMMON_BLOCKS = YES;
  2285. GCC_OPTIMIZATION_LEVEL = 0;
  2286. GCC_PREPROCESSOR_DEFINITIONS = (
  2287. "DEBUG=1",
  2288. "$(inherited)",
  2289. );
  2290. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2291. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2292. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2293. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2294. GCC_WARN_UNUSED_FUNCTION = YES;
  2295. GCC_WARN_UNUSED_VARIABLE = YES;
  2296. IPHONEOS_DEPLOYMENT_TARGET = 12.4;
  2297. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2298. MTL_FAST_MATH = YES;
  2299. ONLY_ACTIVE_ARCH = YES;
  2300. SDKROOT = iphoneos;
  2301. };
  2302. name = Debug;
  2303. };
  2304. 45C4DF5522FD42320072EE2F /* Release */ = {
  2305. isa = XCBuildConfiguration;
  2306. buildSettings = {
  2307. ALWAYS_SEARCH_USER_PATHS = NO;
  2308. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  2309. CLANG_ANALYZER_NONNULL = YES;
  2310. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2311. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2312. CLANG_CXX_LIBRARY = "libc++";
  2313. CLANG_ENABLE_MODULES = YES;
  2314. CLANG_ENABLE_OBJC_ARC = YES;
  2315. CLANG_ENABLE_OBJC_WEAK = YES;
  2316. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2317. CLANG_WARN_BOOL_CONVERSION = YES;
  2318. CLANG_WARN_COMMA = YES;
  2319. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2320. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2321. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2322. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2323. CLANG_WARN_EMPTY_BODY = YES;
  2324. CLANG_WARN_ENUM_CONVERSION = YES;
  2325. CLANG_WARN_INFINITE_RECURSION = YES;
  2326. CLANG_WARN_INT_CONVERSION = YES;
  2327. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2328. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2329. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2330. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2331. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2332. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2333. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2334. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2335. CLANG_WARN_UNREACHABLE_CODE = YES;
  2336. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2337. CODE_SIGN_IDENTITY = "iPhone Developer";
  2338. COPY_PHASE_STRIP = NO;
  2339. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2340. ENABLE_NS_ASSERTIONS = NO;
  2341. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2342. GCC_C_LANGUAGE_STANDARD = gnu11;
  2343. GCC_NO_COMMON_BLOCKS = YES;
  2344. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2345. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2346. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2347. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2348. GCC_WARN_UNUSED_FUNCTION = YES;
  2349. GCC_WARN_UNUSED_VARIABLE = YES;
  2350. IPHONEOS_DEPLOYMENT_TARGET = 12.4;
  2351. MTL_ENABLE_DEBUG_INFO = NO;
  2352. MTL_FAST_MATH = YES;
  2353. SDKROOT = iphoneos;
  2354. VALIDATE_PRODUCT = YES;
  2355. };
  2356. name = Release;
  2357. };
  2358. 45C4DF5722FD42320072EE2F /* Debug */ = {
  2359. isa = XCBuildConfiguration;
  2360. baseConfigurationReference = 8C2D09D5B94C209D63BA7C67 /* Pods-Jianbinglian.debug.xcconfig */;
  2361. buildSettings = {
  2362. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2363. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  2364. CODE_SIGN_STYLE = Automatic;
  2365. DEVELOPMENT_TEAM = H6FFJBQWGY;
  2366. GCC_INCREASE_PRECOMPILED_HEADER_SHARING = YES;
  2367. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2368. GCC_PREFIX_HEADER = "$(SRCROOT)/Jianbinglian/Other/PrefixHeader.pch";
  2369. INFOPLIST_FILE = Jianbinglian/Other/Info.plist;
  2370. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  2371. LD_RUNPATH_SEARCH_PATHS = (
  2372. "$(inherited)",
  2373. "@executable_path/Frameworks",
  2374. );
  2375. PRODUCT_BUNDLE_IDENTIFIER = com.hdl.gujiauser;
  2376. PRODUCT_NAME = "$(TARGET_NAME)";
  2377. TARGETED_DEVICE_FAMILY = "1,2";
  2378. };
  2379. name = Debug;
  2380. };
  2381. 45C4DF5822FD42320072EE2F /* Release */ = {
  2382. isa = XCBuildConfiguration;
  2383. baseConfigurationReference = 673D0FABDEC01E041559FB9A /* Pods-Jianbinglian.release.xcconfig */;
  2384. buildSettings = {
  2385. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2386. ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage;
  2387. CODE_SIGN_IDENTITY = "Apple Development";
  2388. CODE_SIGN_STYLE = Automatic;
  2389. DEVELOPMENT_TEAM = H6FFJBQWGY;
  2390. GCC_INCREASE_PRECOMPILED_HEADER_SHARING = YES;
  2391. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2392. GCC_PREFIX_HEADER = "$(SRCROOT)/Jianbinglian/Other/PrefixHeader.pch";
  2393. INFOPLIST_FILE = Jianbinglian/Other/Info.plist;
  2394. IPHONEOS_DEPLOYMENT_TARGET = 10.0;
  2395. LD_RUNPATH_SEARCH_PATHS = (
  2396. "$(inherited)",
  2397. "@executable_path/Frameworks",
  2398. );
  2399. PRODUCT_BUNDLE_IDENTIFIER = com.hdl.gujiauser;
  2400. PRODUCT_NAME = "$(TARGET_NAME)";
  2401. PROVISIONING_PROFILE_SPECIFIER = "";
  2402. TARGETED_DEVICE_FAMILY = "1,2";
  2403. };
  2404. name = Release;
  2405. };
  2406. 45C4DF5A22FD42320072EE2F /* Debug */ = {
  2407. isa = XCBuildConfiguration;
  2408. baseConfigurationReference = 7AC95B38A7A6EEA0F29C5F38 /* Pods-JianbinglianTests.debug.xcconfig */;
  2409. buildSettings = {
  2410. BUNDLE_LOADER = "$(TEST_HOST)";
  2411. CODE_SIGN_STYLE = Automatic;
  2412. INFOPLIST_FILE = JianbinglianTests/Info.plist;
  2413. LD_RUNPATH_SEARCH_PATHS = (
  2414. "$(inherited)",
  2415. "@executable_path/Frameworks",
  2416. "@loader_path/Frameworks",
  2417. );
  2418. PRODUCT_BUNDLE_IDENTIFIER = com.simon.JianbinglianTests;
  2419. PRODUCT_NAME = "$(TARGET_NAME)";
  2420. TARGETED_DEVICE_FAMILY = "1,2";
  2421. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Jianbinglian.app/Jianbinglian";
  2422. };
  2423. name = Debug;
  2424. };
  2425. 45C4DF5B22FD42320072EE2F /* Release */ = {
  2426. isa = XCBuildConfiguration;
  2427. baseConfigurationReference = C613242FEA4827FCB0291F7A /* Pods-JianbinglianTests.release.xcconfig */;
  2428. buildSettings = {
  2429. BUNDLE_LOADER = "$(TEST_HOST)";
  2430. CODE_SIGN_STYLE = Automatic;
  2431. INFOPLIST_FILE = JianbinglianTests/Info.plist;
  2432. LD_RUNPATH_SEARCH_PATHS = (
  2433. "$(inherited)",
  2434. "@executable_path/Frameworks",
  2435. "@loader_path/Frameworks",
  2436. );
  2437. PRODUCT_BUNDLE_IDENTIFIER = com.simon.JianbinglianTests;
  2438. PRODUCT_NAME = "$(TARGET_NAME)";
  2439. TARGETED_DEVICE_FAMILY = "1,2";
  2440. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Jianbinglian.app/Jianbinglian";
  2441. };
  2442. name = Release;
  2443. };
  2444. 45C4DF5D22FD42320072EE2F /* Debug */ = {
  2445. isa = XCBuildConfiguration;
  2446. baseConfigurationReference = 42B2BA49C2CD891CFA3AFA61 /* Pods-JianbinglianUITests.debug.xcconfig */;
  2447. buildSettings = {
  2448. CODE_SIGN_STYLE = Automatic;
  2449. INFOPLIST_FILE = JianbinglianUITests/Info.plist;
  2450. LD_RUNPATH_SEARCH_PATHS = (
  2451. "$(inherited)",
  2452. "@executable_path/Frameworks",
  2453. "@loader_path/Frameworks",
  2454. );
  2455. PRODUCT_BUNDLE_IDENTIFIER = com.simon.JianbinglianUITests;
  2456. PRODUCT_NAME = "$(TARGET_NAME)";
  2457. TARGETED_DEVICE_FAMILY = "1,2";
  2458. TEST_TARGET_NAME = Jianbinglian;
  2459. };
  2460. name = Debug;
  2461. };
  2462. 45C4DF5E22FD42320072EE2F /* Release */ = {
  2463. isa = XCBuildConfiguration;
  2464. baseConfigurationReference = 03C6E27E12294EBE8B7F48DC /* Pods-JianbinglianUITests.release.xcconfig */;
  2465. buildSettings = {
  2466. CODE_SIGN_STYLE = Automatic;
  2467. INFOPLIST_FILE = JianbinglianUITests/Info.plist;
  2468. LD_RUNPATH_SEARCH_PATHS = (
  2469. "$(inherited)",
  2470. "@executable_path/Frameworks",
  2471. "@loader_path/Frameworks",
  2472. );
  2473. PRODUCT_BUNDLE_IDENTIFIER = com.simon.JianbinglianUITests;
  2474. PRODUCT_NAME = "$(TARGET_NAME)";
  2475. TARGETED_DEVICE_FAMILY = "1,2";
  2476. TEST_TARGET_NAME = Jianbinglian;
  2477. };
  2478. name = Release;
  2479. };
  2480. /* End XCBuildConfiguration section */
  2481. /* Begin XCConfigurationList section */
  2482. 45C4DF2522FD422F0072EE2F /* Build configuration list for PBXProject "Jianbinglian" */ = {
  2483. isa = XCConfigurationList;
  2484. buildConfigurations = (
  2485. 45C4DF5422FD42320072EE2F /* Debug */,
  2486. 45C4DF5522FD42320072EE2F /* Release */,
  2487. );
  2488. defaultConfigurationIsVisible = 0;
  2489. defaultConfigurationName = Release;
  2490. };
  2491. 45C4DF5622FD42320072EE2F /* Build configuration list for PBXNativeTarget "Jianbinglian" */ = {
  2492. isa = XCConfigurationList;
  2493. buildConfigurations = (
  2494. 45C4DF5722FD42320072EE2F /* Debug */,
  2495. 45C4DF5822FD42320072EE2F /* Release */,
  2496. );
  2497. defaultConfigurationIsVisible = 0;
  2498. defaultConfigurationName = Release;
  2499. };
  2500. 45C4DF5922FD42320072EE2F /* Build configuration list for PBXNativeTarget "JianbinglianTests" */ = {
  2501. isa = XCConfigurationList;
  2502. buildConfigurations = (
  2503. 45C4DF5A22FD42320072EE2F /* Debug */,
  2504. 45C4DF5B22FD42320072EE2F /* Release */,
  2505. );
  2506. defaultConfigurationIsVisible = 0;
  2507. defaultConfigurationName = Release;
  2508. };
  2509. 45C4DF5C22FD42320072EE2F /* Build configuration list for PBXNativeTarget "JianbinglianUITests" */ = {
  2510. isa = XCConfigurationList;
  2511. buildConfigurations = (
  2512. 45C4DF5D22FD42320072EE2F /* Debug */,
  2513. 45C4DF5E22FD42320072EE2F /* Release */,
  2514. );
  2515. defaultConfigurationIsVisible = 0;
  2516. defaultConfigurationName = Release;
  2517. };
  2518. /* End XCConfigurationList section */
  2519. };
  2520. rootObject = 45C4DF2222FD422F0072EE2F /* Project object */;
  2521. }