project.pbxproj 239 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 56;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. C40690DC2B0714EE002688FD /* CheckOrderFootView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40690DA2B0714EE002688FD /* CheckOrderFootView.xib */; };
  10. C40690DD2B0714EE002688FD /* CheckOrderFootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40690DB2B0714EE002688FD /* CheckOrderFootView.swift */; };
  11. C40690F02B07A2FE002688FD /* DayCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C40690E82B07A2FE002688FD /* DayCollectionViewCell.m */; };
  12. C40690F12B07A2FE002688FD /* MonthTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C40690E92B07A2FE002688FD /* MonthTableViewCell.m */; };
  13. C40690F22B07A2FE002688FD /* MonthModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C40690EA2B07A2FE002688FD /* MonthModel.m */; };
  14. C40690F52B07AAF9002688FD /* RectCornerUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C40690F42B07AAF9002688FD /* RectCornerUtil.swift */; };
  15. C40691122B08B7E5002688FD /* TCLogingViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40691142B08B7E5002688FD /* TCLogingViewController.xib */; };
  16. C406911D2B08B8C3002688FD /* CodeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C406911F2B08B8C3002688FD /* CodeViewController.xib */; };
  17. C40691242B08B92C002688FD /* PhoneLoginViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40691262B08B92C002688FD /* PhoneLoginViewController.xib */; };
  18. C406912B2B08B99E002688FD /* RegisteViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C406912D2B08B99E002688FD /* RegisteViewController.xib */; };
  19. C40691322B08BA2F002688FD /* EditLoginPSWViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C40691342B08BA2F002688FD /* EditLoginPSWViewController.xib */; };
  20. C40691392B08BB29002688FD /* EditPayPSWViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C406913B2B08BB29002688FD /* EditPayPSWViewController.xib */; };
  21. C4144CD52AF91DCB00B5F73C /* OrderDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4144CD32AF91DCB00B5F73C /* OrderDetailViewController.swift */; };
  22. C4144CD62AF91DCB00B5F73C /* OrderDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4144CD42AF91DCB00B5F73C /* OrderDetailViewController.xib */; };
  23. C41DA49E2AFEF9D500707C5D /* MealEvaluateListVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA49C2AFEF9D500707C5D /* MealEvaluateListVC.swift */; };
  24. C41DA49F2AFEF9D500707C5D /* MealEvaluateListVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA49D2AFEF9D500707C5D /* MealEvaluateListVC.xib */; };
  25. C41DA4A22AFEFC4F00707C5D /* MealEcaluateCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4A02AFEFC4F00707C5D /* MealEcaluateCell.swift */; };
  26. C41DA4A32AFEFC4F00707C5D /* MealEcaluateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4A12AFEFC4F00707C5D /* MealEcaluateCell.xib */; };
  27. C41DA4A72AFF176000707C5D /* IntegralListViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4A52AFF176000707C5D /* IntegralListViewController.swift */; };
  28. C41DA4A82AFF176000707C5D /* IntegralListViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4A62AFF176000707C5D /* IntegralListViewController.xib */; };
  29. C41DA4AA2AFF17B000707C5D /* IntegralHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4A92AFF17B000707C5D /* IntegralHeadView.swift */; };
  30. C41DA4AF2AFF19E000707C5D /* IntegralViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4AD2AFF19E000707C5D /* IntegralViewCell.swift */; };
  31. C41DA4B02AFF19E000707C5D /* IntegralViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4AE2AFF19E000707C5D /* IntegralViewCell.xib */; };
  32. C41DA4B22AFF1E6500707C5D /* IntegralSectiionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4B12AFF1E6500707C5D /* IntegralSectiionView.swift */; };
  33. C41DA4B52AFF22DD00707C5D /* IntegralHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4B72AFF22DD00707C5D /* IntegralHeadView.xib */; };
  34. C41DA4C32AFF232800707C5D /* IntegralSectiionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4C42AFF232800707C5D /* IntegralSectiionView.xib */; };
  35. C41DA4C52AFF39BE00707C5D /* ReplaceFoodView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4C72AFF39BE00707C5D /* ReplaceFoodView.xib */; };
  36. C41DA4CF2AFF44FF00707C5D /* DiscountsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4CD2AFF44FF00707C5D /* DiscountsViewController.swift */; };
  37. C41DA4D02AFF44FF00707C5D /* DiscountsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4CE2AFF44FF00707C5D /* DiscountsViewController.xib */; };
  38. C41DA4D52AFFAB2400707C5D /* DiscountsListViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4D32AFFAB2400707C5D /* DiscountsListViewCell.swift */; };
  39. C41DA4D72AFFB02700707C5D /* DiscountsListViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4D92AFFB02700707C5D /* DiscountsListViewCell.xib */; };
  40. C41DA4DF2AFFC03B00707C5D /* DiscountsSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4DE2AFFC03B00707C5D /* DiscountsSectionView.swift */; };
  41. C41DA4E12AFFC04900707C5D /* DiscountsSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4E02AFFC04900707C5D /* DiscountsSectionView.xib */; };
  42. C41DA4E32AFFC58000707C5D /* DiscountsFootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4E22AFFC58000707C5D /* DiscountsFootView.swift */; };
  43. C41DA4E52AFFC59100707C5D /* DiscountsFootView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4E42AFFC59100707C5D /* DiscountsFootView.xib */; };
  44. C41DA4E92AFFD2DF00707C5D /* RuleDetailViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4E72AFFD2DF00707C5D /* RuleDetailViewController.swift */; };
  45. C41DA4EA2AFFD2DF00707C5D /* RuleDetailViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4E82AFFD2DF00707C5D /* RuleDetailViewController.xib */; };
  46. C41DA4ED2AFFDDDE00707C5D /* PromotionCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41DA4EB2AFFDDDE00707C5D /* PromotionCell.swift */; };
  47. C41DA4EE2AFFDDDE00707C5D /* PromotionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4EC2AFFDDDE00707C5D /* PromotionCell.xib */; };
  48. C41DA4EF2AFFE1C400707C5D /* PromotionSheetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C41DA4F12AFFE1C400707C5D /* PromotionSheetView.xib */; };
  49. C42AEDD02B0312070045EF66 /* SalesmanFirstShowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDCF2B0312070045EF66 /* SalesmanFirstShowView.swift */; };
  50. C42AEDDB2B035A9D0045EF66 /* MCDatePikerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD42B035A9D0045EF66 /* MCDatePikerView.swift */; };
  51. C42AEDDC2B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD52B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift */; };
  52. C42AEDDD2B035A9D0045EF66 /* MCDatePikerDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD62B035A9D0045EF66 /* MCDatePikerDelegate.swift */; };
  53. C42AEDDE2B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD82B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift */; };
  54. C42AEDDF2B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDD92B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift */; };
  55. C42AEDE02B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEDDA2B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift */; };
  56. C42AEDE12B03717F0045EF66 /* ChangeMealCollectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEDE32B03717F0045EF66 /* ChangeMealCollectionView.xib */; };
  57. C42AEDE82B03727E0045EF66 /* HomeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEDEA2B03727E0045EF66 /* HomeViewController.xib */; };
  58. C42AEDEF2B0372D70045EF66 /* HomeSecondViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEDF12B0372D70045EF66 /* HomeSecondViewController.xib */; };
  59. C42AEDF82B03731E0045EF66 /* HomeFoodItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEDFA2B03731E0045EF66 /* HomeFoodItem.xib */; };
  60. C42AEDFF2B03737D0045EF66 /* EverybodyLoveItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE012B03737D0045EF66 /* EverybodyLoveItem.xib */; };
  61. C42AEE062B0374A30045EF66 /* SalesmanFirstShowView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE082B0374A30045EF66 /* SalesmanFirstShowView.xib */; };
  62. C42AEE0D2B0376F70045EF66 /* AddresViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE0F2B0376F70045EF66 /* AddresViewCell.xib */; };
  63. C42AEE142B03786A0045EF66 /* PersonalInformationVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE162B03786A0045EF66 /* PersonalInformationVC.xib */; };
  64. C42AEE1B2B037AED0045EF66 /* UnsubscribeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE1D2B037AED0045EF66 /* UnsubscribeViewController.xib */; };
  65. C42AEE222B037BD40045EF66 /* AddEvaluateCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE242B037BD40045EF66 /* AddEvaluateCell.xib */; };
  66. C42AEE2B2B04D9CA0045EF66 /* RechargeAmountViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42AEE292B04D9CA0045EF66 /* RechargeAmountViewController.swift */; };
  67. C42AEE2C2B04D9CA0045EF66 /* RechargeAmountViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C42AEE2A2B04D9CA0045EF66 /* RechargeAmountViewController.xib */; };
  68. C42BB5552ADD457B003FF663 /* RegisteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5532ADD457B003FF663 /* RegisteViewController.swift */; };
  69. C42BB55C2ADD4C50003FF663 /* CodeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB55A2ADD4C50003FF663 /* CodeViewController.swift */; };
  70. C42BB5612ADD5045003FF663 /* MCProxyTextViewRx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB55F2ADD5045003FF663 /* MCProxyTextViewRx.swift */; };
  71. C42BB5622ADD5045003FF663 /* MCProxyTextFieldRx.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5602ADD5045003FF663 /* MCProxyTextFieldRx.swift */; };
  72. C42BB5642ADD56D7003FF663 /* ElementUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5632ADD56D7003FF663 /* ElementUtil.swift */; };
  73. C42BB5722ADD69C1003FF663 /* LoginModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5712ADD69C1003FF663 /* LoginModel.swift */; };
  74. C42BB5752ADD6F27003FF663 /* LoginViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C42BB5742ADD6F27003FF663 /* LoginViewModel.swift */; };
  75. C438E3C82AF795A700F671AE /* OrderTypeEnum.swift in Sources */ = {isa = PBXBuildFile; fileRef = C438E3C72AF795A700F671AE /* OrderTypeEnum.swift */; };
  76. C438E3CA2AF7B4F300F671AE /* OrderViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C438E3C92AF7B4F300F671AE /* OrderViewModel.swift */; };
  77. C438E3CD2AF7C54600F671AE /* OrderListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C438E3CF2AF7C54600F671AE /* OrderListCell.xib */; };
  78. C438E3D42AF7E80300F671AE /* OrderManagerVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C438E3D62AF7E80300F671AE /* OrderManagerVC.xib */; };
  79. C44301F52AF5DC830098C854 /* selectAddressView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44301F42AF5DC830098C854 /* selectAddressView.swift */; };
  80. C44301FA2AF5DEBA0098C854 /* OrderAddressCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44301F82AF5DEBA0098C854 /* OrderAddressCell.swift */; };
  81. C44301FC2AF5E1860098C854 /* OrderAddressCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44301FE2AF5E1860098C854 /* OrderAddressCell.xib */; };
  82. C44302152AF5F5370098C854 /* selectAddressView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44302172AF5F5370098C854 /* selectAddressView.xib */; };
  83. C443021F2AF5FA330098C854 /* OrderDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C443021E2AF5FA330098C854 /* OrderDataModel.swift */; };
  84. C44302212AF6043B0098C854 /* PayMentSelectView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44302202AF6043B0098C854 /* PayMentSelectView.swift */; };
  85. C44302242AF6073A0098C854 /* PayMentSelectView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44302262AF6073A0098C854 /* PayMentSelectView.xib */; };
  86. C443022E2AF615780098C854 /* UserPayMentSheet.swift in Sources */ = {isa = PBXBuildFile; fileRef = C443022D2AF615780098C854 /* UserPayMentSheet.swift */; };
  87. C443023A2AF61A2A0098C854 /* UserPayMentSheet.xib in Resources */ = {isa = PBXBuildFile; fileRef = C443023C2AF61A2A0098C854 /* UserPayMentSheet.xib */; };
  88. C44302442AF6835B0098C854 /* OderDetailHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44302432AF6835B0098C854 /* OderDetailHeadView.swift */; };
  89. C448CCF72AFE37CE00B3B068 /* AddEvaluateViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CCF52AFE37CE00B3B068 /* AddEvaluateViewController.swift */; };
  90. C448CCFD2AFE3B3F00B3B068 /* EvaluateViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CCFC2AFE3B3F00B3B068 /* EvaluateViewModel.swift */; };
  91. C448CCFF2AFE3B5E00B3B068 /* EvaluateRequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CCFE2AFE3B5E00B3B068 /* EvaluateRequestModel.swift */; };
  92. C448CD022AFE3DE200B3B068 /* AddEvaluateCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CD002AFE3DE200B3B068 /* AddEvaluateCell.swift */; };
  93. C448CD0B2AFE4E8700B3B068 /* AddEvaluateViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C448CD0D2AFE4E8700B3B068 /* AddEvaluateViewController.xib */; };
  94. C448CD122AFE4FA900B3B068 /* textView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C448CD112AFE4FA900B3B068 /* textView.swift */; };
  95. C448CD1C2AFE8AAF00B3B068 /* MealHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C448CD1E2AFE8AAF00B3B068 /* MealHeadView.xib */; };
  96. C44CFA412AFB1AD1000D592D /* OrderDetailFootView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA402AFB1AD1000D592D /* OrderDetailFootView.swift */; };
  97. C44CFA452AFB2940000D592D /* OrderDetailSectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA442AFB2940000D592D /* OrderDetailSectionView.swift */; };
  98. C44CFA472AFB2948000D592D /* OrderDetailSectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA462AFB2948000D592D /* OrderDetailSectionView.xib */; };
  99. C44CFA4A2AFB3247000D592D /* payMentItemCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA482AFB3247000D592D /* payMentItemCell.swift */; };
  100. C44CFA4B2AFB3247000D592D /* payMentItemCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA492AFB3247000D592D /* payMentItemCell.xib */; };
  101. C44CFA552AFB5308000D592D /* OrderDetailFootView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA572AFB5308000D592D /* OrderDetailFootView.xib */; };
  102. C44CFA602AFB5CAD000D592D /* MyViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA5F2AFB5CAD000D592D /* MyViewModel.swift */; };
  103. C44CFA622AFB5CCF000D592D /* MyRequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA612AFB5CCF000D592D /* MyRequestModel.swift */; };
  104. C44CFA652AFB8084000D592D /* BrokerageCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA632AFB8084000D592D /* BrokerageCell.swift */; };
  105. C44CFA672AFB81FF000D592D /* BrokerageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA692AFB81FF000D592D /* BrokerageCell.xib */; };
  106. C44CFA6F2AFB8255000D592D /* BrokerageSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA6E2AFB8255000D592D /* BrokerageSheetView.swift */; };
  107. C44CFA722AFB8AB7000D592D /* BrokerageSheetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C44CFA742AFB8AB7000D592D /* BrokerageSheetView.xib */; };
  108. C44CFA7A2AFB8B89000D592D /* PromotionSheetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C44CFA792AFB8B89000D592D /* PromotionSheetView.swift */; };
  109. C450016F2AD67CF000F96CFA /* OrderReadyCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C450016D2AD67CF000F96CFA /* OrderReadyCell.swift */; };
  110. C45001702AD67CF000F96CFA /* OrderReadyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C450016E2AD67CF000F96CFA /* OrderReadyCell.xib */; };
  111. C45411752B00DB740096F60E /* BalanceViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411732B00DB740096F60E /* BalanceViewCell.swift */; };
  112. C45411762B00DB740096F60E /* BalanceViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45411742B00DB740096F60E /* BalanceViewCell.xib */; };
  113. C45411782B00DF200096F60E /* BalanceTabHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411772B00DF200096F60E /* BalanceTabHeadView.swift */; };
  114. C454117B2B00DF780096F60E /* BalanceTabHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C454117D2B00DF780096F60E /* BalanceTabHeadView.xib */; };
  115. C45411852B00E38D0096F60E /* HomeSecondViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411832B00E38D0096F60E /* HomeSecondViewController.swift */; };
  116. C454118A2B012CB70096F60E /* PhoneLoginViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411882B012CB70096F60E /* PhoneLoginViewController.swift */; };
  117. C454118E2B0130970096F60E /* sortedNameEN.plist in Resources */ = {isa = PBXBuildFile; fileRef = C454118C2B0130970096F60E /* sortedNameEN.plist */; };
  118. C454118F2B0130970096F60E /* sortedNameCH.plist in Resources */ = {isa = PBXBuildFile; fileRef = C454118D2B0130970096F60E /* sortedNameCH.plist */; };
  119. C45411912B0130C40096F60E /* EWCountryCodeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45411902B0130C40096F60E /* EWCountryCodeViewController.swift */; };
  120. C4577CA82AEA7B88004D9439 /* SetMealDetailVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CA62AEA7B88004D9439 /* SetMealDetailVC.swift */; };
  121. C4577CA92AEA7B88004D9439 /* SetMealDetailVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CA72AEA7B88004D9439 /* SetMealDetailVC.xib */; };
  122. C4577CAC2AEA7BE8004D9439 /* MealHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CAB2AEA7BE8004D9439 /* MealHeadView.swift */; };
  123. C4577CB02AEA8BBC004D9439 /* MealCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CAF2AEA8BBC004D9439 /* MealCollectionView.swift */; };
  124. C4577CB32AEA8E5C004D9439 /* MealCollectionView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CB52AEA8E5C004D9439 /* MealCollectionView.xib */; };
  125. C4577CBC2AEA8FFD004D9439 /* SetMealCollectionItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CBA2AEA8FFD004D9439 /* SetMealCollectionItem.swift */; };
  126. C4577CBD2AEA8FFD004D9439 /* SetMealCollectionItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CBB2AEA8FFD004D9439 /* SetMealCollectionItem.xib */; };
  127. C4577CBF2AEA9A9B004D9439 /* DeliveryTimeSetView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CBE2AEA9A9B004D9439 /* DeliveryTimeSetView.swift */; };
  128. C4577CC42AEA9DC7004D9439 /* SetMealViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CC32AEA9DC7004D9439 /* SetMealViewModel.swift */; };
  129. C4577CC72AEA9E02004D9439 /* SetMealModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CC62AEA9E02004D9439 /* SetMealModel.swift */; };
  130. C4577CCA2AEABA09004D9439 /* DeliveryTimeItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CC82AEABA09004D9439 /* DeliveryTimeItem.swift */; };
  131. C4577CCB2AEABA09004D9439 /* DeliveryTimeItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CC92AEABA09004D9439 /* DeliveryTimeItem.xib */; };
  132. C4577CCE2AEBBB2A004D9439 /* NeedKonwView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CCD2AEBBB2A004D9439 /* NeedKonwView.swift */; };
  133. C4577CD42AEBC168004D9439 /* MealDescribeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CD32AEBC168004D9439 /* MealDescribeView.swift */; };
  134. C4577CD62AEBC173004D9439 /* MealDescribeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CD52AEBC173004D9439 /* MealDescribeView.xib */; };
  135. C4577CD72AEBC19F004D9439 /* NeedKonwView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CD92AEBC19F004D9439 /* NeedKonwView.xib */; };
  136. C4577CE12AEBC5C4004D9439 /* ChangeMealCollectionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CE02AEBC5C4004D9439 /* ChangeMealCollectionView.swift */; };
  137. C4577CE62AEBC8A7004D9439 /* ChangeMealCollectItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4577CE42AEBC8A7004D9439 /* ChangeMealCollectItem.swift */; };
  138. C4577CE72AEBC8A7004D9439 /* ChangeMealCollectItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4577CE52AEBC8A7004D9439 /* ChangeMealCollectItem.xib */; };
  139. C4577D042AEBCEE9004D9439 /* NSObject+Hint.m in Sources */ = {isa = PBXBuildFile; fileRef = C4577CFB2AEBCEE9004D9439 /* NSObject+Hint.m */; };
  140. C45C66922B01CEE7005E13CE /* EditLoginPSWViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C66902B01CEE7005E13CE /* EditLoginPSWViewController.swift */; };
  141. C45C66972B01E42E005E13CE /* EditPayPSWViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C66952B01E42E005E13CE /* EditPayPSWViewController.swift */; };
  142. C45C669C2B01EED5005E13CE /* SalesmanComplementVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C669A2B01EED5005E13CE /* SalesmanComplementVC.swift */; };
  143. C45C669D2B01EED5005E13CE /* SalesmanComplementVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45C669B2B01EED5005E13CE /* SalesmanComplementVC.xib */; };
  144. C45C8A162AD182ED009D6C3A /* timeManageSheetView.m in Sources */ = {isa = PBXBuildFile; fileRef = C45C8A152AD182ED009D6C3A /* timeManageSheetView.m */; };
  145. C45C8A192AD18D41009D6C3A /* timeManageSheetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45C8A1B2AD18D41009D6C3A /* timeManageSheetView.xib */; };
  146. C45C8A292AD240B9009D6C3A /* OrderManagerVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C8A272AD240B9009D6C3A /* OrderManagerVC.swift */; };
  147. C45C8A362AD24932009D6C3A /* OrderListCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45C8A342AD24932009D6C3A /* OrderListCell.swift */; };
  148. C45DC1202AE90D230066BD93 /* LanguagesUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45DC11F2AE90D230066BD93 /* LanguagesUtil.swift */; };
  149. C45DC1222AE91AB70066BD93 /* ImageView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45DC1212AE91AB70066BD93 /* ImageView.swift */; };
  150. C45E1EC62AF9DC91005C9210 /* MyViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C45E1EC42AF9DC91005C9210 /* MyViewController.swift */; };
  151. C45E1EC82AF9E412005C9210 /* MyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C45E1ECA2AF9E412005C9210 /* MyViewController.xib */; };
  152. C46731532AF9F6E400658C58 /* PersonalInformationVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C46731512AF9F6E400658C58 /* PersonalInformationVC.swift */; };
  153. C46731572AFA085500658C58 /* UnsubscribeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C46731552AFA085500658C58 /* UnsubscribeViewController.swift */; };
  154. C467315C2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C467315A2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift */; };
  155. C467315E2AFA13FF00658C58 /* UnsubscribeDetailVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C46731602AFA13FF00658C58 /* UnsubscribeDetailVC.xib */; };
  156. C467316E2AFA569900658C58 /* OderDetailHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C46731702AFA569900658C58 /* OderDetailHeadView.xib */; };
  157. C470B5722AEE5BE3009046B4 /* SingleMealDetailController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5702AEE5BE3009046B4 /* SingleMealDetailController.swift */; };
  158. C470B5732AEE5BE3009046B4 /* SingleMealDetailController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C470B5712AEE5BE3009046B4 /* SingleMealDetailController.xib */; };
  159. C470B5752AEFBACB009046B4 /* AddRemarkView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5742AEFBACB009046B4 /* AddRemarkView.swift */; };
  160. C470B5782AEFBD07009046B4 /* AddRemarkView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C470B57A2AEFBD07009046B4 /* AddRemarkView.xib */; };
  161. C470B5802AEFC3C1009046B4 /* ReplaceFoodView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B57F2AEFC3C1009046B4 /* ReplaceFoodView.swift */; };
  162. C470B58B2AEFEF39009046B4 /* ShoppingCarViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B58A2AEFEF39009046B4 /* ShoppingCarViewModel.swift */; };
  163. C470B58D2AEFF1E2009046B4 /* ShopCarModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B58C2AEFF1E2009046B4 /* ShopCarModel.swift */; };
  164. C470B5932AF0B05B009046B4 /* DeliveryTimeSetView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C470B5952AF0B05B009046B4 /* DeliveryTimeSetView.xib */; };
  165. C470B59B2AF0BDB5009046B4 /* CheckOrderHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B59A2AF0BDB5009046B4 /* CheckOrderHeadView.swift */; };
  166. C470B5A72AF0C719009046B4 /* CheckOrderViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5A52AF0C719009046B4 /* CheckOrderViewController.swift */; };
  167. C470B5A82AF0C719009046B4 /* CheckOrderViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C470B5A62AF0C719009046B4 /* CheckOrderViewController.xib */; };
  168. C470B5AC2AF0D8C8009046B4 /* AddressManagerVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5AA2AF0D8C8009046B4 /* AddressManagerVC.swift */; };
  169. C470B5B32AF0DCBA009046B4 /* AddresViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C470B5B12AF0DCBA009046B4 /* AddresViewCell.swift */; };
  170. C48363AF2AC3D96400E3FA1B /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48363AE2AC3D96400E3FA1B /* AppDelegate.swift */; };
  171. C48363B62AC3D96400E3FA1B /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C48363B42AC3D96400E3FA1B /* Main.storyboard */; };
  172. C48363B92AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = C48363B72AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld */; };
  173. C48363BB2AC3D96500E3FA1B /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C48363BA2AC3D96500E3FA1B /* Assets.xcassets */; };
  174. C48363C92AC3D96500E3FA1B /* ADHTuanCanTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48363C82AC3D96500E3FA1B /* ADHTuanCanTests.swift */; };
  175. C48363D32AC3D96500E3FA1B /* ADHTuanCanUITests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48363D22AC3D96500E3FA1B /* ADHTuanCanUITests.swift */; };
  176. C48363D52AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C48363D42AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift */; };
  177. C4836A252AC3F6D500E3FA1B /* ADHcolor.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A242AC3F6D500E3FA1B /* ADHcolor.swift */; };
  178. C4836A282AC3FBD900E3FA1B /* MacroDefinition.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A272AC3FBD900E3FA1B /* MacroDefinition.swift */; };
  179. C4836A452AC41C1100E3FA1B /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = C4836A472AC41C1100E3FA1B /* Localizable.strings */; };
  180. C4836A6F2AC516FC00E3FA1B /* MCResponseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A682AC516FC00E3FA1B /* MCResponseModel.swift */; };
  181. C4836A702AC516FC00E3FA1B /* MCHttpUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A692AC516FC00E3FA1B /* MCHttpUtil.swift */; };
  182. C4836A732AC516FC00E3FA1B /* MCHttpRxExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A6C2AC516FC00E3FA1B /* MCHttpRxExtension.swift */; };
  183. C4836A782AC517AA00E3FA1B /* MCBaseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A752AC517AA00E3FA1B /* MCBaseModel.swift */; };
  184. C4836A792AC517AA00E3FA1B /* MCBaseRequestModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A762AC517AA00E3FA1B /* MCBaseRequestModel.swift */; };
  185. C4836A7A2AC517AA00E3FA1B /* MCBaseViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A772AC517AA00E3FA1B /* MCBaseViewModel.swift */; };
  186. C4836A852AC5180A00E3FA1B /* NotificationUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A7C2AC5180A00E3FA1B /* NotificationUtil.swift */; };
  187. C4836A862AC5180A00E3FA1B /* Convert.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A7D2AC5180A00E3FA1B /* Convert.swift */; };
  188. C4836A872AC5180A00E3FA1B /* OptionalUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A7E2AC5180A00E3FA1B /* OptionalUtil.swift */; };
  189. C4836A892AC5180A00E3FA1B /* OtherGeneralMethod.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A802AC5180A00E3FA1B /* OtherGeneralMethod.swift */; };
  190. C4836A8A2AC5180A00E3FA1B /* ArrayUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A812AC5180A00E3FA1B /* ArrayUtil.swift */; };
  191. C4836A8B2AC5180A00E3FA1B /* GCDUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A822AC5180A00E3FA1B /* GCDUtil.swift */; };
  192. C4836A8D2AC5180B00E3FA1B /* StringUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836A842AC5180A00E3FA1B /* StringUtil.swift */; };
  193. C4836AC92AC51FBB00E3FA1B /* TCLogingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836AC72AC51FBB00E3FA1B /* TCLogingViewController.swift */; };
  194. C4836B172AC5597B00E3FA1B /* ButtonUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B162AC5597B00E3FA1B /* ButtonUtil.swift */; };
  195. C4836B3D2AC5784900E3FA1B /* HomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B3B2AC5784900E3FA1B /* HomeViewController.swift */; };
  196. C4836B412AC57AA400E3FA1B /* UIView+Visualization.m in Sources */ = {isa = PBXBuildFile; fileRef = C4836B3F2AC57AA400E3FA1B /* UIView+Visualization.m */; };
  197. C4836B4C2AC58BE200E3FA1B /* HomeFoodItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B4A2AC58BE200E3FA1B /* HomeFoodItem.swift */; };
  198. C4836B562AC5910E00E3FA1B /* CollectionViewUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B552AC5910E00E3FA1B /* CollectionViewUtil.swift */; };
  199. C4836B582AC5912300E3FA1B /* NibUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B572AC5912300E3FA1B /* NibUtil.swift */; };
  200. C4836B5A2AC6ED0600E3FA1B /* HomeDateView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B592AC6ED0600E3FA1B /* HomeDateView.swift */; };
  201. C4836B622AC7035D00E3FA1B /* dateItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B612AC7035D00E3FA1B /* dateItem.swift */; };
  202. C4836B662AC7037600E3FA1B /* dateItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836B652AC7037600E3FA1B /* dateItem.xib */; };
  203. C4836B6C2AC7271800E3FA1B /* EverybodyLoveView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B6B2AC7271800E3FA1B /* EverybodyLoveView.swift */; };
  204. C4836B6F2AC72B0F00E3FA1B /* EverybodyLoveView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836B712AC72B0F00E3FA1B /* EverybodyLoveView.xib */; };
  205. C4836B772AC72C0900E3FA1B /* EverybodyLoveItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B762AC72C0900E3FA1B /* EverybodyLoveItem.swift */; };
  206. C4836B7A2AC7308400E3FA1B /* HomeDateView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836B7C2AC7308400E3FA1B /* HomeDateView.xib */; };
  207. C4836B852AC7F79600E3FA1B /* BaseTabbarController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B842AC7F79600E3FA1B /* BaseTabbarController.swift */; };
  208. C4836B872AC8039500E3FA1B /* ADHBaseVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836B862AC8039500E3FA1B /* ADHBaseVC.swift */; };
  209. C4836C2B2AC87B5F00E3FA1B /* HomeRecommendView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836C2A2AC87B5F00E3FA1B /* HomeRecommendView.swift */; };
  210. C4836C2D2AC87B6900E3FA1B /* HomeRecommendView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836C2C2AC87B6900E3FA1B /* HomeRecommendView.xib */; };
  211. C4836C302AC89C1800E3FA1B /* SearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4836C2F2AC89C1800E3FA1B /* SearchView.swift */; };
  212. C4836C332AC8A26A00E3FA1B /* SearchView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4836C352AC8A26A00E3FA1B /* SearchView.xib */; };
  213. C4B082B82AF54CA500CD146E /* CheckOrderHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4B082BA2AF54CA500CD146E /* CheckOrderHeadView.xib */; };
  214. C4BFF79B2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4BFF79A2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift */; };
  215. C4BFF7F72AFD2D3500CCA462 /* Http+UploadImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4BFF7F62AFD2D3500CCA462 /* Http+UploadImage.swift */; };
  216. C4C51C6C2AF0E57E00F4636E /* AddresViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C6B2AF0E57E00F4636E /* AddresViewModel.swift */; };
  217. C4C51C6E2AF0E5A500F4636E /* AddresBaseModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C6D2AF0E5A400F4636E /* AddresBaseModel.swift */; };
  218. C4C51C712AF0EB0C00F4636E /* AddressEditorVC.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C6F2AF0EB0C00F4636E /* AddressEditorVC.swift */; };
  219. C4C51C732AF0FF4100F4636E /* AddressManagerVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C51C752AF0FF4100F4636E /* AddressManagerVC.xib */; };
  220. C4C51C7A2AF0FFBE00F4636E /* AddressEditorVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C51C7C2AF0FFBE00F4636E /* AddressEditorVC.xib */; };
  221. C4C51C822AF122A900F4636E /* EditorDeliveryView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C812AF122A900F4636E /* EditorDeliveryView.swift */; };
  222. C4C51C842AF122B800F4636E /* EditorDeliveryView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C51C832AF122B800F4636E /* EditorDeliveryView.xib */; };
  223. C4C51C862AF1413100F4636E /* EditPersonNumView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C852AF1413100F4636E /* EditPersonNumView.swift */; };
  224. C4C51C882AF1413B00F4636E /* EditPersonNumView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C51C872AF1413B00F4636E /* EditPersonNumView.xib */; };
  225. C4C51C8A2AF1488E00F4636E /* ADHAlertView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C51C892AF1488E00F4636E /* ADHAlertView.swift */; };
  226. C4C51C8C2AF1489700F4636E /* ADHAlertView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C51C8B2AF1489700F4636E /* ADHAlertView.xib */; };
  227. C4C6D8372AFC0D4900E1AFB5 /* phoneCallView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C6D8362AFC0D4900E1AFB5 /* phoneCallView.swift */; };
  228. C4C6D83A2AFC100400E1AFB5 /* phoneCallView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C6D83C2AFC100400E1AFB5 /* phoneCallView.xib */; };
  229. C4C6D8452AFCCB3900E1AFB5 /* BalanceViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C6D8432AFCCB3900E1AFB5 /* BalanceViewController.swift */; };
  230. C4C6D8462AFCCB3900E1AFB5 /* BalanceViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C6D8442AFCCB3900E1AFB5 /* BalanceViewController.xib */; };
  231. C4C6D8492AFCD21F00E1AFB5 /* PswPayView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C6D8482AFCD21F00E1AFB5 /* PswPayView.swift */; };
  232. C4C6D84B2AFCD22800E1AFB5 /* PswPayView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4C6D84A2AFCD22800E1AFB5 /* PswPayView.xib */; };
  233. C4C9B85C2AF3C5FE00C13A61 /* YDRectCorner.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C9B85B2AF3C5FE00C13A61 /* YDRectCorner.swift */; };
  234. C4C9B8652AF3C7F900C13A61 /* UIView+rounded.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4C9B8642AF3C7F900C13A61 /* UIView+rounded.swift */; };
  235. C4CF5F052AC97D6800B6B2D9 /* HomeViewModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F042AC97D6800B6B2D9 /* HomeViewModel.swift */; };
  236. C4CF5F092AC97DB500B6B2D9 /* TCHomeGetDataModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F082AC97DB500B6B2D9 /* TCHomeGetDataModel.swift */; };
  237. C4CF5F0D2AC9801300B6B2D9 /* MCHud.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F0C2AC9801300B6B2D9 /* MCHud.swift */; };
  238. C4CF5F132AC9813B00B6B2D9 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F102AC9813B00B6B2D9 /* MBProgressHUD.m */; };
  239. C4CF5F142AC9813B00B6B2D9 /* UIViewController+HUB.m in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F122AC9813B00B6B2D9 /* UIViewController+HUB.m */; };
  240. C4CF5F3E2ACD3B8000B6B2D9 /* UserDefaultUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F3D2ACD3B8000B6B2D9 /* UserDefaultUtil.swift */; };
  241. C4CF5F422ACD3EDA00B6B2D9 /* StartupPageViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F412ACD3EDA00B6B2D9 /* StartupPageViewController.swift */; };
  242. C4CF5F452ACD436600B6B2D9 /* StartView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F442ACD436600B6B2D9 /* StartView.swift */; };
  243. C4CF5F4A2ACD468000B6B2D9 /* StartView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4CF5F4C2ACD468000B6B2D9 /* StartView.xib */; };
  244. C4CF5F5A2ACD509600B6B2D9 /* MenuTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F582ACD509600B6B2D9 /* MenuTableViewCell.swift */; };
  245. C4CF5F5B2ACD509600B6B2D9 /* MenuTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4CF5F592ACD509600B6B2D9 /* MenuTableViewCell.xib */; };
  246. C4CF5F5D2ACD632600B6B2D9 /* TableViewUtil.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F5C2ACD632600B6B2D9 /* TableViewUtil.swift */; };
  247. C4CF5F5F2ACD640000B6B2D9 /* MenuHeadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4CF5F5E2ACD640000B6B2D9 /* MenuHeadView.swift */; };
  248. C4CF5F612ACD640E00B6B2D9 /* MenuHeadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4CF5F602ACD640E00B6B2D9 /* MenuHeadView.xib */; };
  249. C4EDD90D2AF2618A00BE8EFF /* ADHBaseNavigationController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD90C2AF2618A00BE8EFF /* ADHBaseNavigationController.swift */; };
  250. C4EDD9152AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD90F2AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift */; };
  251. C4EDD9162AF27C4800BE8EFF /* MCNavBarDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9102AF27C4800BE8EFF /* MCNavBarDelegate.swift */; };
  252. C4EDD9172AF27C4800BE8EFF /* MCNavBarView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9112AF27C4800BE8EFF /* MCNavBarView.swift */; };
  253. C4EDD9182AF27C4800BE8EFF /* MCNavBarSearchView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9122AF27C4800BE8EFF /* MCNavBarSearchView.swift */; };
  254. C4EDD9192AF27C4800BE8EFF /* MCNavBarSegmentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9132AF27C4800BE8EFF /* MCNavBarSegmentView.swift */; };
  255. C4EDD91A2AF27C4800BE8EFF /* MCNavBarCustomView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9142AF27C4800BE8EFF /* MCNavBarCustomView.swift */; };
  256. C4EDD9212AF27CD400BE8EFF /* UIFont+Fonts.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD91F2AF27CD400BE8EFF /* UIFont+Fonts.m */; };
  257. C4EDD9512AF27DDC00BE8EFF /* UIView+Segment.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9232AF27DDC00BE8EFF /* UIView+Segment.m */; };
  258. C4EDD9522AF27DDC00BE8EFF /* UIView+XIB.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9242AF27DDC00BE8EFF /* UIView+XIB.m */; };
  259. C4EDD9532AF27DDC00BE8EFF /* UIView+Nib.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9252AF27DDC00BE8EFF /* UIView+Nib.m */; };
  260. C4EDD9542AF27DDC00BE8EFF /* UIView+GestureCallback.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9282AF27DDC00BE8EFF /* UIView+GestureCallback.m */; };
  261. C4EDD9552AF27DDC00BE8EFF /* UIView+ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD92B2AF27DDC00BE8EFF /* UIView+ViewController.m */; };
  262. C4EDD9562AF27DDC00BE8EFF /* succeed.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD92F2AF27DDC00BE8EFF /* succeed.png */; };
  263. C4EDD9572AF27DDC00BE8EFF /* UIView+MAC.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9312AF27DDC00BE8EFF /* UIView+MAC.m */; };
  264. C4EDD9582AF27DDC00BE8EFF /* UIView+BlockGesture.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9322AF27DDC00BE8EFF /* UIView+BlockGesture.m */; };
  265. C4EDD9592AF27DDC00BE8EFF /* UIView+Visualization.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9332AF27DDC00BE8EFF /* UIView+Visualization.m */; };
  266. C4EDD95B2AF27DDC00BE8EFF /* EAFeatureItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9392AF27DDC00BE8EFF /* EAFeatureItem.m */; };
  267. C4EDD95C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD93C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m */; };
  268. C4EDD95D2AF27DDC00BE8EFF /* UIView+Shake.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD93D2AF27DDC00BE8EFF /* UIView+Shake.m */; };
  269. C4EDD95E2AF27DDC00BE8EFF /* UIView+XMGExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD93E2AF27DDC00BE8EFF /* UIView+XMGExtension.m */; };
  270. C4EDD95F2AF27DDC00BE8EFF /* error.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9412AF27DDC00BE8EFF /* error.png */; };
  271. C4EDD9602AF27DDC00BE8EFF /* UIView+AnimationProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9432AF27DDC00BE8EFF /* UIView+AnimationProperty.m */; };
  272. C4EDD9612AF27DDC00BE8EFF /* UIView+Hint.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9442AF27DDC00BE8EFF /* UIView+Hint.m */; };
  273. C4EDD9622AF27DDC00BE8EFF /* UIView+Blur.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9462AF27DDC00BE8EFF /* UIView+Blur.m */; };
  274. C4EDD9632AF27DDC00BE8EFF /* UIView+GlowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9472AF27DDC00BE8EFF /* UIView+GlowView.m */; };
  275. C4EDD9642AF27DDC00BE8EFF /* UIView+JYPBadgeView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD94C2AF27DDC00BE8EFF /* UIView+JYPBadgeView.m */; };
  276. C4EDD9652AF27DDC00BE8EFF /* UIView+Find.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD94D2AF27DDC00BE8EFF /* UIView+Find.m */; };
  277. C4EDD9662AF27DDC00BE8EFF /* UIView+RecursiveDescription.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD94E2AF27DDC00BE8EFF /* UIView+RecursiveDescription.m */; };
  278. C4EDD9672AF27DDC00BE8EFF /* UIView+Screenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9502AF27DDC00BE8EFF /* UIView+Screenshot.m */; };
  279. C4EDD9712AF27EF400BE8EFF /* QFTSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD96A2AF27EF400BE8EFF /* QFTSearchBar.m */; };
  280. C4EDD9722AF27EF400BE8EFF /* QFTMoreSearchCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD96C2AF27EF400BE8EFF /* QFTMoreSearchCell.m */; };
  281. C4EDD9732AF27EF400BE8EFF /* QFTMoreSearchCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD96D2AF27EF400BE8EFF /* QFTMoreSearchCell.xib */; };
  282. C4EDD9742AF27EF400BE8EFF /* QFTSearchContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9702AF27EF400BE8EFF /* QFTSearchContentView.m */; };
  283. C4EDD97A2AF2849300BE8EFF /* MCDZNEmptyDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9782AF2849300BE8EFF /* MCDZNEmptyDelegate.swift */; };
  284. C4EDD97C2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD97B2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift */; };
  285. C4EDD9D52AF2879100BE8EFF /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9A72AF2879100BE8EFF /* UIScrollView+MJRefresh.m */; };
  286. C4EDD9D62AF2879100BE8EFF /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9A82AF2879100BE8EFF /* MJRefreshConst.m */; };
  287. C4EDD9D72AF2879100BE8EFF /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9AC2AF2879100BE8EFF /* MJRefresh.bundle */; };
  288. C4EDD9D82AF2879100BE8EFF /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9AE2AF2879100BE8EFF /* UIScrollView+MJExtension.m */; };
  289. C4EDD9D92AF2879100BE8EFF /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9B12AF2879100BE8EFF /* NSBundle+MJRefresh.m */; };
  290. C4EDD9DA2AF2879100BE8EFF /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9B22AF2879100BE8EFF /* UIView+MJExtension.m */; };
  291. C4EDD9DB2AF2879100BE8EFF /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9B92AF2879100BE8EFF /* MJRefreshBackGifFooter.m */; };
  292. C4EDD9DC2AF2879100BE8EFF /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9BA2AF2879100BE8EFF /* MJRefreshBackStateFooter.m */; };
  293. C4EDD9DD2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9BB2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m */; };
  294. C4EDD9DE2AF2879100BE8EFF /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C02AF2879100BE8EFF /* MJRefreshAutoStateFooter.m */; };
  295. C4EDD9DF2AF2879100BE8EFF /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C12AF2879100BE8EFF /* MJRefreshAutoGifFooter.m */; };
  296. C4EDD9E02AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C22AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m */; };
  297. C4EDD9E12AF2879100BE8EFF /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C42AF2879100BE8EFF /* MJRefreshNormalHeader.m */; };
  298. C4EDD9E22AF2879100BE8EFF /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C82AF2879100BE8EFF /* MJRefreshStateHeader.m */; };
  299. C4EDD9E32AF2879100BE8EFF /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9C92AF2879100BE8EFF /* MJRefreshGifHeader.m */; };
  300. C4EDD9E42AF2879100BE8EFF /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9CB2AF2879100BE8EFF /* MJRefreshFooter.m */; };
  301. C4EDD9E52AF2879100BE8EFF /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9CD2AF2879100BE8EFF /* MJRefreshHeader.m */; };
  302. C4EDD9E62AF2879100BE8EFF /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9CF2AF2879100BE8EFF /* MJRefreshBackFooter.m */; };
  303. C4EDD9E72AF2879100BE8EFF /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9D02AF2879100BE8EFF /* MJRefreshAutoFooter.m */; };
  304. C4EDD9E82AF2879100BE8EFF /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9D22AF2879100BE8EFF /* MJRefreshComponent.m */; };
  305. C4EDDA022AF28B0D00BE8EFF /* UITableView+CellClass.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9EA2AF28B0D00BE8EFF /* UITableView+CellClass.m */; };
  306. C4EDDA032AF28B0D00BE8EFF /* MACTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9EB2AF28B0D00BE8EFF /* MACTableView.m */; };
  307. C4EDDA042AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9EE2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m */; };
  308. C4EDDA052AF28B0D00BE8EFF /* DZNEmptyDataView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9F32AF28B0D00BE8EFF /* DZNEmptyDataView.xib */; };
  309. C4EDDA062AF28B0D00BE8EFF /* DZNEmptyLoadView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9F42AF28B0D00BE8EFF /* DZNEmptyLoadView.xib */; };
  310. C4EDDA072AF28B0D00BE8EFF /* DZNEmptyDataView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9F52AF28B0D00BE8EFF /* DZNEmptyDataView.swift */; };
  311. C4EDDA082AF28B0D00BE8EFF /* DZNEmptyLoadView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9F62AF28B0D00BE8EFF /* DZNEmptyLoadView.swift */; };
  312. C4EDDA092AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDD9F72AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m */; };
  313. C4EDDA0A2AF28B0D00BE8EFF /* icon_refresh_1@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FA2AF28B0D00BE8EFF /* icon_refresh_1@2x.png */; };
  314. C4EDDA0B2AF28B0D00BE8EFF /* icon_refresh_3@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FB2AF28B0D00BE8EFF /* icon_refresh_3@3x.png */; };
  315. C4EDDA0C2AF28B0D00BE8EFF /* icon_refresh_3@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FC2AF28B0D00BE8EFF /* icon_refresh_3@2x.png */; };
  316. C4EDDA0D2AF28B0D00BE8EFF /* icon_refresh_1@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FD2AF28B0D00BE8EFF /* icon_refresh_1@3x.png */; };
  317. C4EDDA0E2AF28B0D00BE8EFF /* icon_refresh_2@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDD9FF2AF28B0D00BE8EFF /* icon_refresh_2@3x.png */; };
  318. C4EDDA0F2AF28B0D00BE8EFF /* icon_refresh_2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C4EDDA002AF28B0D00BE8EFF /* icon_refresh_2@2x.png */; };
  319. C4EDDA102AF28B0D00BE8EFF /* MACRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA012AF28B0D00BE8EFF /* MACRefreshHeader.m */; };
  320. C4EDDA1D2AF28B7400BE8EFF /* MACBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA122AF28B7400BE8EFF /* MACBaseCell.m */; };
  321. C4EDDA1E2AF28B7400BE8EFF /* CellDataAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA152AF28B7400BE8EFF /* CellDataAdapter.m */; };
  322. C4EDDA1F2AF28B7400BE8EFF /* MGSwipeTableCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA172AF28B7400BE8EFF /* MGSwipeTableCell.m */; };
  323. C4EDDA202AF28B7400BE8EFF /* MGSwipeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA1A2AF28B7400BE8EFF /* MGSwipeButton.m */; };
  324. C4EDDA212AF28B7400BE8EFF /* UITableViewCell+MAC.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA1B2AF28B7400BE8EFF /* UITableViewCell+MAC.m */; };
  325. C4EDDA252AF28BAC00BE8EFF /* Aspects.m in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA242AF28BAC00BE8EFF /* Aspects.m */; };
  326. C4EDDA502AF2969A00BE8EFF /* ShoppingCarDetailView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4EDDA4F2AF2969A00BE8EFF /* ShoppingCarDetailView.swift */; };
  327. C4EDDA522AF296A300BE8EFF /* ShoppingCarDetailView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C4EDDA512AF296A300BE8EFF /* ShoppingCarDetailView.xib */; };
  328. FF801E958CDC9F69594019BD /* Pods_ADHTuanCan.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18DFFEA52857E4C78299BDB0 /* Pods_ADHTuanCan.framework */; };
  329. /* End PBXBuildFile section */
  330. /* Begin PBXContainerItemProxy section */
  331. C48363C52AC3D96500E3FA1B /* PBXContainerItemProxy */ = {
  332. isa = PBXContainerItemProxy;
  333. containerPortal = C48363A32AC3D96400E3FA1B /* Project object */;
  334. proxyType = 1;
  335. remoteGlobalIDString = C48363AA2AC3D96400E3FA1B;
  336. remoteInfo = ADHTuanCan;
  337. };
  338. C48363CF2AC3D96500E3FA1B /* PBXContainerItemProxy */ = {
  339. isa = PBXContainerItemProxy;
  340. containerPortal = C48363A32AC3D96400E3FA1B /* Project object */;
  341. proxyType = 1;
  342. remoteGlobalIDString = C48363AA2AC3D96400E3FA1B;
  343. remoteInfo = ADHTuanCan;
  344. };
  345. /* End PBXContainerItemProxy section */
  346. /* Begin PBXFileReference section */
  347. 18DFFEA52857E4C78299BDB0 /* Pods_ADHTuanCan.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_ADHTuanCan.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  348. A392503CF9C8A459BF93B985 /* Pods-ADHTuanCan.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ADHTuanCan.release.xcconfig"; path = "Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan.release.xcconfig"; sourceTree = "<group>"; };
  349. C40690DA2B0714EE002688FD /* CheckOrderFootView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = CheckOrderFootView.xib; sourceTree = "<group>"; };
  350. C40690DB2B0714EE002688FD /* CheckOrderFootView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CheckOrderFootView.swift; sourceTree = "<group>"; };
  351. C40690E82B07A2FE002688FD /* DayCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DayCollectionViewCell.m; sourceTree = "<group>"; };
  352. C40690E92B07A2FE002688FD /* MonthTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MonthTableViewCell.m; sourceTree = "<group>"; };
  353. C40690EA2B07A2FE002688FD /* MonthModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MonthModel.m; sourceTree = "<group>"; };
  354. C40690EC2B07A2FE002688FD /* DayCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DayCollectionViewCell.h; sourceTree = "<group>"; };
  355. C40690ED2B07A2FE002688FD /* MonthTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthTableViewCell.h; sourceTree = "<group>"; };
  356. C40690EF2B07A2FE002688FD /* MonthModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MonthModel.h; sourceTree = "<group>"; };
  357. C40690F42B07AAF9002688FD /* RectCornerUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RectCornerUtil.swift; sourceTree = "<group>"; };
  358. C40691132B08B7E5002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/TCLogingViewController.xib; sourceTree = "<group>"; };
  359. C40691182B08B7F1002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/TCLogingViewController.strings; sourceTree = "<group>"; };
  360. C406911C2B08B7FE002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/TCLogingViewController.strings"; sourceTree = "<group>"; };
  361. C406911E2B08B8C3002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/CodeViewController.xib; sourceTree = "<group>"; };
  362. C40691212B08B8C5002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CodeViewController.strings; sourceTree = "<group>"; };
  363. C40691232B08B8C6002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/CodeViewController.strings"; sourceTree = "<group>"; };
  364. C40691252B08B92C002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PhoneLoginViewController.xib; sourceTree = "<group>"; };
  365. C40691282B08B92E002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PhoneLoginViewController.strings; sourceTree = "<group>"; };
  366. C406912A2B08B92F002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PhoneLoginViewController.strings"; sourceTree = "<group>"; };
  367. C406912C2B08B99E002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/RegisteViewController.xib; sourceTree = "<group>"; };
  368. C406912F2B08B9A0002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/RegisteViewController.strings; sourceTree = "<group>"; };
  369. C40691312B08B9A1002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/RegisteViewController.strings"; sourceTree = "<group>"; };
  370. C40691332B08BA2F002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EditLoginPSWViewController.xib; sourceTree = "<group>"; };
  371. C40691362B08BA32002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EditLoginPSWViewController.strings; sourceTree = "<group>"; };
  372. C40691382B08BA33002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EditLoginPSWViewController.strings"; sourceTree = "<group>"; };
  373. C406913A2B08BB29002688FD /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EditPayPSWViewController.xib; sourceTree = "<group>"; };
  374. C406913D2B08BB2B002688FD /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EditPayPSWViewController.strings; sourceTree = "<group>"; };
  375. C406913F2B08BB2C002688FD /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EditPayPSWViewController.strings"; sourceTree = "<group>"; };
  376. C4144CD32AF91DCB00B5F73C /* OrderDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailViewController.swift; sourceTree = "<group>"; };
  377. C4144CD42AF91DCB00B5F73C /* OrderDetailViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = OrderDetailViewController.xib; sourceTree = "<group>"; };
  378. C41DA49C2AFEF9D500707C5D /* MealEvaluateListVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealEvaluateListVC.swift; sourceTree = "<group>"; };
  379. C41DA49D2AFEF9D500707C5D /* MealEvaluateListVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MealEvaluateListVC.xib; sourceTree = "<group>"; };
  380. C41DA4A02AFEFC4F00707C5D /* MealEcaluateCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealEcaluateCell.swift; sourceTree = "<group>"; };
  381. C41DA4A12AFEFC4F00707C5D /* MealEcaluateCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MealEcaluateCell.xib; sourceTree = "<group>"; };
  382. C41DA4A52AFF176000707C5D /* IntegralListViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegralListViewController.swift; sourceTree = "<group>"; };
  383. C41DA4A62AFF176000707C5D /* IntegralListViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = IntegralListViewController.xib; sourceTree = "<group>"; };
  384. C41DA4A92AFF17B000707C5D /* IntegralHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegralHeadView.swift; sourceTree = "<group>"; };
  385. C41DA4AD2AFF19E000707C5D /* IntegralViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegralViewCell.swift; sourceTree = "<group>"; };
  386. C41DA4AE2AFF19E000707C5D /* IntegralViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = IntegralViewCell.xib; sourceTree = "<group>"; };
  387. C41DA4B12AFF1E6500707C5D /* IntegralSectiionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IntegralSectiionView.swift; sourceTree = "<group>"; };
  388. C41DA4B62AFF22DD00707C5D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/IntegralHeadView.xib; sourceTree = "<group>"; };
  389. C41DA4B92AFF22DE00707C5D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/IntegralHeadView.strings; sourceTree = "<group>"; };
  390. C41DA4BB2AFF22E000707C5D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/IntegralHeadView.strings"; sourceTree = "<group>"; };
  391. C41DA4C42AFF232800707C5D /* IntegralSectiionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = IntegralSectiionView.xib; sourceTree = "<group>"; };
  392. C41DA4C62AFF39BE00707C5D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ReplaceFoodView.xib; sourceTree = "<group>"; };
  393. C41DA4C92AFF39BF00707C5D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ReplaceFoodView.strings; sourceTree = "<group>"; };
  394. C41DA4CB2AFF39C100707C5D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ReplaceFoodView.strings"; sourceTree = "<group>"; };
  395. C41DA4CD2AFF44FF00707C5D /* DiscountsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscountsViewController.swift; sourceTree = "<group>"; };
  396. C41DA4CE2AFF44FF00707C5D /* DiscountsViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DiscountsViewController.xib; sourceTree = "<group>"; };
  397. C41DA4D32AFFAB2400707C5D /* DiscountsListViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscountsListViewCell.swift; sourceTree = "<group>"; };
  398. C41DA4D82AFFB02700707C5D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/DiscountsListViewCell.xib; sourceTree = "<group>"; };
  399. C41DA4DB2AFFB02900707C5D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/DiscountsListViewCell.strings; sourceTree = "<group>"; };
  400. C41DA4DD2AFFB02D00707C5D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/DiscountsListViewCell.strings"; sourceTree = "<group>"; };
  401. C41DA4DE2AFFC03B00707C5D /* DiscountsSectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscountsSectionView.swift; sourceTree = "<group>"; };
  402. C41DA4E02AFFC04900707C5D /* DiscountsSectionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DiscountsSectionView.xib; sourceTree = "<group>"; };
  403. C41DA4E22AFFC58000707C5D /* DiscountsFootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DiscountsFootView.swift; sourceTree = "<group>"; };
  404. C41DA4E42AFFC59100707C5D /* DiscountsFootView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DiscountsFootView.xib; sourceTree = "<group>"; };
  405. C41DA4E72AFFD2DF00707C5D /* RuleDetailViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RuleDetailViewController.swift; sourceTree = "<group>"; };
  406. C41DA4E82AFFD2DF00707C5D /* RuleDetailViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RuleDetailViewController.xib; sourceTree = "<group>"; };
  407. C41DA4EB2AFFDDDE00707C5D /* PromotionCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PromotionCell.swift; sourceTree = "<group>"; };
  408. C41DA4EC2AFFDDDE00707C5D /* PromotionCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PromotionCell.xib; sourceTree = "<group>"; };
  409. C41DA4F02AFFE1C400707C5D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PromotionSheetView.xib; sourceTree = "<group>"; };
  410. C41DA4F32AFFE1C600707C5D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PromotionSheetView.strings; sourceTree = "<group>"; };
  411. C41DA4F52AFFE1C700707C5D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PromotionSheetView.strings"; sourceTree = "<group>"; };
  412. C42AEDCF2B0312070045EF66 /* SalesmanFirstShowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SalesmanFirstShowView.swift; sourceTree = "<group>"; };
  413. C42AEDD42B035A9D0045EF66 /* MCDatePikerView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerView.swift; sourceTree = "<group>"; };
  414. C42AEDD52B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerStyleDelegate.swift; sourceTree = "<group>"; };
  415. C42AEDD62B035A9D0045EF66 /* MCDatePikerDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerDelegate.swift; sourceTree = "<group>"; };
  416. C42AEDD82B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerStyleDelegateImp.swift; sourceTree = "<group>"; };
  417. C42AEDD92B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerDelegateImp_yyyyMM.swift; sourceTree = "<group>"; };
  418. C42AEDDA2B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDatePikerDelegateImp_HHmm.swift; sourceTree = "<group>"; };
  419. C42AEDE22B03717F0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/ChangeMealCollectionView.xib; sourceTree = "<group>"; };
  420. C42AEDE52B0371810045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/ChangeMealCollectionView.strings; sourceTree = "<group>"; };
  421. C42AEDE72B0371820045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/ChangeMealCollectionView.strings"; sourceTree = "<group>"; };
  422. C42AEDE92B03727E0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HomeViewController.xib; sourceTree = "<group>"; };
  423. C42AEDEC2B0372830045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/HomeViewController.strings; sourceTree = "<group>"; };
  424. C42AEDEE2B0372860045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/HomeViewController.strings"; sourceTree = "<group>"; };
  425. C42AEDF02B0372D70045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HomeSecondViewController.xib; sourceTree = "<group>"; };
  426. C42AEDF32B0372D80045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/HomeSecondViewController.strings; sourceTree = "<group>"; };
  427. C42AEDF52B0372D90045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/HomeSecondViewController.strings"; sourceTree = "<group>"; };
  428. C42AEDF92B03731E0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HomeFoodItem.xib; sourceTree = "<group>"; };
  429. C42AEDFC2B0373200045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/HomeFoodItem.strings; sourceTree = "<group>"; };
  430. C42AEDFE2B0373210045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/HomeFoodItem.strings"; sourceTree = "<group>"; };
  431. C42AEE002B03737D0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EverybodyLoveItem.xib; sourceTree = "<group>"; };
  432. C42AEE032B03737E0045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EverybodyLoveItem.strings; sourceTree = "<group>"; };
  433. C42AEE052B0373800045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EverybodyLoveItem.strings"; sourceTree = "<group>"; };
  434. C42AEE072B0374A30045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/SalesmanFirstShowView.xib; sourceTree = "<group>"; };
  435. C42AEE0A2B0374A40045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SalesmanFirstShowView.strings; sourceTree = "<group>"; };
  436. C42AEE0C2B0374A50045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SalesmanFirstShowView.strings"; sourceTree = "<group>"; };
  437. C42AEE0E2B0376F70045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddresViewCell.xib; sourceTree = "<group>"; };
  438. C42AEE112B0376F90045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddresViewCell.strings; sourceTree = "<group>"; };
  439. C42AEE132B0376FB0045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddresViewCell.strings"; sourceTree = "<group>"; };
  440. C42AEE152B03786A0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PersonalInformationVC.xib; sourceTree = "<group>"; };
  441. C42AEE182B03786B0045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PersonalInformationVC.strings; sourceTree = "<group>"; };
  442. C42AEE1A2B03786C0045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PersonalInformationVC.strings"; sourceTree = "<group>"; };
  443. C42AEE1C2B037AED0045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/UnsubscribeViewController.xib; sourceTree = "<group>"; };
  444. C42AEE1F2B037AEE0045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/UnsubscribeViewController.strings; sourceTree = "<group>"; };
  445. C42AEE212B037AEF0045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/UnsubscribeViewController.strings"; sourceTree = "<group>"; };
  446. C42AEE232B037BD40045EF66 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddEvaluateCell.xib; sourceTree = "<group>"; };
  447. C42AEE262B037BD50045EF66 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddEvaluateCell.strings; sourceTree = "<group>"; };
  448. C42AEE282B037BD60045EF66 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddEvaluateCell.strings"; sourceTree = "<group>"; };
  449. C42AEE292B04D9CA0045EF66 /* RechargeAmountViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RechargeAmountViewController.swift; sourceTree = "<group>"; };
  450. C42AEE2A2B04D9CA0045EF66 /* RechargeAmountViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RechargeAmountViewController.xib; sourceTree = "<group>"; };
  451. C42BB5532ADD457B003FF663 /* RegisteViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RegisteViewController.swift; sourceTree = "<group>"; };
  452. C42BB55A2ADD4C50003FF663 /* CodeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CodeViewController.swift; sourceTree = "<group>"; };
  453. C42BB55F2ADD5045003FF663 /* MCProxyTextViewRx.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCProxyTextViewRx.swift; sourceTree = "<group>"; };
  454. C42BB5602ADD5045003FF663 /* MCProxyTextFieldRx.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCProxyTextFieldRx.swift; sourceTree = "<group>"; };
  455. C42BB5632ADD56D7003FF663 /* ElementUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ElementUtil.swift; sourceTree = "<group>"; };
  456. C42BB5712ADD69C1003FF663 /* LoginModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginModel.swift; sourceTree = "<group>"; };
  457. C42BB5742ADD6F27003FF663 /* LoginViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoginViewModel.swift; sourceTree = "<group>"; };
  458. C438E3C72AF795A700F671AE /* OrderTypeEnum.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderTypeEnum.swift; sourceTree = "<group>"; };
  459. C438E3C92AF7B4F300F671AE /* OrderViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderViewModel.swift; sourceTree = "<group>"; };
  460. C438E3CE2AF7C54600F671AE /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderListCell.xib; sourceTree = "<group>"; };
  461. C438E3D12AF7C54800F671AE /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderListCell.strings; sourceTree = "<group>"; };
  462. C438E3D32AF7C54800F671AE /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderListCell.strings"; sourceTree = "<group>"; };
  463. C438E3D52AF7E80300F671AE /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderManagerVC.xib; sourceTree = "<group>"; };
  464. C438E3D72AF7E80500F671AE /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderManagerVC.strings; sourceTree = "<group>"; };
  465. C438E3D82AF7E80700F671AE /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderManagerVC.strings"; sourceTree = "<group>"; };
  466. C44301F42AF5DC830098C854 /* selectAddressView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = selectAddressView.swift; sourceTree = "<group>"; };
  467. C44301F82AF5DEBA0098C854 /* OrderAddressCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderAddressCell.swift; sourceTree = "<group>"; };
  468. C44301FD2AF5E1860098C854 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderAddressCell.xib; sourceTree = "<group>"; };
  469. C44302002AF5E1880098C854 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderAddressCell.strings; sourceTree = "<group>"; };
  470. C44302022AF5E1880098C854 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderAddressCell.strings"; sourceTree = "<group>"; };
  471. C44302162AF5F5370098C854 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/selectAddressView.xib; sourceTree = "<group>"; };
  472. C44302192AF5F5460098C854 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/selectAddressView.strings; sourceTree = "<group>"; };
  473. C443021B2AF5F5480098C854 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/selectAddressView.strings"; sourceTree = "<group>"; };
  474. C443021E2AF5FA330098C854 /* OrderDataModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDataModel.swift; sourceTree = "<group>"; };
  475. C44302202AF6043B0098C854 /* PayMentSelectView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PayMentSelectView.swift; sourceTree = "<group>"; };
  476. C44302252AF6073A0098C854 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/PayMentSelectView.xib; sourceTree = "<group>"; };
  477. C44302282AF6073C0098C854 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/PayMentSelectView.strings; sourceTree = "<group>"; };
  478. C443022A2AF6073C0098C854 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/PayMentSelectView.strings"; sourceTree = "<group>"; };
  479. C443022D2AF615780098C854 /* UserPayMentSheet.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserPayMentSheet.swift; sourceTree = "<group>"; };
  480. C443023B2AF61A2A0098C854 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/UserPayMentSheet.xib; sourceTree = "<group>"; };
  481. C443023E2AF61A2D0098C854 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/UserPayMentSheet.strings; sourceTree = "<group>"; };
  482. C44302402AF61A300098C854 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/UserPayMentSheet.strings"; sourceTree = "<group>"; };
  483. C44302432AF6835B0098C854 /* OderDetailHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OderDetailHeadView.swift; sourceTree = "<group>"; };
  484. C448CCF52AFE37CE00B3B068 /* AddEvaluateViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddEvaluateViewController.swift; sourceTree = "<group>"; };
  485. C448CCFC2AFE3B3F00B3B068 /* EvaluateViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EvaluateViewModel.swift; sourceTree = "<group>"; };
  486. C448CCFE2AFE3B5E00B3B068 /* EvaluateRequestModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EvaluateRequestModel.swift; sourceTree = "<group>"; };
  487. C448CD002AFE3DE200B3B068 /* AddEvaluateCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddEvaluateCell.swift; sourceTree = "<group>"; };
  488. C448CD0C2AFE4E8700B3B068 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddEvaluateViewController.xib; sourceTree = "<group>"; };
  489. C448CD0F2AFE4E9500B3B068 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddEvaluateViewController.strings"; sourceTree = "<group>"; };
  490. C448CD102AFE4E9800B3B068 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddEvaluateViewController.strings; sourceTree = "<group>"; };
  491. C448CD112AFE4FA900B3B068 /* textView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = textView.swift; sourceTree = "<group>"; };
  492. C448CD1D2AFE8AAF00B3B068 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MealHeadView.xib; sourceTree = "<group>"; };
  493. C448CD202AFE8AB000B3B068 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MealHeadView.strings; sourceTree = "<group>"; };
  494. C448CD222AFE8AB200B3B068 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MealHeadView.strings"; sourceTree = "<group>"; };
  495. C44CFA402AFB1AD1000D592D /* OrderDetailFootView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailFootView.swift; sourceTree = "<group>"; };
  496. C44CFA442AFB2940000D592D /* OrderDetailSectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderDetailSectionView.swift; sourceTree = "<group>"; };
  497. C44CFA462AFB2948000D592D /* OrderDetailSectionView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = OrderDetailSectionView.xib; sourceTree = "<group>"; };
  498. C44CFA482AFB3247000D592D /* payMentItemCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = payMentItemCell.swift; sourceTree = "<group>"; };
  499. C44CFA492AFB3247000D592D /* payMentItemCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = payMentItemCell.xib; sourceTree = "<group>"; };
  500. C44CFA562AFB5308000D592D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OrderDetailFootView.xib; sourceTree = "<group>"; };
  501. C44CFA592AFB530F000D592D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OrderDetailFootView.strings; sourceTree = "<group>"; };
  502. C44CFA5B2AFB530F000D592D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OrderDetailFootView.strings"; sourceTree = "<group>"; };
  503. C44CFA5F2AFB5CAD000D592D /* MyViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyViewModel.swift; sourceTree = "<group>"; };
  504. C44CFA612AFB5CCF000D592D /* MyRequestModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyRequestModel.swift; sourceTree = "<group>"; };
  505. C44CFA632AFB8084000D592D /* BrokerageCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BrokerageCell.swift; sourceTree = "<group>"; };
  506. C44CFA682AFB81FF000D592D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/BrokerageCell.xib; sourceTree = "<group>"; };
  507. C44CFA6B2AFB8204000D592D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BrokerageCell.strings; sourceTree = "<group>"; };
  508. C44CFA6D2AFB8205000D592D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BrokerageCell.strings"; sourceTree = "<group>"; };
  509. C44CFA6E2AFB8255000D592D /* BrokerageSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BrokerageSheetView.swift; sourceTree = "<group>"; };
  510. C44CFA732AFB8AB7000D592D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/BrokerageSheetView.xib; sourceTree = "<group>"; };
  511. C44CFA762AFB8ABA000D592D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BrokerageSheetView.strings; sourceTree = "<group>"; };
  512. C44CFA782AFB8ABB000D592D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BrokerageSheetView.strings"; sourceTree = "<group>"; };
  513. C44CFA792AFB8B89000D592D /* PromotionSheetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PromotionSheetView.swift; sourceTree = "<group>"; };
  514. C450016D2AD67CF000F96CFA /* OrderReadyCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderReadyCell.swift; sourceTree = "<group>"; };
  515. C450016E2AD67CF000F96CFA /* OrderReadyCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = OrderReadyCell.xib; sourceTree = "<group>"; };
  516. C45411732B00DB740096F60E /* BalanceViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BalanceViewCell.swift; sourceTree = "<group>"; };
  517. C45411742B00DB740096F60E /* BalanceViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BalanceViewCell.xib; sourceTree = "<group>"; };
  518. C45411772B00DF200096F60E /* BalanceTabHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BalanceTabHeadView.swift; sourceTree = "<group>"; };
  519. C454117C2B00DF780096F60E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/BalanceTabHeadView.xib; sourceTree = "<group>"; };
  520. C454117F2B00DF790096F60E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/BalanceTabHeadView.strings; sourceTree = "<group>"; };
  521. C45411812B00DF7B0096F60E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/BalanceTabHeadView.strings"; sourceTree = "<group>"; };
  522. C45411832B00E38D0096F60E /* HomeSecondViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeSecondViewController.swift; sourceTree = "<group>"; };
  523. C45411882B012CB70096F60E /* PhoneLoginViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PhoneLoginViewController.swift; sourceTree = "<group>"; };
  524. C454118C2B0130970096F60E /* sortedNameEN.plist */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; path = sortedNameEN.plist; sourceTree = "<group>"; };
  525. C454118D2B0130970096F60E /* sortedNameCH.plist */ = {isa = PBXFileReference; lastKnownFileType = file.bplist; path = sortedNameCH.plist; sourceTree = "<group>"; };
  526. C45411902B0130C40096F60E /* EWCountryCodeViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = EWCountryCodeViewController.swift; sourceTree = "<group>"; };
  527. C4577CA62AEA7B88004D9439 /* SetMealDetailVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetMealDetailVC.swift; sourceTree = "<group>"; };
  528. C4577CA72AEA7B88004D9439 /* SetMealDetailVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SetMealDetailVC.xib; sourceTree = "<group>"; };
  529. C4577CAB2AEA7BE8004D9439 /* MealHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealHeadView.swift; sourceTree = "<group>"; };
  530. C4577CAF2AEA8BBC004D9439 /* MealCollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealCollectionView.swift; sourceTree = "<group>"; };
  531. C4577CB42AEA8E5C004D9439 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MealCollectionView.xib; sourceTree = "<group>"; };
  532. C4577CB72AEA8E5E004D9439 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MealCollectionView.strings; sourceTree = "<group>"; };
  533. C4577CB92AEA8E5E004D9439 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MealCollectionView.strings"; sourceTree = "<group>"; };
  534. C4577CBA2AEA8FFD004D9439 /* SetMealCollectionItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetMealCollectionItem.swift; sourceTree = "<group>"; };
  535. C4577CBB2AEA8FFD004D9439 /* SetMealCollectionItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SetMealCollectionItem.xib; sourceTree = "<group>"; };
  536. C4577CBE2AEA9A9B004D9439 /* DeliveryTimeSetView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeliveryTimeSetView.swift; sourceTree = "<group>"; };
  537. C4577CC32AEA9DC7004D9439 /* SetMealViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetMealViewModel.swift; sourceTree = "<group>"; };
  538. C4577CC62AEA9E02004D9439 /* SetMealModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SetMealModel.swift; sourceTree = "<group>"; };
  539. C4577CC82AEABA09004D9439 /* DeliveryTimeItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DeliveryTimeItem.swift; sourceTree = "<group>"; };
  540. C4577CC92AEABA09004D9439 /* DeliveryTimeItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = DeliveryTimeItem.xib; sourceTree = "<group>"; };
  541. C4577CCD2AEBBB2A004D9439 /* NeedKonwView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NeedKonwView.swift; sourceTree = "<group>"; };
  542. C4577CD32AEBC168004D9439 /* MealDescribeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MealDescribeView.swift; sourceTree = "<group>"; };
  543. C4577CD52AEBC173004D9439 /* MealDescribeView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MealDescribeView.xib; sourceTree = "<group>"; };
  544. C4577CD82AEBC19F004D9439 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/NeedKonwView.xib; sourceTree = "<group>"; };
  545. C4577CDB2AEBC1A1004D9439 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/NeedKonwView.strings; sourceTree = "<group>"; };
  546. C4577CDD2AEBC1A1004D9439 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/NeedKonwView.strings"; sourceTree = "<group>"; };
  547. C4577CE02AEBC5C4004D9439 /* ChangeMealCollectionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeMealCollectionView.swift; sourceTree = "<group>"; };
  548. C4577CE42AEBC8A7004D9439 /* ChangeMealCollectItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChangeMealCollectItem.swift; sourceTree = "<group>"; };
  549. C4577CE52AEBC8A7004D9439 /* ChangeMealCollectItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ChangeMealCollectItem.xib; sourceTree = "<group>"; };
  550. C4577CEE2AEBCEE9004D9439 /* NSObject+Hint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Hint.h"; sourceTree = "<group>"; };
  551. C4577CFB2AEBCEE9004D9439 /* NSObject+Hint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Hint.m"; sourceTree = "<group>"; };
  552. C45C66902B01CEE7005E13CE /* EditLoginPSWViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditLoginPSWViewController.swift; sourceTree = "<group>"; };
  553. C45C66952B01E42E005E13CE /* EditPayPSWViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditPayPSWViewController.swift; sourceTree = "<group>"; };
  554. C45C669A2B01EED5005E13CE /* SalesmanComplementVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SalesmanComplementVC.swift; sourceTree = "<group>"; };
  555. C45C669B2B01EED5005E13CE /* SalesmanComplementVC.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SalesmanComplementVC.xib; sourceTree = "<group>"; };
  556. C45C8A142AD182ED009D6C3A /* timeManageSheetView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = timeManageSheetView.h; sourceTree = "<group>"; };
  557. C45C8A152AD182ED009D6C3A /* timeManageSheetView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = timeManageSheetView.m; sourceTree = "<group>"; };
  558. C45C8A1A2AD18D41009D6C3A /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/timeManageSheetView.xib; sourceTree = "<group>"; };
  559. C45C8A1D2AD18D45009D6C3A /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/timeManageSheetView.strings; sourceTree = "<group>"; };
  560. C45C8A1F2AD18D45009D6C3A /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/timeManageSheetView.strings"; sourceTree = "<group>"; };
  561. C45C8A272AD240B9009D6C3A /* OrderManagerVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderManagerVC.swift; sourceTree = "<group>"; };
  562. C45C8A342AD24932009D6C3A /* OrderListCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = OrderListCell.swift; sourceTree = "<group>"; };
  563. C45DC11F2AE90D230066BD93 /* LanguagesUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LanguagesUtil.swift; sourceTree = "<group>"; };
  564. C45DC1212AE91AB70066BD93 /* ImageView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ImageView.swift; sourceTree = "<group>"; };
  565. C45E1EC42AF9DC91005C9210 /* MyViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MyViewController.swift; sourceTree = "<group>"; };
  566. C45E1EC92AF9E412005C9210 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/MyViewController.xib; sourceTree = "<group>"; };
  567. C45E1ECC2AF9E415005C9210 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/MyViewController.strings; sourceTree = "<group>"; };
  568. C45E1ECE2AF9E415005C9210 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/MyViewController.strings"; sourceTree = "<group>"; };
  569. C46731512AF9F6E400658C58 /* PersonalInformationVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PersonalInformationVC.swift; sourceTree = "<group>"; };
  570. C46731552AFA085500658C58 /* UnsubscribeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnsubscribeViewController.swift; sourceTree = "<group>"; };
  571. C467315A2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnsubscribeDetailVC.swift; sourceTree = "<group>"; };
  572. C467315F2AFA13FF00658C58 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/UnsubscribeDetailVC.xib; sourceTree = "<group>"; };
  573. C46731622AFA140000658C58 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/UnsubscribeDetailVC.strings; sourceTree = "<group>"; };
  574. C46731642AFA140100658C58 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/UnsubscribeDetailVC.strings"; sourceTree = "<group>"; };
  575. C467316F2AFA569900658C58 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/OderDetailHeadView.xib; sourceTree = "<group>"; };
  576. C46731722AFA569B00658C58 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/OderDetailHeadView.strings; sourceTree = "<group>"; };
  577. C46731742AFA569C00658C58 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/OderDetailHeadView.strings"; sourceTree = "<group>"; };
  578. C470B5702AEE5BE3009046B4 /* SingleMealDetailController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SingleMealDetailController.swift; sourceTree = "<group>"; };
  579. C470B5712AEE5BE3009046B4 /* SingleMealDetailController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SingleMealDetailController.xib; sourceTree = "<group>"; };
  580. C470B5742AEFBACB009046B4 /* AddRemarkView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddRemarkView.swift; sourceTree = "<group>"; };
  581. C470B5792AEFBD07009046B4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddRemarkView.xib; sourceTree = "<group>"; };
  582. C470B57C2AEFBD09009046B4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddRemarkView.strings; sourceTree = "<group>"; };
  583. C470B57E2AEFBD0A009046B4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddRemarkView.strings"; sourceTree = "<group>"; };
  584. C470B57F2AEFC3C1009046B4 /* ReplaceFoodView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ReplaceFoodView.swift; sourceTree = "<group>"; };
  585. C470B58A2AEFEF39009046B4 /* ShoppingCarViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCarViewModel.swift; sourceTree = "<group>"; };
  586. C470B58C2AEFF1E2009046B4 /* ShopCarModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShopCarModel.swift; sourceTree = "<group>"; };
  587. C470B5942AF0B05B009046B4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/DeliveryTimeSetView.xib; sourceTree = "<group>"; };
  588. C470B5972AF0B05D009046B4 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/DeliveryTimeSetView.strings; sourceTree = "<group>"; };
  589. C470B5992AF0B05D009046B4 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/DeliveryTimeSetView.strings"; sourceTree = "<group>"; };
  590. C470B59A2AF0BDB5009046B4 /* CheckOrderHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckOrderHeadView.swift; sourceTree = "<group>"; };
  591. C470B5A52AF0C719009046B4 /* CheckOrderViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CheckOrderViewController.swift; sourceTree = "<group>"; };
  592. C470B5A62AF0C719009046B4 /* CheckOrderViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CheckOrderViewController.xib; sourceTree = "<group>"; };
  593. C470B5AA2AF0D8C8009046B4 /* AddressManagerVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressManagerVC.swift; sourceTree = "<group>"; };
  594. C470B5B12AF0DCBA009046B4 /* AddresViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddresViewCell.swift; sourceTree = "<group>"; };
  595. C48363AB2AC3D96400E3FA1B /* ADHTuanCan.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = ADHTuanCan.app; sourceTree = BUILT_PRODUCTS_DIR; };
  596. C48363AE2AC3D96400E3FA1B /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
  597. C48363B52AC3D96400E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  598. C48363B82AC3D96400E3FA1B /* ADHTuanCan.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = ADHTuanCan.xcdatamodel; sourceTree = "<group>"; };
  599. C48363BA2AC3D96500E3FA1B /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  600. C48363BF2AC3D96500E3FA1B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  601. C48363C42AC3D96500E3FA1B /* ADHTuanCanTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ADHTuanCanTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  602. C48363C82AC3D96500E3FA1B /* ADHTuanCanTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHTuanCanTests.swift; sourceTree = "<group>"; };
  603. C48363CE2AC3D96500E3FA1B /* ADHTuanCanUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ADHTuanCanUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  604. C48363D22AC3D96500E3FA1B /* ADHTuanCanUITests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHTuanCanUITests.swift; sourceTree = "<group>"; };
  605. C48363D42AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHTuanCanUITestsLaunchTests.swift; sourceTree = "<group>"; };
  606. C48368622AC3F00500E3FA1B /* ADHTuanCan-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ADHTuanCan-Bridging-Header.h"; sourceTree = "<group>"; };
  607. C4836A242AC3F6D500E3FA1B /* ADHcolor.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHcolor.swift; sourceTree = "<group>"; };
  608. C4836A272AC3FBD900E3FA1B /* MacroDefinition.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MacroDefinition.swift; sourceTree = "<group>"; };
  609. C4836A362AC417BB00E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
  610. C4836A462AC41C1100E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/Localizable.strings; sourceTree = "<group>"; };
  611. C4836A482AC41C1200E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Localizable.strings"; sourceTree = "<group>"; };
  612. C4836A682AC516FC00E3FA1B /* MCResponseModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCResponseModel.swift; sourceTree = "<group>"; };
  613. C4836A692AC516FC00E3FA1B /* MCHttpUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCHttpUtil.swift; sourceTree = "<group>"; };
  614. C4836A6C2AC516FC00E3FA1B /* MCHttpRxExtension.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCHttpRxExtension.swift; sourceTree = "<group>"; };
  615. C4836A752AC517AA00E3FA1B /* MCBaseModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCBaseModel.swift; sourceTree = "<group>"; };
  616. C4836A762AC517AA00E3FA1B /* MCBaseRequestModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCBaseRequestModel.swift; sourceTree = "<group>"; };
  617. C4836A772AC517AA00E3FA1B /* MCBaseViewModel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCBaseViewModel.swift; sourceTree = "<group>"; };
  618. C4836A7C2AC5180A00E3FA1B /* NotificationUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NotificationUtil.swift; sourceTree = "<group>"; };
  619. C4836A7D2AC5180A00E3FA1B /* Convert.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Convert.swift; sourceTree = "<group>"; };
  620. C4836A7E2AC5180A00E3FA1B /* OptionalUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OptionalUtil.swift; sourceTree = "<group>"; };
  621. C4836A802AC5180A00E3FA1B /* OtherGeneralMethod.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OtherGeneralMethod.swift; sourceTree = "<group>"; };
  622. C4836A812AC5180A00E3FA1B /* ArrayUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ArrayUtil.swift; sourceTree = "<group>"; };
  623. C4836A822AC5180A00E3FA1B /* GCDUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GCDUtil.swift; sourceTree = "<group>"; };
  624. C4836A842AC5180A00E3FA1B /* StringUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = StringUtil.swift; sourceTree = "<group>"; };
  625. C4836AC72AC51FBB00E3FA1B /* TCLogingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TCLogingViewController.swift; sourceTree = "<group>"; };
  626. C4836AD32AC52D6300E3FA1B /* ADHTuanCan-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ADHTuanCan-Bridging-Header.h"; sourceTree = "<group>"; };
  627. C4836B162AC5597B00E3FA1B /* ButtonUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ButtonUtil.swift; sourceTree = "<group>"; };
  628. C4836B3B2AC5784900E3FA1B /* HomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewController.swift; sourceTree = "<group>"; };
  629. C4836B3F2AC57AA400E3FA1B /* UIView+Visualization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Visualization.m"; sourceTree = "<group>"; };
  630. C4836B402AC57AA400E3FA1B /* UIView+Visualization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Visualization.h"; sourceTree = "<group>"; };
  631. C4836B4A2AC58BE200E3FA1B /* HomeFoodItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeFoodItem.swift; sourceTree = "<group>"; };
  632. C4836B552AC5910E00E3FA1B /* CollectionViewUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CollectionViewUtil.swift; sourceTree = "<group>"; };
  633. C4836B572AC5912300E3FA1B /* NibUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NibUtil.swift; sourceTree = "<group>"; };
  634. C4836B592AC6ED0600E3FA1B /* HomeDateView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeDateView.swift; sourceTree = "<group>"; };
  635. C4836B612AC7035D00E3FA1B /* dateItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = dateItem.swift; sourceTree = "<group>"; };
  636. C4836B652AC7037600E3FA1B /* dateItem.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = dateItem.xib; sourceTree = "<group>"; };
  637. C4836B6B2AC7271800E3FA1B /* EverybodyLoveView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EverybodyLoveView.swift; sourceTree = "<group>"; };
  638. C4836B702AC72B0F00E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/EverybodyLoveView.xib; sourceTree = "<group>"; };
  639. C4836B732AC72B1400E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/EverybodyLoveView.strings; sourceTree = "<group>"; };
  640. C4836B752AC72B1400E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/EverybodyLoveView.strings"; sourceTree = "<group>"; };
  641. C4836B762AC72C0900E3FA1B /* EverybodyLoveItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EverybodyLoveItem.swift; sourceTree = "<group>"; };
  642. C4836B7B2AC7308400E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/HomeDateView.xib; sourceTree = "<group>"; };
  643. C4836B7E2AC7308800E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/HomeDateView.strings; sourceTree = "<group>"; };
  644. C4836B802AC7308800E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/HomeDateView.strings"; sourceTree = "<group>"; };
  645. C4836B842AC7F79600E3FA1B /* BaseTabbarController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseTabbarController.swift; sourceTree = "<group>"; };
  646. C4836B862AC8039500E3FA1B /* ADHBaseVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHBaseVC.swift; sourceTree = "<group>"; };
  647. C4836C2A2AC87B5F00E3FA1B /* HomeRecommendView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeRecommendView.swift; sourceTree = "<group>"; };
  648. C4836C2C2AC87B6900E3FA1B /* HomeRecommendView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeRecommendView.xib; sourceTree = "<group>"; };
  649. C4836C2F2AC89C1800E3FA1B /* SearchView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SearchView.swift; sourceTree = "<group>"; };
  650. C4836C342AC8A26A00E3FA1B /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/SearchView.xib; sourceTree = "<group>"; };
  651. C4836C372AC8A26D00E3FA1B /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/SearchView.strings; sourceTree = "<group>"; };
  652. C4836C392AC8A26D00E3FA1B /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/SearchView.strings"; sourceTree = "<group>"; };
  653. C4B082B92AF54CA500CD146E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/CheckOrderHeadView.xib; sourceTree = "<group>"; };
  654. C4B082BC2AF54CAC00CD146E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/CheckOrderHeadView.strings; sourceTree = "<group>"; };
  655. C4B082BE2AF54CB300CD146E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/CheckOrderHeadView.strings"; sourceTree = "<group>"; };
  656. C4BFF79A2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "MCHttpUtil+UploadImage.swift"; sourceTree = "<group>"; };
  657. C4BFF7F62AFD2D3500CCA462 /* Http+UploadImage.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Http+UploadImage.swift"; sourceTree = "<group>"; };
  658. C4C51C6B2AF0E57E00F4636E /* AddresViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddresViewModel.swift; sourceTree = "<group>"; };
  659. C4C51C6D2AF0E5A400F4636E /* AddresBaseModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddresBaseModel.swift; sourceTree = "<group>"; };
  660. C4C51C6F2AF0EB0C00F4636E /* AddressEditorVC.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AddressEditorVC.swift; sourceTree = "<group>"; };
  661. C4C51C742AF0FF4100F4636E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddressManagerVC.xib; sourceTree = "<group>"; };
  662. C4C51C772AF0FF4200F4636E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddressManagerVC.strings; sourceTree = "<group>"; };
  663. C4C51C792AF0FF4300F4636E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddressManagerVC.strings"; sourceTree = "<group>"; };
  664. C4C51C7B2AF0FFBE00F4636E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/AddressEditorVC.xib; sourceTree = "<group>"; };
  665. C4C51C7E2AF0FFBF00F4636E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/AddressEditorVC.strings; sourceTree = "<group>"; };
  666. C4C51C802AF0FFC000F4636E /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/AddressEditorVC.strings"; sourceTree = "<group>"; };
  667. C4C51C812AF122A900F4636E /* EditorDeliveryView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditorDeliveryView.swift; sourceTree = "<group>"; };
  668. C4C51C832AF122B800F4636E /* EditorDeliveryView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = EditorDeliveryView.xib; sourceTree = "<group>"; };
  669. C4C51C852AF1413100F4636E /* EditPersonNumView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EditPersonNumView.swift; sourceTree = "<group>"; };
  670. C4C51C872AF1413B00F4636E /* EditPersonNumView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = EditPersonNumView.xib; sourceTree = "<group>"; };
  671. C4C51C892AF1488E00F4636E /* ADHAlertView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHAlertView.swift; sourceTree = "<group>"; };
  672. C4C51C8B2AF1489700F4636E /* ADHAlertView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ADHAlertView.xib; sourceTree = "<group>"; };
  673. C4C6D8362AFC0D4900E1AFB5 /* phoneCallView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = phoneCallView.swift; sourceTree = "<group>"; };
  674. C4C6D83B2AFC100400E1AFB5 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/phoneCallView.xib; sourceTree = "<group>"; };
  675. C4C6D83E2AFC100600E1AFB5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/phoneCallView.strings; sourceTree = "<group>"; };
  676. C4C6D8402AFC100600E1AFB5 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/phoneCallView.strings"; sourceTree = "<group>"; };
  677. C4C6D8432AFCCB3900E1AFB5 /* BalanceViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BalanceViewController.swift; sourceTree = "<group>"; };
  678. C4C6D8442AFCCB3900E1AFB5 /* BalanceViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = BalanceViewController.xib; sourceTree = "<group>"; };
  679. C4C6D8482AFCD21F00E1AFB5 /* PswPayView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PswPayView.swift; sourceTree = "<group>"; };
  680. C4C6D84A2AFCD22800E1AFB5 /* PswPayView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = PswPayView.xib; sourceTree = "<group>"; };
  681. C4C9B85B2AF3C5FE00C13A61 /* YDRectCorner.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = YDRectCorner.swift; sourceTree = "<group>"; };
  682. C4C9B8642AF3C7F900C13A61 /* UIView+rounded.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "UIView+rounded.swift"; sourceTree = "<group>"; };
  683. C4CF5F042AC97D6800B6B2D9 /* HomeViewModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewModel.swift; sourceTree = "<group>"; };
  684. C4CF5F082AC97DB500B6B2D9 /* TCHomeGetDataModel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TCHomeGetDataModel.swift; sourceTree = "<group>"; };
  685. C4CF5F0C2AC9801300B6B2D9 /* MCHud.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCHud.swift; sourceTree = "<group>"; };
  686. C4CF5F0F2AC9813B00B6B2D9 /* UIViewController+HUB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+HUB.h"; sourceTree = "<group>"; };
  687. C4CF5F102AC9813B00B6B2D9 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
  688. C4CF5F112AC9813B00B6B2D9 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
  689. C4CF5F122AC9813B00B6B2D9 /* UIViewController+HUB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+HUB.m"; sourceTree = "<group>"; };
  690. C4CF5F3D2ACD3B8000B6B2D9 /* UserDefaultUtil.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserDefaultUtil.swift; sourceTree = "<group>"; };
  691. C4CF5F412ACD3EDA00B6B2D9 /* StartupPageViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StartupPageViewController.swift; sourceTree = "<group>"; };
  692. C4CF5F442ACD436600B6B2D9 /* StartView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StartView.swift; sourceTree = "<group>"; };
  693. C4CF5F4B2ACD468000B6B2D9 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/StartView.xib; sourceTree = "<group>"; };
  694. C4CF5F4E2ACD468400B6B2D9 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/StartView.strings; sourceTree = "<group>"; };
  695. C4CF5F502ACD468500B6B2D9 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/StartView.strings"; sourceTree = "<group>"; };
  696. C4CF5F582ACD509600B6B2D9 /* MenuTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuTableViewCell.swift; sourceTree = "<group>"; };
  697. C4CF5F592ACD509600B6B2D9 /* MenuTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MenuTableViewCell.xib; sourceTree = "<group>"; };
  698. C4CF5F5C2ACD632600B6B2D9 /* TableViewUtil.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TableViewUtil.swift; sourceTree = "<group>"; };
  699. C4CF5F5E2ACD640000B6B2D9 /* MenuHeadView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MenuHeadView.swift; sourceTree = "<group>"; };
  700. C4CF5F602ACD640E00B6B2D9 /* MenuHeadView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MenuHeadView.xib; sourceTree = "<group>"; };
  701. C4EDD90C2AF2618A00BE8EFF /* ADHBaseNavigationController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ADHBaseNavigationController.swift; sourceTree = "<group>"; };
  702. C4EDD90F2AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarSegmentValue1View.swift; sourceTree = "<group>"; };
  703. C4EDD9102AF27C4800BE8EFF /* MCNavBarDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarDelegate.swift; sourceTree = "<group>"; };
  704. C4EDD9112AF27C4800BE8EFF /* MCNavBarView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarView.swift; sourceTree = "<group>"; };
  705. C4EDD9122AF27C4800BE8EFF /* MCNavBarSearchView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarSearchView.swift; sourceTree = "<group>"; };
  706. C4EDD9132AF27C4800BE8EFF /* MCNavBarSegmentView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarSegmentView.swift; sourceTree = "<group>"; };
  707. C4EDD9142AF27C4800BE8EFF /* MCNavBarCustomView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCNavBarCustomView.swift; sourceTree = "<group>"; };
  708. C4EDD91C2AF27CD400BE8EFF /* UIFont+Fonts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+Fonts.h"; sourceTree = "<group>"; };
  709. C4EDD91F2AF27CD400BE8EFF /* UIFont+Fonts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+Fonts.m"; sourceTree = "<group>"; };
  710. C4EDD9232AF27DDC00BE8EFF /* UIView+Segment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Segment.m"; sourceTree = "<group>"; };
  711. C4EDD9242AF27DDC00BE8EFF /* UIView+XIB.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIB.m"; sourceTree = "<group>"; };
  712. C4EDD9252AF27DDC00BE8EFF /* UIView+Nib.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Nib.m"; sourceTree = "<group>"; };
  713. C4EDD9262AF27DDC00BE8EFF /* UIView+XMGExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XMGExtension.h"; sourceTree = "<group>"; };
  714. C4EDD9272AF27DDC00BE8EFF /* UIView+Shake.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Shake.h"; sourceTree = "<group>"; };
  715. C4EDD9282AF27DDC00BE8EFF /* UIView+GestureCallback.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+GestureCallback.m"; sourceTree = "<group>"; };
  716. C4EDD9292AF27DDC00BE8EFF /* UIView+GlowView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+GlowView.h"; sourceTree = "<group>"; };
  717. C4EDD92A2AF27DDC00BE8EFF /* UIView+Blur.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Blur.h"; sourceTree = "<group>"; };
  718. C4EDD92B2AF27DDC00BE8EFF /* UIView+ViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ViewController.m"; sourceTree = "<group>"; };
  719. C4EDD92C2AF27DDC00BE8EFF /* UIView+Hint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hint.h"; sourceTree = "<group>"; };
  720. C4EDD92D2AF27DDC00BE8EFF /* UIView+AnimationProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AnimationProperty.h"; sourceTree = "<group>"; };
  721. C4EDD92E2AF27DDC00BE8EFF /* UIView+Find.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Find.h"; sourceTree = "<group>"; };
  722. C4EDD92F2AF27DDC00BE8EFF /* succeed.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = succeed.png; sourceTree = "<group>"; };
  723. C4EDD9302AF27DDC00BE8EFF /* UIView+JYPBadgeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+JYPBadgeView.h"; sourceTree = "<group>"; };
  724. C4EDD9312AF27DDC00BE8EFF /* UIView+MAC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MAC.m"; sourceTree = "<group>"; };
  725. C4EDD9322AF27DDC00BE8EFF /* UIView+BlockGesture.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+BlockGesture.m"; sourceTree = "<group>"; };
  726. C4EDD9332AF27DDC00BE8EFF /* UIView+Visualization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Visualization.m"; sourceTree = "<group>"; };
  727. C4EDD9352AF27DDC00BE8EFF /* UIView+Screenshot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Screenshot.h"; sourceTree = "<group>"; };
  728. C4EDD9362AF27DDC00BE8EFF /* UIViewHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UIViewHeader.h; sourceTree = "<group>"; };
  729. C4EDD9372AF27DDC00BE8EFF /* UIView+RecursiveDescription.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+RecursiveDescription.h"; sourceTree = "<group>"; };
  730. C4EDD9392AF27DDC00BE8EFF /* EAFeatureItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EAFeatureItem.m; sourceTree = "<group>"; };
  731. C4EDD93A2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+EAFeatureGuideView.h"; sourceTree = "<group>"; };
  732. C4EDD93B2AF27DDC00BE8EFF /* EAFeatureItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EAFeatureItem.h; sourceTree = "<group>"; };
  733. C4EDD93C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+EAFeatureGuideView.m"; sourceTree = "<group>"; };
  734. C4EDD93D2AF27DDC00BE8EFF /* UIView+Shake.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Shake.m"; sourceTree = "<group>"; };
  735. C4EDD93E2AF27DDC00BE8EFF /* UIView+XMGExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XMGExtension.m"; sourceTree = "<group>"; };
  736. C4EDD93F2AF27DDC00BE8EFF /* UIView+Nib.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Nib.h"; sourceTree = "<group>"; };
  737. C4EDD9402AF27DDC00BE8EFF /* UIView+XIB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIB.h"; sourceTree = "<group>"; };
  738. C4EDD9412AF27DDC00BE8EFF /* error.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = error.png; sourceTree = "<group>"; };
  739. C4EDD9422AF27DDC00BE8EFF /* UIView+Segment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Segment.h"; sourceTree = "<group>"; };
  740. C4EDD9432AF27DDC00BE8EFF /* UIView+AnimationProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AnimationProperty.m"; sourceTree = "<group>"; };
  741. C4EDD9442AF27DDC00BE8EFF /* UIView+Hint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hint.m"; sourceTree = "<group>"; };
  742. C4EDD9452AF27DDC00BE8EFF /* UIView+ViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ViewController.h"; sourceTree = "<group>"; };
  743. C4EDD9462AF27DDC00BE8EFF /* UIView+Blur.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Blur.m"; sourceTree = "<group>"; };
  744. C4EDD9472AF27DDC00BE8EFF /* UIView+GlowView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+GlowView.m"; sourceTree = "<group>"; };
  745. C4EDD9482AF27DDC00BE8EFF /* UIView+GestureCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+GestureCallback.h"; sourceTree = "<group>"; };
  746. C4EDD9492AF27DDC00BE8EFF /* UIView+MAC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MAC.h"; sourceTree = "<group>"; };
  747. C4EDD94A2AF27DDC00BE8EFF /* UIView+BlockGesture.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+BlockGesture.h"; sourceTree = "<group>"; };
  748. C4EDD94B2AF27DDC00BE8EFF /* UIView+Visualization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Visualization.h"; sourceTree = "<group>"; };
  749. C4EDD94C2AF27DDC00BE8EFF /* UIView+JYPBadgeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+JYPBadgeView.m"; sourceTree = "<group>"; };
  750. C4EDD94D2AF27DDC00BE8EFF /* UIView+Find.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Find.m"; sourceTree = "<group>"; };
  751. C4EDD94E2AF27DDC00BE8EFF /* UIView+RecursiveDescription.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+RecursiveDescription.m"; sourceTree = "<group>"; };
  752. C4EDD9502AF27DDC00BE8EFF /* UIView+Screenshot.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Screenshot.m"; sourceTree = "<group>"; };
  753. C4EDD9692AF27EF400BE8EFF /* QFTSearchContentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QFTSearchContentView.h; sourceTree = "<group>"; };
  754. C4EDD96A2AF27EF400BE8EFF /* QFTSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QFTSearchBar.m; sourceTree = "<group>"; };
  755. C4EDD96C2AF27EF400BE8EFF /* QFTMoreSearchCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QFTMoreSearchCell.m; sourceTree = "<group>"; };
  756. C4EDD96D2AF27EF400BE8EFF /* QFTMoreSearchCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = QFTMoreSearchCell.xib; sourceTree = "<group>"; };
  757. C4EDD96E2AF27EF400BE8EFF /* QFTMoreSearchCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QFTMoreSearchCell.h; sourceTree = "<group>"; };
  758. C4EDD96F2AF27EF400BE8EFF /* QFTSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QFTSearchBar.h; sourceTree = "<group>"; };
  759. C4EDD9702AF27EF400BE8EFF /* QFTSearchContentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QFTSearchContentView.m; sourceTree = "<group>"; };
  760. C4EDD9752AF2813B00BE8EFF /* ACMacros.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ACMacros.h; sourceTree = "<group>"; };
  761. C4EDD9782AF2849300BE8EFF /* MCDZNEmptyDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MCDZNEmptyDelegate.swift; sourceTree = "<group>"; };
  762. C4EDD97B2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ADHBaseVC+DZNEmpty.swift"; sourceTree = "<group>"; };
  763. C4EDD9A72AF2879100BE8EFF /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
  764. C4EDD9A82AF2879100BE8EFF /* MJRefreshConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshConst.m; sourceTree = "<group>"; };
  765. C4EDD9A92AF2879100BE8EFF /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
  766. C4EDD9AA2AF2879100BE8EFF /* MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefresh.h; sourceTree = "<group>"; };
  767. C4EDD9AB2AF2879100BE8EFF /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+MJRefresh.h"; sourceTree = "<group>"; };
  768. C4EDD9AC2AF2879100BE8EFF /* MJRefresh.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MJRefresh.bundle; sourceTree = "<group>"; };
  769. C4EDD9AD2AF2879100BE8EFF /* UIView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MJExtension.h"; sourceTree = "<group>"; };
  770. C4EDD9AE2AF2879100BE8EFF /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
  771. C4EDD9AF2AF2879100BE8EFF /* MJRefreshConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshConst.h; sourceTree = "<group>"; };
  772. C4EDD9B02AF2879100BE8EFF /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
  773. C4EDD9B12AF2879100BE8EFF /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+MJRefresh.m"; sourceTree = "<group>"; };
  774. C4EDD9B22AF2879100BE8EFF /* UIView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MJExtension.m"; sourceTree = "<group>"; };
  775. C4EDD9B62AF2879100BE8EFF /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
  776. C4EDD9B72AF2879100BE8EFF /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
  777. C4EDD9B82AF2879100BE8EFF /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
  778. C4EDD9B92AF2879100BE8EFF /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
  779. C4EDD9BA2AF2879100BE8EFF /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
  780. C4EDD9BB2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
  781. C4EDD9BD2AF2879100BE8EFF /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
  782. C4EDD9BE2AF2879100BE8EFF /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
  783. C4EDD9BF2AF2879100BE8EFF /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
  784. C4EDD9C02AF2879100BE8EFF /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
  785. C4EDD9C12AF2879100BE8EFF /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
  786. C4EDD9C22AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
  787. C4EDD9C42AF2879100BE8EFF /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshNormalHeader.m; sourceTree = "<group>"; };
  788. C4EDD9C52AF2879100BE8EFF /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshStateHeader.h; sourceTree = "<group>"; };
  789. C4EDD9C62AF2879100BE8EFF /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshGifHeader.h; sourceTree = "<group>"; };
  790. C4EDD9C72AF2879100BE8EFF /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshNormalHeader.h; sourceTree = "<group>"; };
  791. C4EDD9C82AF2879100BE8EFF /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshStateHeader.m; sourceTree = "<group>"; };
  792. C4EDD9C92AF2879100BE8EFF /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshGifHeader.m; sourceTree = "<group>"; };
  793. C4EDD9CB2AF2879100BE8EFF /* MJRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshFooter.m; sourceTree = "<group>"; };
  794. C4EDD9CC2AF2879100BE8EFF /* MJRefreshComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshComponent.h; sourceTree = "<group>"; };
  795. C4EDD9CD2AF2879100BE8EFF /* MJRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshHeader.m; sourceTree = "<group>"; };
  796. C4EDD9CE2AF2879100BE8EFF /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoFooter.h; sourceTree = "<group>"; };
  797. C4EDD9CF2AF2879100BE8EFF /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackFooter.m; sourceTree = "<group>"; };
  798. C4EDD9D02AF2879100BE8EFF /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoFooter.m; sourceTree = "<group>"; };
  799. C4EDD9D12AF2879100BE8EFF /* MJRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshHeader.h; sourceTree = "<group>"; };
  800. C4EDD9D22AF2879100BE8EFF /* MJRefreshComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshComponent.m; sourceTree = "<group>"; };
  801. C4EDD9D32AF2879100BE8EFF /* MJRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshFooter.h; sourceTree = "<group>"; };
  802. C4EDD9D42AF2879100BE8EFF /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackFooter.h; sourceTree = "<group>"; };
  803. C4EDD9EA2AF28B0D00BE8EFF /* UITableView+CellClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+CellClass.m"; sourceTree = "<group>"; };
  804. C4EDD9EB2AF28B0D00BE8EFF /* MACTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MACTableView.m; sourceTree = "<group>"; };
  805. C4EDD9EC2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+LoadPageIndex.h"; sourceTree = "<group>"; };
  806. C4EDD9ED2AF28B0D00BE8EFF /* UITableViewHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITableViewHeader.h; sourceTree = "<group>"; };
  807. C4EDD9EE2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+LoadPageIndex.m"; sourceTree = "<group>"; };
  808. C4EDD9EF2AF28B0D00BE8EFF /* MACTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MACTableView.h; sourceTree = "<group>"; };
  809. C4EDD9F02AF28B0D00BE8EFF /* UITableView+CellClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+CellClass.h"; sourceTree = "<group>"; };
  810. C4EDD9F32AF28B0D00BE8EFF /* DZNEmptyDataView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DZNEmptyDataView.xib; sourceTree = "<group>"; };
  811. C4EDD9F42AF28B0D00BE8EFF /* DZNEmptyLoadView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DZNEmptyLoadView.xib; sourceTree = "<group>"; };
  812. C4EDD9F52AF28B0D00BE8EFF /* DZNEmptyDataView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DZNEmptyDataView.swift; sourceTree = "<group>"; };
  813. C4EDD9F62AF28B0D00BE8EFF /* DZNEmptyLoadView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DZNEmptyLoadView.swift; sourceTree = "<group>"; };
  814. C4EDD9F72AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+EmptyDataSet.m"; sourceTree = "<group>"; };
  815. C4EDD9F82AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+EmptyDataSet.h"; sourceTree = "<group>"; };
  816. C4EDD9FA2AF28B0D00BE8EFF /* icon_refresh_1@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_1@2x.png"; sourceTree = "<group>"; };
  817. C4EDD9FB2AF28B0D00BE8EFF /* icon_refresh_3@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_3@3x.png"; sourceTree = "<group>"; };
  818. C4EDD9FC2AF28B0D00BE8EFF /* icon_refresh_3@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_3@2x.png"; sourceTree = "<group>"; };
  819. C4EDD9FD2AF28B0D00BE8EFF /* icon_refresh_1@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_1@3x.png"; sourceTree = "<group>"; };
  820. C4EDD9FE2AF28B0D00BE8EFF /* MACRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MACRefreshHeader.h; sourceTree = "<group>"; };
  821. C4EDD9FF2AF28B0D00BE8EFF /* icon_refresh_2@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_2@3x.png"; sourceTree = "<group>"; };
  822. C4EDDA002AF28B0D00BE8EFF /* icon_refresh_2@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "icon_refresh_2@2x.png"; sourceTree = "<group>"; };
  823. C4EDDA012AF28B0D00BE8EFF /* MACRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MACRefreshHeader.m; sourceTree = "<group>"; };
  824. C4EDDA122AF28B7400BE8EFF /* MACBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MACBaseCell.m; sourceTree = "<group>"; };
  825. C4EDDA132AF28B7400BE8EFF /* CellDataAdapter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CellDataAdapter.h; sourceTree = "<group>"; };
  826. C4EDDA142AF28B7400BE8EFF /* UITableViewCell+MAC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewCell+MAC.h"; sourceTree = "<group>"; };
  827. C4EDDA152AF28B7400BE8EFF /* CellDataAdapter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CellDataAdapter.m; sourceTree = "<group>"; };
  828. C4EDDA172AF28B7400BE8EFF /* MGSwipeTableCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeTableCell.m; sourceTree = "<group>"; };
  829. C4EDDA182AF28B7400BE8EFF /* MGSwipeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeButton.h; sourceTree = "<group>"; };
  830. C4EDDA192AF28B7400BE8EFF /* MGSwipeTableCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MGSwipeTableCell.h; sourceTree = "<group>"; };
  831. C4EDDA1A2AF28B7400BE8EFF /* MGSwipeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MGSwipeButton.m; sourceTree = "<group>"; };
  832. C4EDDA1B2AF28B7400BE8EFF /* UITableViewCell+MAC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewCell+MAC.m"; sourceTree = "<group>"; };
  833. C4EDDA1C2AF28B7400BE8EFF /* MACBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MACBaseCell.h; sourceTree = "<group>"; };
  834. C4EDDA232AF28BAC00BE8EFF /* Aspects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Aspects.h; sourceTree = "<group>"; };
  835. C4EDDA242AF28BAC00BE8EFF /* Aspects.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Aspects.m; sourceTree = "<group>"; };
  836. C4EDDA4F2AF2969A00BE8EFF /* ShoppingCarDetailView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShoppingCarDetailView.swift; sourceTree = "<group>"; };
  837. C4EDDA512AF296A300BE8EFF /* ShoppingCarDetailView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ShoppingCarDetailView.xib; sourceTree = "<group>"; };
  838. D5A42DEC0153678020E581CB /* Pods-ADHTuanCan.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-ADHTuanCan.debug.xcconfig"; path = "Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan.debug.xcconfig"; sourceTree = "<group>"; };
  839. /* End PBXFileReference section */
  840. /* Begin PBXFrameworksBuildPhase section */
  841. C48363A82AC3D96400E3FA1B /* Frameworks */ = {
  842. isa = PBXFrameworksBuildPhase;
  843. buildActionMask = 2147483647;
  844. files = (
  845. FF801E958CDC9F69594019BD /* Pods_ADHTuanCan.framework in Frameworks */,
  846. );
  847. runOnlyForDeploymentPostprocessing = 0;
  848. };
  849. C48363C12AC3D96500E3FA1B /* Frameworks */ = {
  850. isa = PBXFrameworksBuildPhase;
  851. buildActionMask = 2147483647;
  852. files = (
  853. );
  854. runOnlyForDeploymentPostprocessing = 0;
  855. };
  856. C48363CB2AC3D96500E3FA1B /* Frameworks */ = {
  857. isa = PBXFrameworksBuildPhase;
  858. buildActionMask = 2147483647;
  859. files = (
  860. );
  861. runOnlyForDeploymentPostprocessing = 0;
  862. };
  863. /* End PBXFrameworksBuildPhase section */
  864. /* Begin PBXGroup section */
  865. 0141F2528F4ED7ECFC47D713 /* Pods */ = {
  866. isa = PBXGroup;
  867. children = (
  868. D5A42DEC0153678020E581CB /* Pods-ADHTuanCan.debug.xcconfig */,
  869. A392503CF9C8A459BF93B985 /* Pods-ADHTuanCan.release.xcconfig */,
  870. );
  871. path = Pods;
  872. sourceTree = "<group>";
  873. };
  874. 2DEE585807330C5CE73589E5 /* Frameworks */ = {
  875. isa = PBXGroup;
  876. children = (
  877. 18DFFEA52857E4C78299BDB0 /* Pods_ADHTuanCan.framework */,
  878. );
  879. name = Frameworks;
  880. sourceTree = "<group>";
  881. };
  882. C40690E72B07A2FE002688FD /* 仿酒店入住 */ = {
  883. isa = PBXGroup;
  884. children = (
  885. );
  886. path = "仿酒店入住";
  887. sourceTree = "<group>";
  888. };
  889. C41DA4A42AFF172B00707C5D /* 积分 */ = {
  890. isa = PBXGroup;
  891. children = (
  892. C41DA4D12AFFAAEB00707C5D /* view */,
  893. C41DA4A52AFF176000707C5D /* IntegralListViewController.swift */,
  894. C41DA4A62AFF176000707C5D /* IntegralListViewController.xib */,
  895. );
  896. path = "积分";
  897. sourceTree = "<group>";
  898. };
  899. C41DA4CC2AFF44DF00707C5D /* 优惠卷 */ = {
  900. isa = PBXGroup;
  901. children = (
  902. C41DA4D22AFFAB0700707C5D /* view */,
  903. C41DA4CD2AFF44FF00707C5D /* DiscountsViewController.swift */,
  904. C41DA4CE2AFF44FF00707C5D /* DiscountsViewController.xib */,
  905. );
  906. path = "优惠卷";
  907. sourceTree = "<group>";
  908. };
  909. C41DA4D12AFFAAEB00707C5D /* view */ = {
  910. isa = PBXGroup;
  911. children = (
  912. C41DA4A92AFF17B000707C5D /* IntegralHeadView.swift */,
  913. C41DA4B72AFF22DD00707C5D /* IntegralHeadView.xib */,
  914. C41DA4B12AFF1E6500707C5D /* IntegralSectiionView.swift */,
  915. C41DA4C42AFF232800707C5D /* IntegralSectiionView.xib */,
  916. C41DA4AD2AFF19E000707C5D /* IntegralViewCell.swift */,
  917. C41DA4AE2AFF19E000707C5D /* IntegralViewCell.xib */,
  918. );
  919. path = view;
  920. sourceTree = "<group>";
  921. };
  922. C41DA4D22AFFAB0700707C5D /* view */ = {
  923. isa = PBXGroup;
  924. children = (
  925. C41DA4D32AFFAB2400707C5D /* DiscountsListViewCell.swift */,
  926. C41DA4D92AFFB02700707C5D /* DiscountsListViewCell.xib */,
  927. C41DA4DE2AFFC03B00707C5D /* DiscountsSectionView.swift */,
  928. C41DA4E02AFFC04900707C5D /* DiscountsSectionView.xib */,
  929. C41DA4E22AFFC58000707C5D /* DiscountsFootView.swift */,
  930. C41DA4E42AFFC59100707C5D /* DiscountsFootView.xib */,
  931. );
  932. path = view;
  933. sourceTree = "<group>";
  934. };
  935. C41DA4E62AFFD2B400707C5D /* 规则说明 */ = {
  936. isa = PBXGroup;
  937. children = (
  938. C41DA4E72AFFD2DF00707C5D /* RuleDetailViewController.swift */,
  939. C41DA4E82AFFD2DF00707C5D /* RuleDetailViewController.xib */,
  940. );
  941. path = "规则说明";
  942. sourceTree = "<group>";
  943. };
  944. C42AEDD32B035A9D0045EF66 /* 日期选择 */ = {
  945. isa = PBXGroup;
  946. children = (
  947. C42AEDD42B035A9D0045EF66 /* MCDatePikerView.swift */,
  948. C42AEDD52B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift */,
  949. C42AEDD62B035A9D0045EF66 /* MCDatePikerDelegate.swift */,
  950. C42AEDD72B035A9D0045EF66 /* 实现 */,
  951. );
  952. path = "日期选择";
  953. sourceTree = "<group>";
  954. };
  955. C42AEDD72B035A9D0045EF66 /* 实现 */ = {
  956. isa = PBXGroup;
  957. children = (
  958. C42AEDD82B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift */,
  959. C42AEDD92B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift */,
  960. C42AEDDA2B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift */,
  961. );
  962. path = "实现";
  963. sourceTree = "<group>";
  964. };
  965. C42BB5522ADD4551003FF663 /* 注册 */ = {
  966. isa = PBXGroup;
  967. children = (
  968. C42BB5532ADD457B003FF663 /* RegisteViewController.swift */,
  969. C406912D2B08B99E002688FD /* RegisteViewController.xib */,
  970. );
  971. path = "注册";
  972. sourceTree = "<group>";
  973. };
  974. C42BB5592ADD4C3C003FF663 /* 验证码 */ = {
  975. isa = PBXGroup;
  976. children = (
  977. C42BB55A2ADD4C50003FF663 /* CodeViewController.swift */,
  978. C406911F2B08B8C3002688FD /* CodeViewController.xib */,
  979. );
  980. path = "验证码";
  981. sourceTree = "<group>";
  982. };
  983. C42BB55E2ADD5045003FF663 /* Proxy多重代理 */ = {
  984. isa = PBXGroup;
  985. children = (
  986. C42BB5632ADD56D7003FF663 /* ElementUtil.swift */,
  987. C42BB55F2ADD5045003FF663 /* MCProxyTextViewRx.swift */,
  988. C42BB5602ADD5045003FF663 /* MCProxyTextFieldRx.swift */,
  989. );
  990. path = "Proxy多重代理";
  991. sourceTree = "<group>";
  992. };
  993. C42BB56E2ADD6931003FF663 /* model */ = {
  994. isa = PBXGroup;
  995. children = (
  996. C42BB5712ADD69C1003FF663 /* LoginModel.swift */,
  997. );
  998. path = model;
  999. sourceTree = "<group>";
  1000. };
  1001. C42BB5732ADD6F04003FF663 /* viewModel */ = {
  1002. isa = PBXGroup;
  1003. children = (
  1004. C42BB5742ADD6F27003FF663 /* LoginViewModel.swift */,
  1005. );
  1006. path = viewModel;
  1007. sourceTree = "<group>";
  1008. };
  1009. C443021C2AF5F9FB0098C854 /* model */ = {
  1010. isa = PBXGroup;
  1011. children = (
  1012. C443021E2AF5FA330098C854 /* OrderDataModel.swift */,
  1013. );
  1014. path = model;
  1015. sourceTree = "<group>";
  1016. };
  1017. C443021D2AF5FA010098C854 /* viewModel */ = {
  1018. isa = PBXGroup;
  1019. children = (
  1020. C438E3C92AF7B4F300F671AE /* OrderViewModel.swift */,
  1021. );
  1022. path = viewModel;
  1023. sourceTree = "<group>";
  1024. };
  1025. C448CCF92AFE3B1200B3B068 /* model */ = {
  1026. isa = PBXGroup;
  1027. children = (
  1028. C448CCFE2AFE3B5E00B3B068 /* EvaluateRequestModel.swift */,
  1029. );
  1030. path = model;
  1031. sourceTree = "<group>";
  1032. };
  1033. C448CCFA2AFE3B1600B3B068 /* viewModel */ = {
  1034. isa = PBXGroup;
  1035. children = (
  1036. C448CCFC2AFE3B3F00B3B068 /* EvaluateViewModel.swift */,
  1037. );
  1038. path = viewModel;
  1039. sourceTree = "<group>";
  1040. };
  1041. C448CCFB2AFE3B1C00B3B068 /* view */ = {
  1042. isa = PBXGroup;
  1043. children = (
  1044. C448CD002AFE3DE200B3B068 /* AddEvaluateCell.swift */,
  1045. C42AEE242B037BD40045EF66 /* AddEvaluateCell.xib */,
  1046. C41DA4A02AFEFC4F00707C5D /* MealEcaluateCell.swift */,
  1047. C41DA4A12AFEFC4F00707C5D /* MealEcaluateCell.xib */,
  1048. );
  1049. path = view;
  1050. sourceTree = "<group>";
  1051. };
  1052. C44CFA5C2AFB5C82000D592D /* view */ = {
  1053. isa = PBXGroup;
  1054. children = (
  1055. C44CFA632AFB8084000D592D /* BrokerageCell.swift */,
  1056. C44CFA692AFB81FF000D592D /* BrokerageCell.xib */,
  1057. C44CFA6E2AFB8255000D592D /* BrokerageSheetView.swift */,
  1058. C44CFA742AFB8AB7000D592D /* BrokerageSheetView.xib */,
  1059. C44CFA792AFB8B89000D592D /* PromotionSheetView.swift */,
  1060. C41DA4F12AFFE1C400707C5D /* PromotionSheetView.xib */,
  1061. C41DA4EB2AFFDDDE00707C5D /* PromotionCell.swift */,
  1062. C41DA4EC2AFFDDDE00707C5D /* PromotionCell.xib */,
  1063. C4C6D8362AFC0D4900E1AFB5 /* phoneCallView.swift */,
  1064. C4C6D83C2AFC100400E1AFB5 /* phoneCallView.xib */,
  1065. );
  1066. path = view;
  1067. sourceTree = "<group>";
  1068. };
  1069. C44CFA5D2AFB5C87000D592D /* viewModel */ = {
  1070. isa = PBXGroup;
  1071. children = (
  1072. C44CFA5F2AFB5CAD000D592D /* MyViewModel.swift */,
  1073. );
  1074. path = viewModel;
  1075. sourceTree = "<group>";
  1076. };
  1077. C44CFA5E2AFB5C8E000D592D /* model */ = {
  1078. isa = PBXGroup;
  1079. children = (
  1080. C44CFA612AFB5CCF000D592D /* MyRequestModel.swift */,
  1081. );
  1082. path = model;
  1083. sourceTree = "<group>";
  1084. };
  1085. C45001672AD677DB00F96CFA /* 订单详情 */ = {
  1086. isa = PBXGroup;
  1087. children = (
  1088. C45001712AD6852800F96CFA /* view */,
  1089. C4144CD32AF91DCB00B5F73C /* OrderDetailViewController.swift */,
  1090. C4144CD42AF91DCB00B5F73C /* OrderDetailViewController.xib */,
  1091. );
  1092. path = "订单详情";
  1093. sourceTree = "<group>";
  1094. };
  1095. C45001682AD677FC00F96CFA /* view */ = {
  1096. isa = PBXGroup;
  1097. children = (
  1098. C45C8A342AD24932009D6C3A /* OrderListCell.swift */,
  1099. C438E3CF2AF7C54600F671AE /* OrderListCell.xib */,
  1100. );
  1101. path = view;
  1102. sourceTree = "<group>";
  1103. };
  1104. C45001712AD6852800F96CFA /* view */ = {
  1105. isa = PBXGroup;
  1106. children = (
  1107. C44302432AF6835B0098C854 /* OderDetailHeadView.swift */,
  1108. C46731702AFA569900658C58 /* OderDetailHeadView.xib */,
  1109. C44CFA402AFB1AD1000D592D /* OrderDetailFootView.swift */,
  1110. C44CFA572AFB5308000D592D /* OrderDetailFootView.xib */,
  1111. C44CFA442AFB2940000D592D /* OrderDetailSectionView.swift */,
  1112. C44CFA462AFB2948000D592D /* OrderDetailSectionView.xib */,
  1113. );
  1114. path = view;
  1115. sourceTree = "<group>";
  1116. };
  1117. C45411722B00DB620096F60E /* view */ = {
  1118. isa = PBXGroup;
  1119. children = (
  1120. C45411732B00DB740096F60E /* BalanceViewCell.swift */,
  1121. C45411742B00DB740096F60E /* BalanceViewCell.xib */,
  1122. C45411772B00DF200096F60E /* BalanceTabHeadView.swift */,
  1123. C454117D2B00DF780096F60E /* BalanceTabHeadView.xib */,
  1124. );
  1125. path = view;
  1126. sourceTree = "<group>";
  1127. };
  1128. C45411822B00E35D0096F60E /* 普团首页 */ = {
  1129. isa = PBXGroup;
  1130. children = (
  1131. C45411832B00E38D0096F60E /* HomeSecondViewController.swift */,
  1132. C42AEDF12B0372D70045EF66 /* HomeSecondViewController.xib */,
  1133. );
  1134. path = "普团首页";
  1135. sourceTree = "<group>";
  1136. };
  1137. C45411872B012C960096F60E /* 手机快捷登录 */ = {
  1138. isa = PBXGroup;
  1139. children = (
  1140. C45411882B012CB70096F60E /* PhoneLoginViewController.swift */,
  1141. C40691262B08B92C002688FD /* PhoneLoginViewController.xib */,
  1142. );
  1143. path = "手机快捷登录";
  1144. sourceTree = "<group>";
  1145. };
  1146. C4577CA52AEA77F9004D9439 /* 餐品详情 */ = {
  1147. isa = PBXGroup;
  1148. children = (
  1149. C4577CD12AEBC110004D9439 /* 评价 */,
  1150. C4577CCC2AEBBAE6004D9439 /* 下单需知 */,
  1151. C4577CC52AEA9DCB004D9439 /* model */,
  1152. C4577CC22AEA9DAA004D9439 /* viewModel */,
  1153. C4577CAA2AEA7B8B004D9439 /* view */,
  1154. C4577CA62AEA7B88004D9439 /* SetMealDetailVC.swift */,
  1155. C4577CA72AEA7B88004D9439 /* SetMealDetailVC.xib */,
  1156. C470B5702AEE5BE3009046B4 /* SingleMealDetailController.swift */,
  1157. C470B5712AEE5BE3009046B4 /* SingleMealDetailController.xib */,
  1158. );
  1159. path = "餐品详情";
  1160. sourceTree = "<group>";
  1161. };
  1162. C4577CAA2AEA7B8B004D9439 /* view */ = {
  1163. isa = PBXGroup;
  1164. children = (
  1165. C4577CDF2AEBC576004D9439 /* 固定套餐view */,
  1166. C4577CDE2AEBC55B004D9439 /* 非固定套餐View */,
  1167. C4577CAB2AEA7BE8004D9439 /* MealHeadView.swift */,
  1168. C448CD1E2AFE8AAF00B3B068 /* MealHeadView.xib */,
  1169. C4577CBE2AEA9A9B004D9439 /* DeliveryTimeSetView.swift */,
  1170. C470B5952AF0B05B009046B4 /* DeliveryTimeSetView.xib */,
  1171. C4577CC82AEABA09004D9439 /* DeliveryTimeItem.swift */,
  1172. C4577CC92AEABA09004D9439 /* DeliveryTimeItem.xib */,
  1173. C470B5742AEFBACB009046B4 /* AddRemarkView.swift */,
  1174. C470B57A2AEFBD07009046B4 /* AddRemarkView.xib */,
  1175. );
  1176. path = view;
  1177. sourceTree = "<group>";
  1178. };
  1179. C4577CC22AEA9DAA004D9439 /* viewModel */ = {
  1180. isa = PBXGroup;
  1181. children = (
  1182. C4577CC32AEA9DC7004D9439 /* SetMealViewModel.swift */,
  1183. );
  1184. path = viewModel;
  1185. sourceTree = "<group>";
  1186. };
  1187. C4577CC52AEA9DCB004D9439 /* model */ = {
  1188. isa = PBXGroup;
  1189. children = (
  1190. C4577CC62AEA9E02004D9439 /* SetMealModel.swift */,
  1191. );
  1192. path = model;
  1193. sourceTree = "<group>";
  1194. };
  1195. C4577CCC2AEBBAE6004D9439 /* 下单需知 */ = {
  1196. isa = PBXGroup;
  1197. children = (
  1198. C4577CCD2AEBBB2A004D9439 /* NeedKonwView.swift */,
  1199. C4577CD92AEBC19F004D9439 /* NeedKonwView.xib */,
  1200. );
  1201. path = "下单需知";
  1202. sourceTree = "<group>";
  1203. };
  1204. C4577CD12AEBC110004D9439 /* 评价 */ = {
  1205. isa = PBXGroup;
  1206. children = (
  1207. C4577CD22AEBC121004D9439 /* view */,
  1208. );
  1209. path = "评价";
  1210. sourceTree = "<group>";
  1211. };
  1212. C4577CD22AEBC121004D9439 /* view */ = {
  1213. isa = PBXGroup;
  1214. children = (
  1215. C4577CD32AEBC168004D9439 /* MealDescribeView.swift */,
  1216. C4577CD52AEBC173004D9439 /* MealDescribeView.xib */,
  1217. );
  1218. path = view;
  1219. sourceTree = "<group>";
  1220. };
  1221. C4577CDE2AEBC55B004D9439 /* 非固定套餐View */ = {
  1222. isa = PBXGroup;
  1223. children = (
  1224. C4577CAF2AEA8BBC004D9439 /* MealCollectionView.swift */,
  1225. C4577CB52AEA8E5C004D9439 /* MealCollectionView.xib */,
  1226. C4577CBA2AEA8FFD004D9439 /* SetMealCollectionItem.swift */,
  1227. C4577CBB2AEA8FFD004D9439 /* SetMealCollectionItem.xib */,
  1228. );
  1229. path = "非固定套餐View";
  1230. sourceTree = "<group>";
  1231. };
  1232. C4577CDF2AEBC576004D9439 /* 固定套餐view */ = {
  1233. isa = PBXGroup;
  1234. children = (
  1235. C4577CE02AEBC5C4004D9439 /* ChangeMealCollectionView.swift */,
  1236. C42AEDE32B03717F0045EF66 /* ChangeMealCollectionView.xib */,
  1237. C4577CE42AEBC8A7004D9439 /* ChangeMealCollectItem.swift */,
  1238. C4577CE52AEBC8A7004D9439 /* ChangeMealCollectItem.xib */,
  1239. C470B57F2AEFC3C1009046B4 /* ReplaceFoodView.swift */,
  1240. C41DA4C72AFF39BE00707C5D /* ReplaceFoodView.xib */,
  1241. );
  1242. path = "固定套餐view";
  1243. sourceTree = "<group>";
  1244. };
  1245. C4577CE82AEBCEE9004D9439 /* NSObject */ = {
  1246. isa = PBXGroup;
  1247. children = (
  1248. C4577CEE2AEBCEE9004D9439 /* NSObject+Hint.h */,
  1249. C4577CFB2AEBCEE9004D9439 /* NSObject+Hint.m */,
  1250. );
  1251. path = NSObject;
  1252. sourceTree = "<group>";
  1253. };
  1254. C45C668F2B01CEB5005E13CE /* 修改登录密码 */ = {
  1255. isa = PBXGroup;
  1256. children = (
  1257. C45C66902B01CEE7005E13CE /* EditLoginPSWViewController.swift */,
  1258. C40691342B08BA2F002688FD /* EditLoginPSWViewController.xib */,
  1259. );
  1260. path = "修改登录密码";
  1261. sourceTree = "<group>";
  1262. };
  1263. C45C66942B01E2B9005E13CE /* 修改支付密码 */ = {
  1264. isa = PBXGroup;
  1265. children = (
  1266. C45C66952B01E42E005E13CE /* EditPayPSWViewController.swift */,
  1267. C406913B2B08BB29002688FD /* EditPayPSWViewController.xib */,
  1268. );
  1269. path = "修改支付密码";
  1270. sourceTree = "<group>";
  1271. };
  1272. C45C66992B01EE9D005E13CE /* 业务员信息 */ = {
  1273. isa = PBXGroup;
  1274. children = (
  1275. C45C669A2B01EED5005E13CE /* SalesmanComplementVC.swift */,
  1276. C45C669B2B01EED5005E13CE /* SalesmanComplementVC.xib */,
  1277. C42AEDCF2B0312070045EF66 /* SalesmanFirstShowView.swift */,
  1278. C42AEE082B0374A30045EF66 /* SalesmanFirstShowView.xib */,
  1279. );
  1280. path = "业务员信息";
  1281. sourceTree = "<group>";
  1282. };
  1283. C45C8A202AD18DE6009D6C3A /* 日期区间 */ = {
  1284. isa = PBXGroup;
  1285. children = (
  1286. C40690EC2B07A2FE002688FD /* DayCollectionViewCell.h */,
  1287. C40690E82B07A2FE002688FD /* DayCollectionViewCell.m */,
  1288. C40690EF2B07A2FE002688FD /* MonthModel.h */,
  1289. C40690EA2B07A2FE002688FD /* MonthModel.m */,
  1290. C40690ED2B07A2FE002688FD /* MonthTableViewCell.h */,
  1291. C40690E92B07A2FE002688FD /* MonthTableViewCell.m */,
  1292. C45C8A142AD182ED009D6C3A /* timeManageSheetView.h */,
  1293. C45C8A152AD182ED009D6C3A /* timeManageSheetView.m */,
  1294. C45C8A1B2AD18D41009D6C3A /* timeManageSheetView.xib */,
  1295. );
  1296. path = "日期区间";
  1297. sourceTree = "<group>";
  1298. };
  1299. C45C8A212AD18E0B009D6C3A /* 购物车 */ = {
  1300. isa = PBXGroup;
  1301. children = (
  1302. C45C8A322AD24895009D6C3A /* 确认订单 */,
  1303. C470B58E2AF0A5B0009046B4 /* view */,
  1304. C470B5892AEFEF04009046B4 /* viewmodel */,
  1305. C470B5882AEFEEFF009046B4 /* model */,
  1306. C4EDDA4F2AF2969A00BE8EFF /* ShoppingCarDetailView.swift */,
  1307. C4EDDA512AF296A300BE8EFF /* ShoppingCarDetailView.xib */,
  1308. );
  1309. path = "购物车";
  1310. sourceTree = "<group>";
  1311. };
  1312. C45C8A322AD24895009D6C3A /* 确认订单 */ = {
  1313. isa = PBXGroup;
  1314. children = (
  1315. C4B082B12AF546A700CD146E /* view */,
  1316. C470B5A52AF0C719009046B4 /* CheckOrderViewController.swift */,
  1317. C470B5A62AF0C719009046B4 /* CheckOrderViewController.xib */,
  1318. );
  1319. path = "确认订单";
  1320. sourceTree = "<group>";
  1321. };
  1322. C46731502AF9F6BB00658C58 /* 设置 */ = {
  1323. isa = PBXGroup;
  1324. children = (
  1325. C46731592AFA0ED100658C58 /* 注销 */,
  1326. C46731512AF9F6E400658C58 /* PersonalInformationVC.swift */,
  1327. C42AEE162B03786A0045EF66 /* PersonalInformationVC.xib */,
  1328. );
  1329. path = "设置";
  1330. sourceTree = "<group>";
  1331. };
  1332. C46731592AFA0ED100658C58 /* 注销 */ = {
  1333. isa = PBXGroup;
  1334. children = (
  1335. C46731552AFA085500658C58 /* UnsubscribeViewController.swift */,
  1336. C42AEE1D2B037AED0045EF66 /* UnsubscribeViewController.xib */,
  1337. C467315A2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift */,
  1338. C46731602AFA13FF00658C58 /* UnsubscribeDetailVC.xib */,
  1339. );
  1340. path = "注销";
  1341. sourceTree = "<group>";
  1342. };
  1343. C470B5882AEFEEFF009046B4 /* model */ = {
  1344. isa = PBXGroup;
  1345. children = (
  1346. C470B58C2AEFF1E2009046B4 /* ShopCarModel.swift */,
  1347. );
  1348. path = model;
  1349. sourceTree = "<group>";
  1350. };
  1351. C470B5892AEFEF04009046B4 /* viewmodel */ = {
  1352. isa = PBXGroup;
  1353. children = (
  1354. C470B58A2AEFEF39009046B4 /* ShoppingCarViewModel.swift */,
  1355. );
  1356. path = viewmodel;
  1357. sourceTree = "<group>";
  1358. };
  1359. C470B58E2AF0A5B0009046B4 /* view */ = {
  1360. isa = PBXGroup;
  1361. children = (
  1362. C4CF5F582ACD509600B6B2D9 /* MenuTableViewCell.swift */,
  1363. C4CF5F592ACD509600B6B2D9 /* MenuTableViewCell.xib */,
  1364. C4CF5F5E2ACD640000B6B2D9 /* MenuHeadView.swift */,
  1365. C4CF5F602ACD640E00B6B2D9 /* MenuHeadView.xib */,
  1366. C4C51C812AF122A900F4636E /* EditorDeliveryView.swift */,
  1367. C4C51C832AF122B800F4636E /* EditorDeliveryView.xib */,
  1368. C4C51C852AF1413100F4636E /* EditPersonNumView.swift */,
  1369. C4C51C872AF1413B00F4636E /* EditPersonNumView.xib */,
  1370. C4C51C892AF1488E00F4636E /* ADHAlertView.swift */,
  1371. C4C51C8B2AF1489700F4636E /* ADHAlertView.xib */,
  1372. );
  1373. path = view;
  1374. sourceTree = "<group>";
  1375. };
  1376. C470B5A92AF0D896009046B4 /* 地址 */ = {
  1377. isa = PBXGroup;
  1378. children = (
  1379. C470B5B02AF0DC8C009046B4 /* view */,
  1380. C470B5AF2AF0DC86009046B4 /* viewModel */,
  1381. C470B5AE2AF0DC81009046B4 /* model */,
  1382. C470B5AA2AF0D8C8009046B4 /* AddressManagerVC.swift */,
  1383. C4C51C752AF0FF4100F4636E /* AddressManagerVC.xib */,
  1384. C4C51C6F2AF0EB0C00F4636E /* AddressEditorVC.swift */,
  1385. C4C51C7C2AF0FFBE00F4636E /* AddressEditorVC.xib */,
  1386. );
  1387. path = "地址";
  1388. sourceTree = "<group>";
  1389. };
  1390. C470B5AE2AF0DC81009046B4 /* model */ = {
  1391. isa = PBXGroup;
  1392. children = (
  1393. C4C51C6D2AF0E5A400F4636E /* AddresBaseModel.swift */,
  1394. );
  1395. path = model;
  1396. sourceTree = "<group>";
  1397. };
  1398. C470B5AF2AF0DC86009046B4 /* viewModel */ = {
  1399. isa = PBXGroup;
  1400. children = (
  1401. C4C51C6B2AF0E57E00F4636E /* AddresViewModel.swift */,
  1402. );
  1403. path = viewModel;
  1404. sourceTree = "<group>";
  1405. };
  1406. C470B5B02AF0DC8C009046B4 /* view */ = {
  1407. isa = PBXGroup;
  1408. children = (
  1409. C470B5B12AF0DCBA009046B4 /* AddresViewCell.swift */,
  1410. C42AEE0F2B0376F70045EF66 /* AddresViewCell.xib */,
  1411. );
  1412. path = view;
  1413. sourceTree = "<group>";
  1414. };
  1415. C48363A22AC3D96400E3FA1B = {
  1416. isa = PBXGroup;
  1417. children = (
  1418. C48363AD2AC3D96400E3FA1B /* ADHTuanCan */,
  1419. C48363C72AC3D96500E3FA1B /* ADHTuanCanTests */,
  1420. C48363D12AC3D96500E3FA1B /* ADHTuanCanUITests */,
  1421. C48363AC2AC3D96400E3FA1B /* Products */,
  1422. 0141F2528F4ED7ECFC47D713 /* Pods */,
  1423. 2DEE585807330C5CE73589E5 /* Frameworks */,
  1424. );
  1425. sourceTree = "<group>";
  1426. };
  1427. C48363AC2AC3D96400E3FA1B /* Products */ = {
  1428. isa = PBXGroup;
  1429. children = (
  1430. C48363AB2AC3D96400E3FA1B /* ADHTuanCan.app */,
  1431. C48363C42AC3D96500E3FA1B /* ADHTuanCanTests.xctest */,
  1432. C48363CE2AC3D96500E3FA1B /* ADHTuanCanUITests.xctest */,
  1433. );
  1434. name = Products;
  1435. sourceTree = "<group>";
  1436. };
  1437. C48363AD2AC3D96400E3FA1B /* ADHTuanCan */ = {
  1438. isa = PBXGroup;
  1439. children = (
  1440. C4836A262AC3F80E00E3FA1B /* Class */,
  1441. C48363AE2AC3D96400E3FA1B /* AppDelegate.swift */,
  1442. C48363B42AC3D96400E3FA1B /* Main.storyboard */,
  1443. C48363BA2AC3D96500E3FA1B /* Assets.xcassets */,
  1444. C48363BF2AC3D96500E3FA1B /* Info.plist */,
  1445. C454118D2B0130970096F60E /* sortedNameCH.plist */,
  1446. C454118C2B0130970096F60E /* sortedNameEN.plist */,
  1447. C48363B72AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld */,
  1448. );
  1449. path = ADHTuanCan;
  1450. sourceTree = "<group>";
  1451. };
  1452. C48363C72AC3D96500E3FA1B /* ADHTuanCanTests */ = {
  1453. isa = PBXGroup;
  1454. children = (
  1455. C48363C82AC3D96500E3FA1B /* ADHTuanCanTests.swift */,
  1456. );
  1457. path = ADHTuanCanTests;
  1458. sourceTree = "<group>";
  1459. };
  1460. C48363D12AC3D96500E3FA1B /* ADHTuanCanUITests */ = {
  1461. isa = PBXGroup;
  1462. children = (
  1463. C48363D22AC3D96500E3FA1B /* ADHTuanCanUITests.swift */,
  1464. C48363D42AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift */,
  1465. );
  1466. path = ADHTuanCanUITests;
  1467. sourceTree = "<group>";
  1468. };
  1469. C48368612AC3EF6700E3FA1B /* Config */ = {
  1470. isa = PBXGroup;
  1471. children = (
  1472. C4836A242AC3F6D500E3FA1B /* ADHcolor.swift */,
  1473. C4836A272AC3FBD900E3FA1B /* MacroDefinition.swift */,
  1474. C45DC11F2AE90D230066BD93 /* LanguagesUtil.swift */,
  1475. C4836A472AC41C1100E3FA1B /* Localizable.strings */,
  1476. C4CF5F3D2ACD3B8000B6B2D9 /* UserDefaultUtil.swift */,
  1477. C4EDD9752AF2813B00BE8EFF /* ACMacros.h */,
  1478. C48368622AC3F00500E3FA1B /* ADHTuanCan-Bridging-Header.h */,
  1479. C4836AD32AC52D6300E3FA1B /* ADHTuanCan-Bridging-Header.h */,
  1480. );
  1481. path = Config;
  1482. sourceTree = "<group>";
  1483. };
  1484. C48369EF2AC3F38400E3FA1B /* VC */ = {
  1485. isa = PBXGroup;
  1486. children = (
  1487. C4EDD9762AF2849300BE8EFF /* 空数据 */,
  1488. C4EDD90E2AF27C4800BE8EFF /* 导航栏 */,
  1489. C4EDD90B2AF2614E00BE8EFF /* NavController */,
  1490. C4836B812AC7F74D00E3FA1B /* TabBar */,
  1491. C4836B862AC8039500E3FA1B /* ADHBaseVC.swift */,
  1492. );
  1493. path = VC;
  1494. sourceTree = "<group>";
  1495. };
  1496. C4836A232AC3F57F00E3FA1B /* Category */ = {
  1497. isa = PBXGroup;
  1498. children = (
  1499. C42AEDD32B035A9D0045EF66 /* 日期选择 */,
  1500. C4C9B85A2AF3C5ED00C13A61 /* 圆角 */,
  1501. C4EDDA222AF28BAC00BE8EFF /* Aspect */,
  1502. C4EDDA112AF28B7400BE8EFF /* UITableViewCell */,
  1503. C4EDD9E92AF28B0D00BE8EFF /* UITableView */,
  1504. C4EDD9222AF27DDC00BE8EFF /* UIView */,
  1505. C4EDD91B2AF27CD400BE8EFF /* UIFont */,
  1506. C4577CE82AEBCEE9004D9439 /* NSObject */,
  1507. C42BB55E2ADD5045003FF663 /* Proxy多重代理 */,
  1508. C4CF5F0B2AC9801300B6B2D9 /* Hud */,
  1509. C4836A742AC517AA00E3FA1B /* Model */,
  1510. C4836A642AC516FC00E3FA1B /* HTTP */,
  1511. C48369EF2AC3F38400E3FA1B /* VC */,
  1512. );
  1513. path = Category;
  1514. sourceTree = "<group>";
  1515. };
  1516. C4836A262AC3F80E00E3FA1B /* Class */ = {
  1517. isa = PBXGroup;
  1518. children = (
  1519. C4836AA12AC51BDC00E3FA1B /* Libs */,
  1520. C4836A232AC3F57F00E3FA1B /* Category */,
  1521. C48368612AC3EF6700E3FA1B /* Config */,
  1522. C4836A292AC3FCFA00E3FA1B /* 登录 */,
  1523. C40690E72B07A2FE002688FD /* 仿酒店入住 */,
  1524. C4836B2C2AC56AFE00E3FA1B /* 首页 */,
  1525. C4577CA52AEA77F9004D9439 /* 餐品详情 */,
  1526. C45C8A212AD18E0B009D6C3A /* 购物车 */,
  1527. C4C6D8472AFCD1E000E1AFB5 /* 支付类 */,
  1528. C4CF5F512ACD4BD100B6B2D9 /* 订单 */,
  1529. C4BFF7992AFD129500CCA462 /* 评价 */,
  1530. C4CF5F152ACA81A400B6B2D9 /* 我的 */,
  1531. C470B5A92AF0D896009046B4 /* 地址 */,
  1532. );
  1533. path = Class;
  1534. sourceTree = "<group>";
  1535. };
  1536. C4836A292AC3FCFA00E3FA1B /* 登录 */ = {
  1537. isa = PBXGroup;
  1538. children = (
  1539. C45411902B0130C40096F60E /* EWCountryCodeViewController.swift */,
  1540. C45411872B012C960096F60E /* 手机快捷登录 */,
  1541. C42BB5732ADD6F04003FF663 /* viewModel */,
  1542. C42BB56E2ADD6931003FF663 /* model */,
  1543. C42BB5592ADD4C3C003FF663 /* 验证码 */,
  1544. C42BB5522ADD4551003FF663 /* 注册 */,
  1545. C45C66942B01E2B9005E13CE /* 修改支付密码 */,
  1546. C45C668F2B01CEB5005E13CE /* 修改登录密码 */,
  1547. C4836B2B2AC56AF700E3FA1B /* 启动页 */,
  1548. C4836AC72AC51FBB00E3FA1B /* TCLogingViewController.swift */,
  1549. C40691142B08B7E5002688FD /* TCLogingViewController.xib */,
  1550. );
  1551. path = "登录";
  1552. sourceTree = "<group>";
  1553. };
  1554. C4836A642AC516FC00E3FA1B /* HTTP */ = {
  1555. isa = PBXGroup;
  1556. children = (
  1557. C4BFF79A2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift */,
  1558. C4836A682AC516FC00E3FA1B /* MCResponseModel.swift */,
  1559. C4836A692AC516FC00E3FA1B /* MCHttpUtil.swift */,
  1560. C4836A6C2AC516FC00E3FA1B /* MCHttpRxExtension.swift */,
  1561. C4BFF7F62AFD2D3500CCA462 /* Http+UploadImage.swift */,
  1562. );
  1563. path = HTTP;
  1564. sourceTree = "<group>";
  1565. };
  1566. C4836A742AC517AA00E3FA1B /* Model */ = {
  1567. isa = PBXGroup;
  1568. children = (
  1569. C4836A752AC517AA00E3FA1B /* MCBaseModel.swift */,
  1570. C4836A762AC517AA00E3FA1B /* MCBaseRequestModel.swift */,
  1571. C4836A772AC517AA00E3FA1B /* MCBaseViewModel.swift */,
  1572. );
  1573. path = Model;
  1574. sourceTree = "<group>";
  1575. };
  1576. C4836A7B2AC5180A00E3FA1B /* OtherClassUtil */ = {
  1577. isa = PBXGroup;
  1578. children = (
  1579. C4836B032AC5581F00E3FA1B /* UIKit */,
  1580. );
  1581. path = OtherClassUtil;
  1582. sourceTree = "<group>";
  1583. };
  1584. C4836AA12AC51BDC00E3FA1B /* Libs */ = {
  1585. isa = PBXGroup;
  1586. children = (
  1587. C4EDD9A62AF2879100BE8EFF /* MJRefresh */,
  1588. C4CF5F0E2AC9813B00B6B2D9 /* MBProgressHUD */,
  1589. C4836B402AC57AA400E3FA1B /* UIView+Visualization.h */,
  1590. C4836B3F2AC57AA400E3FA1B /* UIView+Visualization.m */,
  1591. C4836A7B2AC5180A00E3FA1B /* OtherClassUtil */,
  1592. );
  1593. path = Libs;
  1594. sourceTree = "<group>";
  1595. };
  1596. C4836B032AC5581F00E3FA1B /* UIKit */ = {
  1597. isa = PBXGroup;
  1598. children = (
  1599. C45DC1212AE91AB70066BD93 /* ImageView.swift */,
  1600. C4CF5F5C2ACD632600B6B2D9 /* TableViewUtil.swift */,
  1601. C4836B572AC5912300E3FA1B /* NibUtil.swift */,
  1602. C4836B552AC5910E00E3FA1B /* CollectionViewUtil.swift */,
  1603. C4836B162AC5597B00E3FA1B /* ButtonUtil.swift */,
  1604. C4836A7C2AC5180A00E3FA1B /* NotificationUtil.swift */,
  1605. C4836A7D2AC5180A00E3FA1B /* Convert.swift */,
  1606. C4836A7E2AC5180A00E3FA1B /* OptionalUtil.swift */,
  1607. C4836A802AC5180A00E3FA1B /* OtherGeneralMethod.swift */,
  1608. C4836A812AC5180A00E3FA1B /* ArrayUtil.swift */,
  1609. C4836A822AC5180A00E3FA1B /* GCDUtil.swift */,
  1610. C4836A842AC5180A00E3FA1B /* StringUtil.swift */,
  1611. C448CD112AFE4FA900B3B068 /* textView.swift */,
  1612. );
  1613. path = UIKit;
  1614. sourceTree = "<group>";
  1615. };
  1616. C4836B2B2AC56AF700E3FA1B /* 启动页 */ = {
  1617. isa = PBXGroup;
  1618. children = (
  1619. C4CF5F432ACD434E00B6B2D9 /* view */,
  1620. C4CF5F412ACD3EDA00B6B2D9 /* StartupPageViewController.swift */,
  1621. );
  1622. path = "启动页";
  1623. sourceTree = "<group>";
  1624. };
  1625. C4836B2C2AC56AFE00E3FA1B /* 首页 */ = {
  1626. isa = PBXGroup;
  1627. children = (
  1628. C45C66992B01EE9D005E13CE /* 业务员信息 */,
  1629. C45411822B00E35D0096F60E /* 普团首页 */,
  1630. C4CF5F062AC97D7C00B6B2D9 /* model */,
  1631. C4CF5F032AC97D2300B6B2D9 /* viewModel */,
  1632. C4836B492AC58B8400E3FA1B /* view */,
  1633. C4836B3B2AC5784900E3FA1B /* HomeViewController.swift */,
  1634. C42AEDEA2B03727E0045EF66 /* HomeViewController.xib */,
  1635. );
  1636. path = "首页";
  1637. sourceTree = "<group>";
  1638. };
  1639. C4836B492AC58B8400E3FA1B /* view */ = {
  1640. isa = PBXGroup;
  1641. children = (
  1642. C4836B4A2AC58BE200E3FA1B /* HomeFoodItem.swift */,
  1643. C42AEDFA2B03731E0045EF66 /* HomeFoodItem.xib */,
  1644. C4836C2E2AC89C0000E3FA1B /* 搜索 */,
  1645. C4836C292AC87B0400E3FA1B /* 首页推荐分类 */,
  1646. C4836B6A2AC726C100E3FA1B /* 大家都爱点 */,
  1647. C4836B692AC726AF00E3FA1B /* 预定期间 */,
  1648. );
  1649. path = view;
  1650. sourceTree = "<group>";
  1651. };
  1652. C4836B692AC726AF00E3FA1B /* 预定期间 */ = {
  1653. isa = PBXGroup;
  1654. children = (
  1655. C45C8A202AD18DE6009D6C3A /* 日期区间 */,
  1656. C4836B592AC6ED0600E3FA1B /* HomeDateView.swift */,
  1657. C4836B7C2AC7308400E3FA1B /* HomeDateView.xib */,
  1658. C4836B612AC7035D00E3FA1B /* dateItem.swift */,
  1659. C4836B652AC7037600E3FA1B /* dateItem.xib */,
  1660. );
  1661. path = "预定期间";
  1662. sourceTree = "<group>";
  1663. };
  1664. C4836B6A2AC726C100E3FA1B /* 大家都爱点 */ = {
  1665. isa = PBXGroup;
  1666. children = (
  1667. C4836B6B2AC7271800E3FA1B /* EverybodyLoveView.swift */,
  1668. C4836B712AC72B0F00E3FA1B /* EverybodyLoveView.xib */,
  1669. C4836B762AC72C0900E3FA1B /* EverybodyLoveItem.swift */,
  1670. C42AEE012B03737D0045EF66 /* EverybodyLoveItem.xib */,
  1671. );
  1672. path = "大家都爱点";
  1673. sourceTree = "<group>";
  1674. };
  1675. C4836B812AC7F74D00E3FA1B /* TabBar */ = {
  1676. isa = PBXGroup;
  1677. children = (
  1678. C4836B842AC7F79600E3FA1B /* BaseTabbarController.swift */,
  1679. );
  1680. path = TabBar;
  1681. sourceTree = "<group>";
  1682. };
  1683. C4836C292AC87B0400E3FA1B /* 首页推荐分类 */ = {
  1684. isa = PBXGroup;
  1685. children = (
  1686. C4836C2A2AC87B5F00E3FA1B /* HomeRecommendView.swift */,
  1687. C4836C2C2AC87B6900E3FA1B /* HomeRecommendView.xib */,
  1688. );
  1689. path = "首页推荐分类";
  1690. sourceTree = "<group>";
  1691. };
  1692. C4836C2E2AC89C0000E3FA1B /* 搜索 */ = {
  1693. isa = PBXGroup;
  1694. children = (
  1695. C4836C2F2AC89C1800E3FA1B /* SearchView.swift */,
  1696. C4836C352AC8A26A00E3FA1B /* SearchView.xib */,
  1697. );
  1698. path = "搜索";
  1699. sourceTree = "<group>";
  1700. };
  1701. C4B082B12AF546A700CD146E /* view */ = {
  1702. isa = PBXGroup;
  1703. children = (
  1704. C40690DB2B0714EE002688FD /* CheckOrderFootView.swift */,
  1705. C40690DA2B0714EE002688FD /* CheckOrderFootView.xib */,
  1706. C470B59A2AF0BDB5009046B4 /* CheckOrderHeadView.swift */,
  1707. C4B082BA2AF54CA500CD146E /* CheckOrderHeadView.xib */,
  1708. C44301F82AF5DEBA0098C854 /* OrderAddressCell.swift */,
  1709. C44301FE2AF5E1860098C854 /* OrderAddressCell.xib */,
  1710. C450016D2AD67CF000F96CFA /* OrderReadyCell.swift */,
  1711. C450016E2AD67CF000F96CFA /* OrderReadyCell.xib */,
  1712. C44301F42AF5DC830098C854 /* selectAddressView.swift */,
  1713. C44302172AF5F5370098C854 /* selectAddressView.xib */,
  1714. );
  1715. path = view;
  1716. sourceTree = "<group>";
  1717. };
  1718. C4BFF7992AFD129500CCA462 /* 评价 */ = {
  1719. isa = PBXGroup;
  1720. children = (
  1721. C448CCFB2AFE3B1C00B3B068 /* view */,
  1722. C448CCFA2AFE3B1600B3B068 /* viewModel */,
  1723. C448CCF92AFE3B1200B3B068 /* model */,
  1724. C448CCF52AFE37CE00B3B068 /* AddEvaluateViewController.swift */,
  1725. C448CD0D2AFE4E8700B3B068 /* AddEvaluateViewController.xib */,
  1726. C41DA49C2AFEF9D500707C5D /* MealEvaluateListVC.swift */,
  1727. C41DA49D2AFEF9D500707C5D /* MealEvaluateListVC.xib */,
  1728. );
  1729. path = "评价";
  1730. sourceTree = "<group>";
  1731. };
  1732. C4C6D8422AFCCB2400E1AFB5 /* 余额 */ = {
  1733. isa = PBXGroup;
  1734. children = (
  1735. C45411722B00DB620096F60E /* view */,
  1736. C4C6D8432AFCCB3900E1AFB5 /* BalanceViewController.swift */,
  1737. C4C6D8442AFCCB3900E1AFB5 /* BalanceViewController.xib */,
  1738. C42AEE292B04D9CA0045EF66 /* RechargeAmountViewController.swift */,
  1739. C42AEE2A2B04D9CA0045EF66 /* RechargeAmountViewController.xib */,
  1740. );
  1741. path = "余额";
  1742. sourceTree = "<group>";
  1743. };
  1744. C4C6D8472AFCD1E000E1AFB5 /* 支付类 */ = {
  1745. isa = PBXGroup;
  1746. children = (
  1747. C44302202AF6043B0098C854 /* PayMentSelectView.swift */,
  1748. C44302262AF6073A0098C854 /* PayMentSelectView.xib */,
  1749. C443022D2AF615780098C854 /* UserPayMentSheet.swift */,
  1750. C443023C2AF61A2A0098C854 /* UserPayMentSheet.xib */,
  1751. C44CFA482AFB3247000D592D /* payMentItemCell.swift */,
  1752. C44CFA492AFB3247000D592D /* payMentItemCell.xib */,
  1753. C4C6D8482AFCD21F00E1AFB5 /* PswPayView.swift */,
  1754. C4C6D84A2AFCD22800E1AFB5 /* PswPayView.xib */,
  1755. );
  1756. path = "支付类";
  1757. sourceTree = "<group>";
  1758. };
  1759. C4C9B85A2AF3C5ED00C13A61 /* 圆角 */ = {
  1760. isa = PBXGroup;
  1761. children = (
  1762. C4C9B85B2AF3C5FE00C13A61 /* YDRectCorner.swift */,
  1763. C4C9B8642AF3C7F900C13A61 /* UIView+rounded.swift */,
  1764. C40690F42B07AAF9002688FD /* RectCornerUtil.swift */,
  1765. );
  1766. path = "圆角";
  1767. sourceTree = "<group>";
  1768. };
  1769. C4CF5F032AC97D2300B6B2D9 /* viewModel */ = {
  1770. isa = PBXGroup;
  1771. children = (
  1772. C4CF5F042AC97D6800B6B2D9 /* HomeViewModel.swift */,
  1773. );
  1774. path = viewModel;
  1775. sourceTree = "<group>";
  1776. };
  1777. C4CF5F062AC97D7C00B6B2D9 /* model */ = {
  1778. isa = PBXGroup;
  1779. children = (
  1780. C4CF5F082AC97DB500B6B2D9 /* TCHomeGetDataModel.swift */,
  1781. );
  1782. path = model;
  1783. sourceTree = "<group>";
  1784. };
  1785. C4CF5F0B2AC9801300B6B2D9 /* Hud */ = {
  1786. isa = PBXGroup;
  1787. children = (
  1788. C4CF5F0C2AC9801300B6B2D9 /* MCHud.swift */,
  1789. );
  1790. path = Hud;
  1791. sourceTree = "<group>";
  1792. };
  1793. C4CF5F0E2AC9813B00B6B2D9 /* MBProgressHUD */ = {
  1794. isa = PBXGroup;
  1795. children = (
  1796. C4CF5F0F2AC9813B00B6B2D9 /* UIViewController+HUB.h */,
  1797. C4CF5F122AC9813B00B6B2D9 /* UIViewController+HUB.m */,
  1798. C4CF5F112AC9813B00B6B2D9 /* MBProgressHUD.h */,
  1799. C4CF5F102AC9813B00B6B2D9 /* MBProgressHUD.m */,
  1800. );
  1801. path = MBProgressHUD;
  1802. sourceTree = "<group>";
  1803. };
  1804. C4CF5F152ACA81A400B6B2D9 /* 我的 */ = {
  1805. isa = PBXGroup;
  1806. children = (
  1807. C41DA4E62AFFD2B400707C5D /* 规则说明 */,
  1808. C41DA4A42AFF172B00707C5D /* 积分 */,
  1809. C4C6D8422AFCCB2400E1AFB5 /* 余额 */,
  1810. C41DA4CC2AFF44DF00707C5D /* 优惠卷 */,
  1811. C44CFA5E2AFB5C8E000D592D /* model */,
  1812. C44CFA5D2AFB5C87000D592D /* viewModel */,
  1813. C44CFA5C2AFB5C82000D592D /* view */,
  1814. C46731502AF9F6BB00658C58 /* 设置 */,
  1815. C45E1EC42AF9DC91005C9210 /* MyViewController.swift */,
  1816. C45E1ECA2AF9E412005C9210 /* MyViewController.xib */,
  1817. );
  1818. path = "我的";
  1819. sourceTree = "<group>";
  1820. };
  1821. C4CF5F432ACD434E00B6B2D9 /* view */ = {
  1822. isa = PBXGroup;
  1823. children = (
  1824. C4CF5F442ACD436600B6B2D9 /* StartView.swift */,
  1825. C4CF5F4C2ACD468000B6B2D9 /* StartView.xib */,
  1826. );
  1827. path = view;
  1828. sourceTree = "<group>";
  1829. };
  1830. C4CF5F512ACD4BD100B6B2D9 /* 订单 */ = {
  1831. isa = PBXGroup;
  1832. children = (
  1833. C438E3C72AF795A700F671AE /* OrderTypeEnum.swift */,
  1834. C45001672AD677DB00F96CFA /* 订单详情 */,
  1835. C443021D2AF5FA010098C854 /* viewModel */,
  1836. C443021C2AF5F9FB0098C854 /* model */,
  1837. C45001682AD677FC00F96CFA /* view */,
  1838. C4CF5F562ACD502200B6B2D9 /* 已选菜品 */,
  1839. C45C8A272AD240B9009D6C3A /* OrderManagerVC.swift */,
  1840. C438E3D62AF7E80300F671AE /* OrderManagerVC.xib */,
  1841. );
  1842. path = "订单";
  1843. sourceTree = "<group>";
  1844. };
  1845. C4CF5F562ACD502200B6B2D9 /* 已选菜品 */ = {
  1846. isa = PBXGroup;
  1847. children = (
  1848. );
  1849. path = "已选菜品";
  1850. sourceTree = "<group>";
  1851. };
  1852. C4EDD90B2AF2614E00BE8EFF /* NavController */ = {
  1853. isa = PBXGroup;
  1854. children = (
  1855. C4EDD90C2AF2618A00BE8EFF /* ADHBaseNavigationController.swift */,
  1856. );
  1857. path = NavController;
  1858. sourceTree = "<group>";
  1859. };
  1860. C4EDD90E2AF27C4800BE8EFF /* 导航栏 */ = {
  1861. isa = PBXGroup;
  1862. children = (
  1863. C4EDD90F2AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift */,
  1864. C4EDD9102AF27C4800BE8EFF /* MCNavBarDelegate.swift */,
  1865. C4EDD9112AF27C4800BE8EFF /* MCNavBarView.swift */,
  1866. C4EDD9122AF27C4800BE8EFF /* MCNavBarSearchView.swift */,
  1867. C4EDD9132AF27C4800BE8EFF /* MCNavBarSegmentView.swift */,
  1868. C4EDD9142AF27C4800BE8EFF /* MCNavBarCustomView.swift */,
  1869. );
  1870. path = "导航栏";
  1871. sourceTree = "<group>";
  1872. };
  1873. C4EDD91B2AF27CD400BE8EFF /* UIFont */ = {
  1874. isa = PBXGroup;
  1875. children = (
  1876. C4EDD91C2AF27CD400BE8EFF /* UIFont+Fonts.h */,
  1877. C4EDD91F2AF27CD400BE8EFF /* UIFont+Fonts.m */,
  1878. );
  1879. path = UIFont;
  1880. sourceTree = "<group>";
  1881. };
  1882. C4EDD9222AF27DDC00BE8EFF /* UIView */ = {
  1883. isa = PBXGroup;
  1884. children = (
  1885. C4EDD9682AF27EF400BE8EFF /* View */,
  1886. C4EDD9232AF27DDC00BE8EFF /* UIView+Segment.m */,
  1887. C4EDD9242AF27DDC00BE8EFF /* UIView+XIB.m */,
  1888. C4EDD9252AF27DDC00BE8EFF /* UIView+Nib.m */,
  1889. C4EDD9262AF27DDC00BE8EFF /* UIView+XMGExtension.h */,
  1890. C4EDD9272AF27DDC00BE8EFF /* UIView+Shake.h */,
  1891. C4EDD9282AF27DDC00BE8EFF /* UIView+GestureCallback.m */,
  1892. C4EDD9292AF27DDC00BE8EFF /* UIView+GlowView.h */,
  1893. C4EDD92A2AF27DDC00BE8EFF /* UIView+Blur.h */,
  1894. C4EDD92B2AF27DDC00BE8EFF /* UIView+ViewController.m */,
  1895. C4EDD92C2AF27DDC00BE8EFF /* UIView+Hint.h */,
  1896. C4EDD92D2AF27DDC00BE8EFF /* UIView+AnimationProperty.h */,
  1897. C4EDD92E2AF27DDC00BE8EFF /* UIView+Find.h */,
  1898. C4EDD92F2AF27DDC00BE8EFF /* succeed.png */,
  1899. C4EDD9302AF27DDC00BE8EFF /* UIView+JYPBadgeView.h */,
  1900. C4EDD9312AF27DDC00BE8EFF /* UIView+MAC.m */,
  1901. C4EDD9322AF27DDC00BE8EFF /* UIView+BlockGesture.m */,
  1902. C4EDD9332AF27DDC00BE8EFF /* UIView+Visualization.m */,
  1903. C4EDD9352AF27DDC00BE8EFF /* UIView+Screenshot.h */,
  1904. C4EDD9362AF27DDC00BE8EFF /* UIViewHeader.h */,
  1905. C4EDD9372AF27DDC00BE8EFF /* UIView+RecursiveDescription.h */,
  1906. C4EDD9382AF27DDC00BE8EFF /* EAFeatureGuideView */,
  1907. C4EDD93D2AF27DDC00BE8EFF /* UIView+Shake.m */,
  1908. C4EDD93E2AF27DDC00BE8EFF /* UIView+XMGExtension.m */,
  1909. C4EDD93F2AF27DDC00BE8EFF /* UIView+Nib.h */,
  1910. C4EDD9402AF27DDC00BE8EFF /* UIView+XIB.h */,
  1911. C4EDD9412AF27DDC00BE8EFF /* error.png */,
  1912. C4EDD9422AF27DDC00BE8EFF /* UIView+Segment.h */,
  1913. C4EDD9432AF27DDC00BE8EFF /* UIView+AnimationProperty.m */,
  1914. C4EDD9442AF27DDC00BE8EFF /* UIView+Hint.m */,
  1915. C4EDD9452AF27DDC00BE8EFF /* UIView+ViewController.h */,
  1916. C4EDD9462AF27DDC00BE8EFF /* UIView+Blur.m */,
  1917. C4EDD9472AF27DDC00BE8EFF /* UIView+GlowView.m */,
  1918. C4EDD9482AF27DDC00BE8EFF /* UIView+GestureCallback.h */,
  1919. C4EDD9492AF27DDC00BE8EFF /* UIView+MAC.h */,
  1920. C4EDD94A2AF27DDC00BE8EFF /* UIView+BlockGesture.h */,
  1921. C4EDD94B2AF27DDC00BE8EFF /* UIView+Visualization.h */,
  1922. C4EDD94C2AF27DDC00BE8EFF /* UIView+JYPBadgeView.m */,
  1923. C4EDD94D2AF27DDC00BE8EFF /* UIView+Find.m */,
  1924. C4EDD94E2AF27DDC00BE8EFF /* UIView+RecursiveDescription.m */,
  1925. C4EDD9502AF27DDC00BE8EFF /* UIView+Screenshot.m */,
  1926. );
  1927. path = UIView;
  1928. sourceTree = "<group>";
  1929. };
  1930. C4EDD9382AF27DDC00BE8EFF /* EAFeatureGuideView */ = {
  1931. isa = PBXGroup;
  1932. children = (
  1933. C4EDD9392AF27DDC00BE8EFF /* EAFeatureItem.m */,
  1934. C4EDD93A2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.h */,
  1935. C4EDD93B2AF27DDC00BE8EFF /* EAFeatureItem.h */,
  1936. C4EDD93C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m */,
  1937. );
  1938. path = EAFeatureGuideView;
  1939. sourceTree = "<group>";
  1940. };
  1941. C4EDD9682AF27EF400BE8EFF /* View */ = {
  1942. isa = PBXGroup;
  1943. children = (
  1944. C4EDD96B2AF27EF400BE8EFF /* Cell */,
  1945. C4EDD96F2AF27EF400BE8EFF /* QFTSearchBar.h */,
  1946. C4EDD96A2AF27EF400BE8EFF /* QFTSearchBar.m */,
  1947. C4EDD9692AF27EF400BE8EFF /* QFTSearchContentView.h */,
  1948. C4EDD9702AF27EF400BE8EFF /* QFTSearchContentView.m */,
  1949. );
  1950. path = View;
  1951. sourceTree = "<group>";
  1952. };
  1953. C4EDD96B2AF27EF400BE8EFF /* Cell */ = {
  1954. isa = PBXGroup;
  1955. children = (
  1956. C4EDD96C2AF27EF400BE8EFF /* QFTMoreSearchCell.m */,
  1957. C4EDD96D2AF27EF400BE8EFF /* QFTMoreSearchCell.xib */,
  1958. C4EDD96E2AF27EF400BE8EFF /* QFTMoreSearchCell.h */,
  1959. );
  1960. path = Cell;
  1961. sourceTree = "<group>";
  1962. };
  1963. C4EDD9762AF2849300BE8EFF /* 空数据 */ = {
  1964. isa = PBXGroup;
  1965. children = (
  1966. C4EDD9782AF2849300BE8EFF /* MCDZNEmptyDelegate.swift */,
  1967. C4EDD97B2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift */,
  1968. );
  1969. path = "空数据";
  1970. sourceTree = "<group>";
  1971. };
  1972. C4EDD9A62AF2879100BE8EFF /* MJRefresh */ = {
  1973. isa = PBXGroup;
  1974. children = (
  1975. C4EDD9A72AF2879100BE8EFF /* UIScrollView+MJRefresh.m */,
  1976. C4EDD9A82AF2879100BE8EFF /* MJRefreshConst.m */,
  1977. C4EDD9A92AF2879100BE8EFF /* UIScrollView+MJExtension.h */,
  1978. C4EDD9AA2AF2879100BE8EFF /* MJRefresh.h */,
  1979. C4EDD9AB2AF2879100BE8EFF /* NSBundle+MJRefresh.h */,
  1980. C4EDD9AC2AF2879100BE8EFF /* MJRefresh.bundle */,
  1981. C4EDD9AD2AF2879100BE8EFF /* UIView+MJExtension.h */,
  1982. C4EDD9AE2AF2879100BE8EFF /* UIScrollView+MJExtension.m */,
  1983. C4EDD9AF2AF2879100BE8EFF /* MJRefreshConst.h */,
  1984. C4EDD9B02AF2879100BE8EFF /* UIScrollView+MJRefresh.h */,
  1985. C4EDD9B12AF2879100BE8EFF /* NSBundle+MJRefresh.m */,
  1986. C4EDD9B22AF2879100BE8EFF /* UIView+MJExtension.m */,
  1987. C4EDD9B32AF2879100BE8EFF /* Custom */,
  1988. C4EDD9CA2AF2879100BE8EFF /* Base */,
  1989. );
  1990. path = MJRefresh;
  1991. sourceTree = "<group>";
  1992. };
  1993. C4EDD9B32AF2879100BE8EFF /* Custom */ = {
  1994. isa = PBXGroup;
  1995. children = (
  1996. C4EDD9B42AF2879100BE8EFF /* Footer */,
  1997. C4EDD9C32AF2879100BE8EFF /* Header */,
  1998. );
  1999. path = Custom;
  2000. sourceTree = "<group>";
  2001. };
  2002. C4EDD9B42AF2879100BE8EFF /* Footer */ = {
  2003. isa = PBXGroup;
  2004. children = (
  2005. C4EDD9B52AF2879100BE8EFF /* Back */,
  2006. C4EDD9BC2AF2879100BE8EFF /* Auto */,
  2007. );
  2008. path = Footer;
  2009. sourceTree = "<group>";
  2010. };
  2011. C4EDD9B52AF2879100BE8EFF /* Back */ = {
  2012. isa = PBXGroup;
  2013. children = (
  2014. C4EDD9B62AF2879100BE8EFF /* MJRefreshBackGifFooter.h */,
  2015. C4EDD9B72AF2879100BE8EFF /* MJRefreshBackStateFooter.h */,
  2016. C4EDD9B82AF2879100BE8EFF /* MJRefreshBackNormalFooter.h */,
  2017. C4EDD9B92AF2879100BE8EFF /* MJRefreshBackGifFooter.m */,
  2018. C4EDD9BA2AF2879100BE8EFF /* MJRefreshBackStateFooter.m */,
  2019. C4EDD9BB2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m */,
  2020. );
  2021. path = Back;
  2022. sourceTree = "<group>";
  2023. };
  2024. C4EDD9BC2AF2879100BE8EFF /* Auto */ = {
  2025. isa = PBXGroup;
  2026. children = (
  2027. C4EDD9BD2AF2879100BE8EFF /* MJRefreshAutoStateFooter.h */,
  2028. C4EDD9BE2AF2879100BE8EFF /* MJRefreshAutoNormalFooter.h */,
  2029. C4EDD9BF2AF2879100BE8EFF /* MJRefreshAutoGifFooter.h */,
  2030. C4EDD9C02AF2879100BE8EFF /* MJRefreshAutoStateFooter.m */,
  2031. C4EDD9C12AF2879100BE8EFF /* MJRefreshAutoGifFooter.m */,
  2032. C4EDD9C22AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m */,
  2033. );
  2034. path = Auto;
  2035. sourceTree = "<group>";
  2036. };
  2037. C4EDD9C32AF2879100BE8EFF /* Header */ = {
  2038. isa = PBXGroup;
  2039. children = (
  2040. C4EDD9C42AF2879100BE8EFF /* MJRefreshNormalHeader.m */,
  2041. C4EDD9C52AF2879100BE8EFF /* MJRefreshStateHeader.h */,
  2042. C4EDD9C62AF2879100BE8EFF /* MJRefreshGifHeader.h */,
  2043. C4EDD9C72AF2879100BE8EFF /* MJRefreshNormalHeader.h */,
  2044. C4EDD9C82AF2879100BE8EFF /* MJRefreshStateHeader.m */,
  2045. C4EDD9C92AF2879100BE8EFF /* MJRefreshGifHeader.m */,
  2046. );
  2047. path = Header;
  2048. sourceTree = "<group>";
  2049. };
  2050. C4EDD9CA2AF2879100BE8EFF /* Base */ = {
  2051. isa = PBXGroup;
  2052. children = (
  2053. C4EDD9CB2AF2879100BE8EFF /* MJRefreshFooter.m */,
  2054. C4EDD9CC2AF2879100BE8EFF /* MJRefreshComponent.h */,
  2055. C4EDD9CD2AF2879100BE8EFF /* MJRefreshHeader.m */,
  2056. C4EDD9CE2AF2879100BE8EFF /* MJRefreshAutoFooter.h */,
  2057. C4EDD9CF2AF2879100BE8EFF /* MJRefreshBackFooter.m */,
  2058. C4EDD9D02AF2879100BE8EFF /* MJRefreshAutoFooter.m */,
  2059. C4EDD9D12AF2879100BE8EFF /* MJRefreshHeader.h */,
  2060. C4EDD9D22AF2879100BE8EFF /* MJRefreshComponent.m */,
  2061. C4EDD9D32AF2879100BE8EFF /* MJRefreshFooter.h */,
  2062. C4EDD9D42AF2879100BE8EFF /* MJRefreshBackFooter.h */,
  2063. );
  2064. path = Base;
  2065. sourceTree = "<group>";
  2066. };
  2067. C4EDD9E92AF28B0D00BE8EFF /* UITableView */ = {
  2068. isa = PBXGroup;
  2069. children = (
  2070. C4EDD9EA2AF28B0D00BE8EFF /* UITableView+CellClass.m */,
  2071. C4EDD9EB2AF28B0D00BE8EFF /* MACTableView.m */,
  2072. C4EDD9EC2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.h */,
  2073. C4EDD9ED2AF28B0D00BE8EFF /* UITableViewHeader.h */,
  2074. C4EDD9EE2AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m */,
  2075. C4EDD9EF2AF28B0D00BE8EFF /* MACTableView.h */,
  2076. C4EDD9F02AF28B0D00BE8EFF /* UITableView+CellClass.h */,
  2077. C4EDD9F12AF28B0D00BE8EFF /* DZNEmptyDataSet */,
  2078. C4EDD9F92AF28B0D00BE8EFF /* MACRefresh(刷新) */,
  2079. );
  2080. path = UITableView;
  2081. sourceTree = "<group>";
  2082. };
  2083. C4EDD9F12AF28B0D00BE8EFF /* DZNEmptyDataSet */ = {
  2084. isa = PBXGroup;
  2085. children = (
  2086. C4EDD9F22AF28B0D00BE8EFF /* DZEmptyDataCustomView */,
  2087. C4EDD9F72AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m */,
  2088. C4EDD9F82AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.h */,
  2089. );
  2090. path = DZNEmptyDataSet;
  2091. sourceTree = "<group>";
  2092. };
  2093. C4EDD9F22AF28B0D00BE8EFF /* DZEmptyDataCustomView */ = {
  2094. isa = PBXGroup;
  2095. children = (
  2096. C4EDD9F32AF28B0D00BE8EFF /* DZNEmptyDataView.xib */,
  2097. C4EDD9F42AF28B0D00BE8EFF /* DZNEmptyLoadView.xib */,
  2098. C4EDD9F52AF28B0D00BE8EFF /* DZNEmptyDataView.swift */,
  2099. C4EDD9F62AF28B0D00BE8EFF /* DZNEmptyLoadView.swift */,
  2100. );
  2101. path = DZEmptyDataCustomView;
  2102. sourceTree = "<group>";
  2103. };
  2104. C4EDD9F92AF28B0D00BE8EFF /* MACRefresh(刷新) */ = {
  2105. isa = PBXGroup;
  2106. children = (
  2107. C4EDD9FA2AF28B0D00BE8EFF /* icon_refresh_1@2x.png */,
  2108. C4EDD9FB2AF28B0D00BE8EFF /* icon_refresh_3@3x.png */,
  2109. C4EDD9FC2AF28B0D00BE8EFF /* icon_refresh_3@2x.png */,
  2110. C4EDD9FD2AF28B0D00BE8EFF /* icon_refresh_1@3x.png */,
  2111. C4EDD9FE2AF28B0D00BE8EFF /* MACRefreshHeader.h */,
  2112. C4EDD9FF2AF28B0D00BE8EFF /* icon_refresh_2@3x.png */,
  2113. C4EDDA002AF28B0D00BE8EFF /* icon_refresh_2@2x.png */,
  2114. C4EDDA012AF28B0D00BE8EFF /* MACRefreshHeader.m */,
  2115. );
  2116. path = "MACRefresh(刷新)";
  2117. sourceTree = "<group>";
  2118. };
  2119. C4EDDA112AF28B7400BE8EFF /* UITableViewCell */ = {
  2120. isa = PBXGroup;
  2121. children = (
  2122. C4EDDA122AF28B7400BE8EFF /* MACBaseCell.m */,
  2123. C4EDDA132AF28B7400BE8EFF /* CellDataAdapter.h */,
  2124. C4EDDA142AF28B7400BE8EFF /* UITableViewCell+MAC.h */,
  2125. C4EDDA152AF28B7400BE8EFF /* CellDataAdapter.m */,
  2126. C4EDDA162AF28B7400BE8EFF /* MGSwipeCell */,
  2127. C4EDDA1B2AF28B7400BE8EFF /* UITableViewCell+MAC.m */,
  2128. C4EDDA1C2AF28B7400BE8EFF /* MACBaseCell.h */,
  2129. );
  2130. path = UITableViewCell;
  2131. sourceTree = "<group>";
  2132. };
  2133. C4EDDA162AF28B7400BE8EFF /* MGSwipeCell */ = {
  2134. isa = PBXGroup;
  2135. children = (
  2136. C4EDDA172AF28B7400BE8EFF /* MGSwipeTableCell.m */,
  2137. C4EDDA182AF28B7400BE8EFF /* MGSwipeButton.h */,
  2138. C4EDDA192AF28B7400BE8EFF /* MGSwipeTableCell.h */,
  2139. C4EDDA1A2AF28B7400BE8EFF /* MGSwipeButton.m */,
  2140. );
  2141. path = MGSwipeCell;
  2142. sourceTree = "<group>";
  2143. };
  2144. C4EDDA222AF28BAC00BE8EFF /* Aspect */ = {
  2145. isa = PBXGroup;
  2146. children = (
  2147. C4EDDA232AF28BAC00BE8EFF /* Aspects.h */,
  2148. C4EDDA242AF28BAC00BE8EFF /* Aspects.m */,
  2149. );
  2150. path = Aspect;
  2151. sourceTree = "<group>";
  2152. };
  2153. /* End PBXGroup section */
  2154. /* Begin PBXNativeTarget section */
  2155. C48363AA2AC3D96400E3FA1B /* ADHTuanCan */ = {
  2156. isa = PBXNativeTarget;
  2157. buildConfigurationList = C48363D82AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCan" */;
  2158. buildPhases = (
  2159. 4806FAC5F7810EFBFFA344E5 /* [CP] Check Pods Manifest.lock */,
  2160. C48363A72AC3D96400E3FA1B /* Sources */,
  2161. C48363A82AC3D96400E3FA1B /* Frameworks */,
  2162. C48363A92AC3D96400E3FA1B /* Resources */,
  2163. C9DB7B5874414994DDCA100B /* [CP] Embed Pods Frameworks */,
  2164. );
  2165. buildRules = (
  2166. );
  2167. dependencies = (
  2168. );
  2169. name = ADHTuanCan;
  2170. productName = ADHTuanCan;
  2171. productReference = C48363AB2AC3D96400E3FA1B /* ADHTuanCan.app */;
  2172. productType = "com.apple.product-type.application";
  2173. };
  2174. C48363C32AC3D96500E3FA1B /* ADHTuanCanTests */ = {
  2175. isa = PBXNativeTarget;
  2176. buildConfigurationList = C48363DB2AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCanTests" */;
  2177. buildPhases = (
  2178. C48363C02AC3D96500E3FA1B /* Sources */,
  2179. C48363C12AC3D96500E3FA1B /* Frameworks */,
  2180. C48363C22AC3D96500E3FA1B /* Resources */,
  2181. );
  2182. buildRules = (
  2183. );
  2184. dependencies = (
  2185. C48363C62AC3D96500E3FA1B /* PBXTargetDependency */,
  2186. );
  2187. name = ADHTuanCanTests;
  2188. productName = ADHTuanCanTests;
  2189. productReference = C48363C42AC3D96500E3FA1B /* ADHTuanCanTests.xctest */;
  2190. productType = "com.apple.product-type.bundle.unit-test";
  2191. };
  2192. C48363CD2AC3D96500E3FA1B /* ADHTuanCanUITests */ = {
  2193. isa = PBXNativeTarget;
  2194. buildConfigurationList = C48363DE2AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCanUITests" */;
  2195. buildPhases = (
  2196. C48363CA2AC3D96500E3FA1B /* Sources */,
  2197. C48363CB2AC3D96500E3FA1B /* Frameworks */,
  2198. C48363CC2AC3D96500E3FA1B /* Resources */,
  2199. );
  2200. buildRules = (
  2201. );
  2202. dependencies = (
  2203. C48363D02AC3D96500E3FA1B /* PBXTargetDependency */,
  2204. );
  2205. name = ADHTuanCanUITests;
  2206. productName = ADHTuanCanUITests;
  2207. productReference = C48363CE2AC3D96500E3FA1B /* ADHTuanCanUITests.xctest */;
  2208. productType = "com.apple.product-type.bundle.ui-testing";
  2209. };
  2210. /* End PBXNativeTarget section */
  2211. /* Begin PBXProject section */
  2212. C48363A32AC3D96400E3FA1B /* Project object */ = {
  2213. isa = PBXProject;
  2214. attributes = {
  2215. BuildIndependentTargetsInParallel = 1;
  2216. LastSwiftUpdateCheck = 1500;
  2217. LastUpgradeCheck = 1500;
  2218. TargetAttributes = {
  2219. C48363AA2AC3D96400E3FA1B = {
  2220. CreatedOnToolsVersion = 15.0;
  2221. LastSwiftMigration = 1500;
  2222. };
  2223. C48363C32AC3D96500E3FA1B = {
  2224. CreatedOnToolsVersion = 15.0;
  2225. TestTargetID = C48363AA2AC3D96400E3FA1B;
  2226. };
  2227. C48363CD2AC3D96500E3FA1B = {
  2228. CreatedOnToolsVersion = 15.0;
  2229. TestTargetID = C48363AA2AC3D96400E3FA1B;
  2230. };
  2231. };
  2232. };
  2233. buildConfigurationList = C48363A62AC3D96400E3FA1B /* Build configuration list for PBXProject "ADHTuanCan" */;
  2234. compatibilityVersion = "Xcode 14.0";
  2235. developmentRegion = en;
  2236. hasScannedForEncodings = 0;
  2237. knownRegions = (
  2238. en,
  2239. Base,
  2240. "zh-Hans",
  2241. de,
  2242. "lt-LT",
  2243. ja,
  2244. "el-GR",
  2245. "ms-MY",
  2246. "zh-HK",
  2247. mt,
  2248. nb,
  2249. "ca-ES",
  2250. "en-GB",
  2251. es,
  2252. da,
  2253. "es-419",
  2254. it,
  2255. "nn-NO",
  2256. "fr-CA",
  2257. "bg-BG",
  2258. sv,
  2259. ko,
  2260. fil,
  2261. "zh-Hant",
  2262. tk,
  2263. "ro-RO",
  2264. hu,
  2265. tr,
  2266. "et-EE",
  2267. "pt-BR",
  2268. "lv-LV",
  2269. vi,
  2270. ru,
  2271. "cs-CZ",
  2272. "sk-SK",
  2273. "sl-SI",
  2274. fr,
  2275. fi,
  2276. id,
  2277. nl,
  2278. "pl-PL",
  2279. "pt-PT",
  2280. hr,
  2281. );
  2282. mainGroup = C48363A22AC3D96400E3FA1B;
  2283. productRefGroup = C48363AC2AC3D96400E3FA1B /* Products */;
  2284. projectDirPath = "";
  2285. projectRoot = "";
  2286. targets = (
  2287. C48363AA2AC3D96400E3FA1B /* ADHTuanCan */,
  2288. C48363C32AC3D96500E3FA1B /* ADHTuanCanTests */,
  2289. C48363CD2AC3D96500E3FA1B /* ADHTuanCanUITests */,
  2290. );
  2291. };
  2292. /* End PBXProject section */
  2293. /* Begin PBXResourcesBuildPhase section */
  2294. C48363A92AC3D96400E3FA1B /* Resources */ = {
  2295. isa = PBXResourcesBuildPhase;
  2296. buildActionMask = 2147483647;
  2297. files = (
  2298. C41DA4A82AFF176000707C5D /* IntegralListViewController.xib in Resources */,
  2299. C4CF5F5B2ACD509600B6B2D9 /* MenuTableViewCell.xib in Resources */,
  2300. C4577CCB2AEABA09004D9439 /* DeliveryTimeItem.xib in Resources */,
  2301. C448CD1C2AFE8AAF00B3B068 /* MealHeadView.xib in Resources */,
  2302. C42AEDFF2B03737D0045EF66 /* EverybodyLoveItem.xib in Resources */,
  2303. C45411762B00DB740096F60E /* BalanceViewCell.xib in Resources */,
  2304. C467315E2AFA13FF00658C58 /* UnsubscribeDetailVC.xib in Resources */,
  2305. C470B5932AF0B05B009046B4 /* DeliveryTimeSetView.xib in Resources */,
  2306. C48363BB2AC3D96500E3FA1B /* Assets.xcassets in Resources */,
  2307. C45C8A192AD18D41009D6C3A /* timeManageSheetView.xib in Resources */,
  2308. C4577CE72AEBC8A7004D9439 /* ChangeMealCollectItem.xib in Resources */,
  2309. C4836B6F2AC72B0F00E3FA1B /* EverybodyLoveView.xib in Resources */,
  2310. C4EDD9562AF27DDC00BE8EFF /* succeed.png in Resources */,
  2311. C4EDDA522AF296A300BE8EFF /* ShoppingCarDetailView.xib in Resources */,
  2312. C41DA4B02AFF19E000707C5D /* IntegralViewCell.xib in Resources */,
  2313. C41DA4C52AFF39BE00707C5D /* ReplaceFoodView.xib in Resources */,
  2314. C454118E2B0130970096F60E /* sortedNameEN.plist in Resources */,
  2315. C41DA4D72AFFB02700707C5D /* DiscountsListViewCell.xib in Resources */,
  2316. C4577CA92AEA7B88004D9439 /* SetMealDetailVC.xib in Resources */,
  2317. C44CFA722AFB8AB7000D592D /* BrokerageSheetView.xib in Resources */,
  2318. C438E3CD2AF7C54600F671AE /* OrderListCell.xib in Resources */,
  2319. C41DA4EE2AFFDDDE00707C5D /* PromotionCell.xib in Resources */,
  2320. C4B082B82AF54CA500CD146E /* CheckOrderHeadView.xib in Resources */,
  2321. C41DA4A32AFEFC4F00707C5D /* MealEcaluateCell.xib in Resources */,
  2322. C41DA49F2AFEF9D500707C5D /* MealEvaluateListVC.xib in Resources */,
  2323. C44CFA4B2AFB3247000D592D /* payMentItemCell.xib in Resources */,
  2324. C4C51C882AF1413B00F4636E /* EditPersonNumView.xib in Resources */,
  2325. C470B5782AEFBD07009046B4 /* AddRemarkView.xib in Resources */,
  2326. C4EDD95F2AF27DDC00BE8EFF /* error.png in Resources */,
  2327. C41DA4EF2AFFE1C400707C5D /* PromotionSheetView.xib in Resources */,
  2328. C44CFA472AFB2948000D592D /* OrderDetailSectionView.xib in Resources */,
  2329. C4577CD62AEBC173004D9439 /* MealDescribeView.xib in Resources */,
  2330. C448CD0B2AFE4E8700B3B068 /* AddEvaluateViewController.xib in Resources */,
  2331. C4EDDA0E2AF28B0D00BE8EFF /* icon_refresh_2@3x.png in Resources */,
  2332. C42AEE142B03786A0045EF66 /* PersonalInformationVC.xib in Resources */,
  2333. C454117B2B00DF780096F60E /* BalanceTabHeadView.xib in Resources */,
  2334. C443023A2AF61A2A0098C854 /* UserPayMentSheet.xib in Resources */,
  2335. C4EDDA0A2AF28B0D00BE8EFF /* icon_refresh_1@2x.png in Resources */,
  2336. C4CF5F612ACD640E00B6B2D9 /* MenuHeadView.xib in Resources */,
  2337. C470B5732AEE5BE3009046B4 /* SingleMealDetailController.xib in Resources */,
  2338. C41DA4EA2AFFD2DF00707C5D /* RuleDetailViewController.xib in Resources */,
  2339. C4EDD9732AF27EF400BE8EFF /* QFTMoreSearchCell.xib in Resources */,
  2340. C42AEE0D2B0376F70045EF66 /* AddresViewCell.xib in Resources */,
  2341. C406912B2B08B99E002688FD /* RegisteViewController.xib in Resources */,
  2342. C4C6D8462AFCCB3900E1AFB5 /* BalanceViewController.xib in Resources */,
  2343. C4577CB32AEA8E5C004D9439 /* MealCollectionView.xib in Resources */,
  2344. C470B5A82AF0C719009046B4 /* CheckOrderViewController.xib in Resources */,
  2345. C42AEE1B2B037AED0045EF66 /* UnsubscribeViewController.xib in Resources */,
  2346. C41DA4E12AFFC04900707C5D /* DiscountsSectionView.xib in Resources */,
  2347. C4C51C7A2AF0FFBE00F4636E /* AddressEditorVC.xib in Resources */,
  2348. C40691392B08BB29002688FD /* EditPayPSWViewController.xib in Resources */,
  2349. C45C669D2B01EED5005E13CE /* SalesmanComplementVC.xib in Resources */,
  2350. C4836C2D2AC87B6900E3FA1B /* HomeRecommendView.xib in Resources */,
  2351. C45E1EC82AF9E412005C9210 /* MyViewController.xib in Resources */,
  2352. C42AEDF82B03731E0045EF66 /* HomeFoodItem.xib in Resources */,
  2353. C4144CD62AF91DCB00B5F73C /* OrderDetailViewController.xib in Resources */,
  2354. C4577CD72AEBC19F004D9439 /* NeedKonwView.xib in Resources */,
  2355. C41DA4D02AFF44FF00707C5D /* DiscountsViewController.xib in Resources */,
  2356. C41DA4E52AFFC59100707C5D /* DiscountsFootView.xib in Resources */,
  2357. C44CFA552AFB5308000D592D /* OrderDetailFootView.xib in Resources */,
  2358. C42AEE062B0374A30045EF66 /* SalesmanFirstShowView.xib in Resources */,
  2359. C4C6D83A2AFC100400E1AFB5 /* phoneCallView.xib in Resources */,
  2360. C42AEE2C2B04D9CA0045EF66 /* RechargeAmountViewController.xib in Resources */,
  2361. C41DA4C32AFF232800707C5D /* IntegralSectiionView.xib in Resources */,
  2362. C4836B662AC7037600E3FA1B /* dateItem.xib in Resources */,
  2363. C4EDDA062AF28B0D00BE8EFF /* DZNEmptyLoadView.xib in Resources */,
  2364. C44302152AF5F5370098C854 /* selectAddressView.xib in Resources */,
  2365. C45001702AD67CF000F96CFA /* OrderReadyCell.xib in Resources */,
  2366. C40691242B08B92C002688FD /* PhoneLoginViewController.xib in Resources */,
  2367. C406911D2B08B8C3002688FD /* CodeViewController.xib in Resources */,
  2368. C4C51C8C2AF1489700F4636E /* ADHAlertView.xib in Resources */,
  2369. C4EDDA0D2AF28B0D00BE8EFF /* icon_refresh_1@3x.png in Resources */,
  2370. C4CF5F4A2ACD468000B6B2D9 /* StartView.xib in Resources */,
  2371. C44CFA672AFB81FF000D592D /* BrokerageCell.xib in Resources */,
  2372. C4EDDA0C2AF28B0D00BE8EFF /* icon_refresh_3@2x.png in Resources */,
  2373. C454118F2B0130970096F60E /* sortedNameCH.plist in Resources */,
  2374. C40691322B08BA2F002688FD /* EditLoginPSWViewController.xib in Resources */,
  2375. C4C51C842AF122B800F4636E /* EditorDeliveryView.xib in Resources */,
  2376. C40690DC2B0714EE002688FD /* CheckOrderFootView.xib in Resources */,
  2377. C4EDD9D72AF2879100BE8EFF /* MJRefresh.bundle in Resources */,
  2378. C44302242AF6073A0098C854 /* PayMentSelectView.xib in Resources */,
  2379. C4C51C732AF0FF4100F4636E /* AddressManagerVC.xib in Resources */,
  2380. C40691122B08B7E5002688FD /* TCLogingViewController.xib in Resources */,
  2381. C4836C332AC8A26A00E3FA1B /* SearchView.xib in Resources */,
  2382. C4EDDA0B2AF28B0D00BE8EFF /* icon_refresh_3@3x.png in Resources */,
  2383. C4EDDA052AF28B0D00BE8EFF /* DZNEmptyDataView.xib in Resources */,
  2384. C4836A452AC41C1100E3FA1B /* Localizable.strings in Resources */,
  2385. C48363B62AC3D96400E3FA1B /* Main.storyboard in Resources */,
  2386. C467316E2AFA569900658C58 /* OderDetailHeadView.xib in Resources */,
  2387. C4836B7A2AC7308400E3FA1B /* HomeDateView.xib in Resources */,
  2388. C4577CBD2AEA8FFD004D9439 /* SetMealCollectionItem.xib in Resources */,
  2389. C42AEE222B037BD40045EF66 /* AddEvaluateCell.xib in Resources */,
  2390. C42AEDE82B03727E0045EF66 /* HomeViewController.xib in Resources */,
  2391. C438E3D42AF7E80300F671AE /* OrderManagerVC.xib in Resources */,
  2392. C41DA4B52AFF22DD00707C5D /* IntegralHeadView.xib in Resources */,
  2393. C42AEDEF2B0372D70045EF66 /* HomeSecondViewController.xib in Resources */,
  2394. C4C6D84B2AFCD22800E1AFB5 /* PswPayView.xib in Resources */,
  2395. C4EDDA0F2AF28B0D00BE8EFF /* icon_refresh_2@2x.png in Resources */,
  2396. C42AEDE12B03717F0045EF66 /* ChangeMealCollectionView.xib in Resources */,
  2397. C44301FC2AF5E1860098C854 /* OrderAddressCell.xib in Resources */,
  2398. );
  2399. runOnlyForDeploymentPostprocessing = 0;
  2400. };
  2401. C48363C22AC3D96500E3FA1B /* Resources */ = {
  2402. isa = PBXResourcesBuildPhase;
  2403. buildActionMask = 2147483647;
  2404. files = (
  2405. );
  2406. runOnlyForDeploymentPostprocessing = 0;
  2407. };
  2408. C48363CC2AC3D96500E3FA1B /* Resources */ = {
  2409. isa = PBXResourcesBuildPhase;
  2410. buildActionMask = 2147483647;
  2411. files = (
  2412. );
  2413. runOnlyForDeploymentPostprocessing = 0;
  2414. };
  2415. /* End PBXResourcesBuildPhase section */
  2416. /* Begin PBXShellScriptBuildPhase section */
  2417. 4806FAC5F7810EFBFFA344E5 /* [CP] Check Pods Manifest.lock */ = {
  2418. isa = PBXShellScriptBuildPhase;
  2419. buildActionMask = 12;
  2420. files = (
  2421. );
  2422. inputFileListPaths = (
  2423. );
  2424. inputPaths = (
  2425. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2426. "${PODS_ROOT}/Manifest.lock",
  2427. );
  2428. name = "[CP] Check Pods Manifest.lock";
  2429. outputFileListPaths = (
  2430. );
  2431. outputPaths = (
  2432. "$(DERIVED_FILE_DIR)/Pods-ADHTuanCan-checkManifestLockResult.txt",
  2433. );
  2434. runOnlyForDeploymentPostprocessing = 0;
  2435. shellPath = /bin/sh;
  2436. 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";
  2437. showEnvVarsInLog = 0;
  2438. };
  2439. C9DB7B5874414994DDCA100B /* [CP] Embed Pods Frameworks */ = {
  2440. isa = PBXShellScriptBuildPhase;
  2441. buildActionMask = 2147483647;
  2442. files = (
  2443. );
  2444. inputFileListPaths = (
  2445. "${PODS_ROOT}/Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  2446. );
  2447. name = "[CP] Embed Pods Frameworks";
  2448. outputFileListPaths = (
  2449. "${PODS_ROOT}/Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  2450. );
  2451. runOnlyForDeploymentPostprocessing = 0;
  2452. shellPath = /bin/sh;
  2453. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-ADHTuanCan/Pods-ADHTuanCan-frameworks.sh\"\n";
  2454. showEnvVarsInLog = 0;
  2455. };
  2456. /* End PBXShellScriptBuildPhase section */
  2457. /* Begin PBXSourcesBuildPhase section */
  2458. C48363A72AC3D96400E3FA1B /* Sources */ = {
  2459. isa = PBXSourcesBuildPhase;
  2460. buildActionMask = 2147483647;
  2461. files = (
  2462. C4577CC72AEA9E02004D9439 /* SetMealModel.swift in Sources */,
  2463. C4EDDA032AF28B0D00BE8EFF /* MACTableView.m in Sources */,
  2464. C4EDDA102AF28B0D00BE8EFF /* MACRefreshHeader.m in Sources */,
  2465. C4EDDA1F2AF28B7400BE8EFF /* MGSwipeTableCell.m in Sources */,
  2466. C4836B852AC7F79600E3FA1B /* BaseTabbarController.swift in Sources */,
  2467. C48363AF2AC3D96400E3FA1B /* AppDelegate.swift in Sources */,
  2468. C448CCFF2AFE3B5E00B3B068 /* EvaluateRequestModel.swift in Sources */,
  2469. C4EDDA092AF28B0D00BE8EFF /* UIScrollView+EmptyDataSet.m in Sources */,
  2470. C4836B582AC5912300E3FA1B /* NibUtil.swift in Sources */,
  2471. C4CF5F5F2ACD640000B6B2D9 /* MenuHeadView.swift in Sources */,
  2472. C42BB5622ADD5045003FF663 /* MCProxyTextFieldRx.swift in Sources */,
  2473. C45411852B00E38D0096F60E /* HomeSecondViewController.swift in Sources */,
  2474. C45C669C2B01EED5005E13CE /* SalesmanComplementVC.swift in Sources */,
  2475. C4EDD9522AF27DDC00BE8EFF /* UIView+XIB.m in Sources */,
  2476. C4C51C862AF1413100F4636E /* EditPersonNumView.swift in Sources */,
  2477. C41DA4ED2AFFDDDE00707C5D /* PromotionCell.swift in Sources */,
  2478. C4EDD9572AF27DDC00BE8EFF /* UIView+MAC.m in Sources */,
  2479. C4577CE62AEBC8A7004D9439 /* ChangeMealCollectItem.swift in Sources */,
  2480. C4C6D8492AFCD21F00E1AFB5 /* PswPayView.swift in Sources */,
  2481. C4EDD90D2AF2618A00BE8EFF /* ADHBaseNavigationController.swift in Sources */,
  2482. C4836B5A2AC6ED0600E3FA1B /* HomeDateView.swift in Sources */,
  2483. C4EDD9612AF27DDC00BE8EFF /* UIView+Hint.m in Sources */,
  2484. C42BB5552ADD457B003FF663 /* RegisteViewController.swift in Sources */,
  2485. C4EDDA042AF28B0D00BE8EFF /* UITableView+LoadPageIndex.m in Sources */,
  2486. C41DA49E2AFEF9D500707C5D /* MealEvaluateListVC.swift in Sources */,
  2487. C42AEDE02B035A9D0045EF66 /* MCDatePikerDelegateImp_HHmm.swift in Sources */,
  2488. C4836B872AC8039500E3FA1B /* ADHBaseVC.swift in Sources */,
  2489. C4EDD9602AF27DDC00BE8EFF /* UIView+AnimationProperty.m in Sources */,
  2490. C41DA4B22AFF1E6500707C5D /* IntegralSectiionView.swift in Sources */,
  2491. C4EDD9E42AF2879100BE8EFF /* MJRefreshFooter.m in Sources */,
  2492. C4EDD9E62AF2879100BE8EFF /* MJRefreshBackFooter.m in Sources */,
  2493. C41DA4CF2AFF44FF00707C5D /* DiscountsViewController.swift in Sources */,
  2494. C40690F12B07A2FE002688FD /* MonthTableViewCell.m in Sources */,
  2495. C4C6D8372AFC0D4900E1AFB5 /* phoneCallView.swift in Sources */,
  2496. C4836C302AC89C1800E3FA1B /* SearchView.swift in Sources */,
  2497. C4577CCE2AEBBB2A004D9439 /* NeedKonwView.swift in Sources */,
  2498. C41DA4E32AFFC58000707C5D /* DiscountsFootView.swift in Sources */,
  2499. C4EDD9D82AF2879100BE8EFF /* UIScrollView+MJExtension.m in Sources */,
  2500. C4C6D8452AFCCB3900E1AFB5 /* BalanceViewController.swift in Sources */,
  2501. C4CF5F132AC9813B00B6B2D9 /* MBProgressHUD.m in Sources */,
  2502. C42AEDDB2B035A9D0045EF66 /* MCDatePikerView.swift in Sources */,
  2503. C4EDD9E82AF2879100BE8EFF /* MJRefreshComponent.m in Sources */,
  2504. C470B5B32AF0DCBA009046B4 /* AddresViewCell.swift in Sources */,
  2505. C4EDD9642AF27DDC00BE8EFF /* UIView+JYPBadgeView.m in Sources */,
  2506. C4EDD9212AF27CD400BE8EFF /* UIFont+Fonts.m in Sources */,
  2507. C470B58D2AEFF1E2009046B4 /* ShopCarModel.swift in Sources */,
  2508. C45C66972B01E42E005E13CE /* EditPayPSWViewController.swift in Sources */,
  2509. C4836B412AC57AA400E3FA1B /* UIView+Visualization.m in Sources */,
  2510. C42AEDDF2B035A9D0045EF66 /* MCDatePikerDelegateImp_yyyyMM.swift in Sources */,
  2511. C4BFF7F72AFD2D3500CCA462 /* Http+UploadImage.swift in Sources */,
  2512. C4EDD9672AF27DDC00BE8EFF /* UIView+Screenshot.m in Sources */,
  2513. C45C8A162AD182ED009D6C3A /* timeManageSheetView.m in Sources */,
  2514. C4EDD9182AF27C4800BE8EFF /* MCNavBarSearchView.swift in Sources */,
  2515. C48363B92AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld in Sources */,
  2516. C40690F52B07AAF9002688FD /* RectCornerUtil.swift in Sources */,
  2517. C44301FA2AF5DEBA0098C854 /* OrderAddressCell.swift in Sources */,
  2518. C4836A7A2AC517AA00E3FA1B /* MCBaseViewModel.swift in Sources */,
  2519. C41DA4DF2AFFC03B00707C5D /* DiscountsSectionView.swift in Sources */,
  2520. C4577CA82AEA7B88004D9439 /* SetMealDetailVC.swift in Sources */,
  2521. C470B5802AEFC3C1009046B4 /* ReplaceFoodView.swift in Sources */,
  2522. C42AEDDE2B035A9D0045EF66 /* MCDatePikerStyleDelegateImp.swift in Sources */,
  2523. C4836A8A2AC5180A00E3FA1B /* ArrayUtil.swift in Sources */,
  2524. C45411912B0130C40096F60E /* EWCountryCodeViewController.swift in Sources */,
  2525. C4EDD9622AF27DDC00BE8EFF /* UIView+Blur.m in Sources */,
  2526. C4EDD9742AF27EF400BE8EFF /* QFTSearchContentView.m in Sources */,
  2527. C4EDD9D52AF2879100BE8EFF /* UIScrollView+MJRefresh.m in Sources */,
  2528. C4EDDA1E2AF28B7400BE8EFF /* CellDataAdapter.m in Sources */,
  2529. C4EDD95E2AF27DDC00BE8EFF /* UIView+XMGExtension.m in Sources */,
  2530. C4836A282AC3FBD900E3FA1B /* MacroDefinition.swift in Sources */,
  2531. C443021F2AF5FA330098C854 /* OrderDataModel.swift in Sources */,
  2532. C42BB5722ADD69C1003FF663 /* LoginModel.swift in Sources */,
  2533. C42BB5642ADD56D7003FF663 /* ElementUtil.swift in Sources */,
  2534. C470B5A72AF0C719009046B4 /* CheckOrderViewController.swift in Sources */,
  2535. C40690DD2B0714EE002688FD /* CheckOrderFootView.swift in Sources */,
  2536. C4CF5F5A2ACD509600B6B2D9 /* MenuTableViewCell.swift in Sources */,
  2537. C4EDDA072AF28B0D00BE8EFF /* DZNEmptyDataView.swift in Sources */,
  2538. C44301F52AF5DC830098C854 /* selectAddressView.swift in Sources */,
  2539. C40690F22B07A2FE002688FD /* MonthModel.m in Sources */,
  2540. C448CD122AFE4FA900B3B068 /* textView.swift in Sources */,
  2541. C4836A8D2AC5180B00E3FA1B /* StringUtil.swift in Sources */,
  2542. C4CF5F0D2AC9801300B6B2D9 /* MCHud.swift in Sources */,
  2543. C4836B3D2AC5784900E3FA1B /* HomeViewController.swift in Sources */,
  2544. C4EDD9DA2AF2879100BE8EFF /* UIView+MJExtension.m in Sources */,
  2545. C46731532AF9F6E400658C58 /* PersonalInformationVC.swift in Sources */,
  2546. C4836A852AC5180A00E3FA1B /* NotificationUtil.swift in Sources */,
  2547. C4EDD9DB2AF2879100BE8EFF /* MJRefreshBackGifFooter.m in Sources */,
  2548. C4EDDA502AF2969A00BE8EFF /* ShoppingCarDetailView.swift in Sources */,
  2549. C4577CBC2AEA8FFD004D9439 /* SetMealCollectionItem.swift in Sources */,
  2550. C470B59B2AF0BDB5009046B4 /* CheckOrderHeadView.swift in Sources */,
  2551. C4EDD9172AF27C4800BE8EFF /* MCNavBarView.swift in Sources */,
  2552. C438E3CA2AF7B4F300F671AE /* OrderViewModel.swift in Sources */,
  2553. C4EDD91A2AF27C4800BE8EFF /* MCNavBarCustomView.swift in Sources */,
  2554. C4EDD9DF2AF2879100BE8EFF /* MJRefreshAutoGifFooter.m in Sources */,
  2555. C4836B562AC5910E00E3FA1B /* CollectionViewUtil.swift in Sources */,
  2556. C4836A892AC5180A00E3FA1B /* OtherGeneralMethod.swift in Sources */,
  2557. C41DA4D52AFFAB2400707C5D /* DiscountsListViewCell.swift in Sources */,
  2558. C4577CE12AEBC5C4004D9439 /* ChangeMealCollectionView.swift in Sources */,
  2559. C4EDDA022AF28B0D00BE8EFF /* UITableView+CellClass.m in Sources */,
  2560. C4EDD95C2AF27DDC00BE8EFF /* UIView+EAFeatureGuideView.m in Sources */,
  2561. C42AEDDD2B035A9D0045EF66 /* MCDatePikerDelegate.swift in Sources */,
  2562. C4836A8B2AC5180A00E3FA1B /* GCDUtil.swift in Sources */,
  2563. C4EDD9D62AF2879100BE8EFF /* MJRefreshConst.m in Sources */,
  2564. C4EDD9552AF27DDC00BE8EFF /* UIView+ViewController.m in Sources */,
  2565. C4EDD9582AF27DDC00BE8EFF /* UIView+BlockGesture.m in Sources */,
  2566. C4EDD9E32AF2879100BE8EFF /* MJRefreshGifHeader.m in Sources */,
  2567. C4EDD9E12AF2879100BE8EFF /* MJRefreshNormalHeader.m in Sources */,
  2568. C4EDD9542AF27DDC00BE8EFF /* UIView+GestureCallback.m in Sources */,
  2569. C41DA4E92AFFD2DF00707C5D /* RuleDetailViewController.swift in Sources */,
  2570. C4C51C6E2AF0E5A500F4636E /* AddresBaseModel.swift in Sources */,
  2571. C470B5752AEFBACB009046B4 /* AddRemarkView.swift in Sources */,
  2572. C4CF5F092AC97DB500B6B2D9 /* TCHomeGetDataModel.swift in Sources */,
  2573. C4836A862AC5180A00E3FA1B /* Convert.swift in Sources */,
  2574. C470B5722AEE5BE3009046B4 /* SingleMealDetailController.swift in Sources */,
  2575. C4836B6C2AC7271800E3FA1B /* EverybodyLoveView.swift in Sources */,
  2576. C41DA4A72AFF176000707C5D /* IntegralListViewController.swift in Sources */,
  2577. C4577CB02AEA8BBC004D9439 /* MealCollectionView.swift in Sources */,
  2578. C42BB55C2ADD4C50003FF663 /* CodeViewController.swift in Sources */,
  2579. C4EDD95B2AF27DDC00BE8EFF /* EAFeatureItem.m in Sources */,
  2580. C4EDD9E52AF2879100BE8EFF /* MJRefreshHeader.m in Sources */,
  2581. C46731572AFA085500658C58 /* UnsubscribeViewController.swift in Sources */,
  2582. C4EDDA202AF28B7400BE8EFF /* MGSwipeButton.m in Sources */,
  2583. C44CFA452AFB2940000D592D /* OrderDetailSectionView.swift in Sources */,
  2584. C4EDDA252AF28BAC00BE8EFF /* Aspects.m in Sources */,
  2585. C4EDD9662AF27DDC00BE8EFF /* UIView+RecursiveDescription.m in Sources */,
  2586. C4EDD9E02AF2879100BE8EFF /* MJRefreshAutoNormalFooter.m in Sources */,
  2587. C42AEDDC2B035A9D0045EF66 /* MCDatePikerStyleDelegate.swift in Sources */,
  2588. C41DA4AF2AFF19E000707C5D /* IntegralViewCell.swift in Sources */,
  2589. C44CFA602AFB5CAD000D592D /* MyViewModel.swift in Sources */,
  2590. C4EDD9DC2AF2879100BE8EFF /* MJRefreshBackStateFooter.m in Sources */,
  2591. C4836A702AC516FC00E3FA1B /* MCHttpUtil.swift in Sources */,
  2592. C448CD022AFE3DE200B3B068 /* AddEvaluateCell.swift in Sources */,
  2593. C4EDD97A2AF2849300BE8EFF /* MCDZNEmptyDelegate.swift in Sources */,
  2594. C44CFA412AFB1AD1000D592D /* OrderDetailFootView.swift in Sources */,
  2595. C44CFA6F2AFB8255000D592D /* BrokerageSheetView.swift in Sources */,
  2596. C4EDD97C2AF2856D00BE8EFF /* ADHBaseVC+DZNEmpty.swift in Sources */,
  2597. C443022E2AF615780098C854 /* UserPayMentSheet.swift in Sources */,
  2598. C41DA4AA2AFF17B000707C5D /* IntegralHeadView.swift in Sources */,
  2599. C4BFF79B2AFD165E00CCA462 /* MCHttpUtil+UploadImage.swift in Sources */,
  2600. C45E1EC62AF9DC91005C9210 /* MyViewController.swift in Sources */,
  2601. C448CCF72AFE37CE00B3B068 /* AddEvaluateViewController.swift in Sources */,
  2602. C4C51C822AF122A900F4636E /* EditorDeliveryView.swift in Sources */,
  2603. C4EDD9592AF27DDC00BE8EFF /* UIView+Visualization.m in Sources */,
  2604. C438E3C82AF795A700F671AE /* OrderTypeEnum.swift in Sources */,
  2605. C4577D042AEBCEE9004D9439 /* NSObject+Hint.m in Sources */,
  2606. C4EDD9632AF27DDC00BE8EFF /* UIView+GlowView.m in Sources */,
  2607. C45C8A362AD24932009D6C3A /* OrderListCell.swift in Sources */,
  2608. C4EDD9192AF27C4800BE8EFF /* MCNavBarSegmentView.swift in Sources */,
  2609. C41DA4A22AFEFC4F00707C5D /* MealEcaluateCell.swift in Sources */,
  2610. C44CFA7A2AFB8B89000D592D /* PromotionSheetView.swift in Sources */,
  2611. C4EDD9D92AF2879100BE8EFF /* NSBundle+MJRefresh.m in Sources */,
  2612. C42AEDD02B0312070045EF66 /* SalesmanFirstShowView.swift in Sources */,
  2613. C4EDD9DE2AF2879100BE8EFF /* MJRefreshAutoStateFooter.m in Sources */,
  2614. C45C66922B01CEE7005E13CE /* EditLoginPSWViewController.swift in Sources */,
  2615. C4EDD95D2AF27DDC00BE8EFF /* UIView+Shake.m in Sources */,
  2616. C4836C2B2AC87B5F00E3FA1B /* HomeRecommendView.swift in Sources */,
  2617. C42BB5612ADD5045003FF663 /* MCProxyTextViewRx.swift in Sources */,
  2618. C4836A872AC5180A00E3FA1B /* OptionalUtil.swift in Sources */,
  2619. C4577CAC2AEA7BE8004D9439 /* MealHeadView.swift in Sources */,
  2620. C4CF5F052AC97D6800B6B2D9 /* HomeViewModel.swift in Sources */,
  2621. C45DC1222AE91AB70066BD93 /* ImageView.swift in Sources */,
  2622. C4EDDA1D2AF28B7400BE8EFF /* MACBaseCell.m in Sources */,
  2623. C4CF5F422ACD3EDA00B6B2D9 /* StartupPageViewController.swift in Sources */,
  2624. C4EDDA082AF28B0D00BE8EFF /* DZNEmptyLoadView.swift in Sources */,
  2625. C44CFA652AFB8084000D592D /* BrokerageCell.swift in Sources */,
  2626. C45C8A292AD240B9009D6C3A /* OrderManagerVC.swift in Sources */,
  2627. C4EDD9DD2AF2879100BE8EFF /* MJRefreshBackNormalFooter.m in Sources */,
  2628. C4144CD52AF91DCB00B5F73C /* OrderDetailViewController.swift in Sources */,
  2629. C42AEE2B2B04D9CA0045EF66 /* RechargeAmountViewController.swift in Sources */,
  2630. C4836B172AC5597B00E3FA1B /* ButtonUtil.swift in Sources */,
  2631. C470B58B2AEFEF39009046B4 /* ShoppingCarViewModel.swift in Sources */,
  2632. C4577CCA2AEABA09004D9439 /* DeliveryTimeItem.swift in Sources */,
  2633. C4CF5F5D2ACD632600B6B2D9 /* TableViewUtil.swift in Sources */,
  2634. C44CFA4A2AFB3247000D592D /* payMentItemCell.swift in Sources */,
  2635. C4836B772AC72C0900E3FA1B /* EverybodyLoveItem.swift in Sources */,
  2636. C4EDD9152AF27C4800BE8EFF /* MCNavBarSegmentValue1View.swift in Sources */,
  2637. C450016F2AD67CF000F96CFA /* OrderReadyCell.swift in Sources */,
  2638. C4EDD9712AF27EF400BE8EFF /* QFTSearchBar.m in Sources */,
  2639. C467315C2AFA0EEF00658C58 /* UnsubscribeDetailVC.swift in Sources */,
  2640. C4836A792AC517AA00E3FA1B /* MCBaseRequestModel.swift in Sources */,
  2641. C40690F02B07A2FE002688FD /* DayCollectionViewCell.m in Sources */,
  2642. C4C9B8652AF3C7F900C13A61 /* UIView+rounded.swift in Sources */,
  2643. C4C51C8A2AF1488E00F4636E /* ADHAlertView.swift in Sources */,
  2644. C45411752B00DB740096F60E /* BalanceViewCell.swift in Sources */,
  2645. C45411782B00DF200096F60E /* BalanceTabHeadView.swift in Sources */,
  2646. C454118A2B012CB70096F60E /* PhoneLoginViewController.swift in Sources */,
  2647. C42BB5752ADD6F27003FF663 /* LoginViewModel.swift in Sources */,
  2648. C4577CC42AEA9DC7004D9439 /* SetMealViewModel.swift in Sources */,
  2649. C4EDD9652AF27DDC00BE8EFF /* UIView+Find.m in Sources */,
  2650. C448CCFD2AFE3B3F00B3B068 /* EvaluateViewModel.swift in Sources */,
  2651. C4577CD42AEBC168004D9439 /* MealDescribeView.swift in Sources */,
  2652. C4C51C6C2AF0E57E00F4636E /* AddresViewModel.swift in Sources */,
  2653. C4EDD9512AF27DDC00BE8EFF /* UIView+Segment.m in Sources */,
  2654. C4836A6F2AC516FC00E3FA1B /* MCResponseModel.swift in Sources */,
  2655. C4EDD9E72AF2879100BE8EFF /* MJRefreshAutoFooter.m in Sources */,
  2656. C4CF5F142AC9813B00B6B2D9 /* UIViewController+HUB.m in Sources */,
  2657. C45DC1202AE90D230066BD93 /* LanguagesUtil.swift in Sources */,
  2658. C4C51C712AF0EB0C00F4636E /* AddressEditorVC.swift in Sources */,
  2659. C470B5AC2AF0D8C8009046B4 /* AddressManagerVC.swift in Sources */,
  2660. C4CF5F452ACD436600B6B2D9 /* StartView.swift in Sources */,
  2661. C4EDD9532AF27DDC00BE8EFF /* UIView+Nib.m in Sources */,
  2662. C44CFA622AFB5CCF000D592D /* MyRequestModel.swift in Sources */,
  2663. C4836A732AC516FC00E3FA1B /* MCHttpRxExtension.swift in Sources */,
  2664. C4577CBF2AEA9A9B004D9439 /* DeliveryTimeSetView.swift in Sources */,
  2665. C4EDD9162AF27C4800BE8EFF /* MCNavBarDelegate.swift in Sources */,
  2666. C4836A782AC517AA00E3FA1B /* MCBaseModel.swift in Sources */,
  2667. C4836B622AC7035D00E3FA1B /* dateItem.swift in Sources */,
  2668. C4836B4C2AC58BE200E3FA1B /* HomeFoodItem.swift in Sources */,
  2669. C4CF5F3E2ACD3B8000B6B2D9 /* UserDefaultUtil.swift in Sources */,
  2670. C4836A252AC3F6D500E3FA1B /* ADHcolor.swift in Sources */,
  2671. C4EDD9E22AF2879100BE8EFF /* MJRefreshStateHeader.m in Sources */,
  2672. C4C9B85C2AF3C5FE00C13A61 /* YDRectCorner.swift in Sources */,
  2673. C4EDDA212AF28B7400BE8EFF /* UITableViewCell+MAC.m in Sources */,
  2674. C4836AC92AC51FBB00E3FA1B /* TCLogingViewController.swift in Sources */,
  2675. C44302442AF6835B0098C854 /* OderDetailHeadView.swift in Sources */,
  2676. C4EDD9722AF27EF400BE8EFF /* QFTMoreSearchCell.m in Sources */,
  2677. C44302212AF6043B0098C854 /* PayMentSelectView.swift in Sources */,
  2678. );
  2679. runOnlyForDeploymentPostprocessing = 0;
  2680. };
  2681. C48363C02AC3D96500E3FA1B /* Sources */ = {
  2682. isa = PBXSourcesBuildPhase;
  2683. buildActionMask = 2147483647;
  2684. files = (
  2685. C48363C92AC3D96500E3FA1B /* ADHTuanCanTests.swift in Sources */,
  2686. );
  2687. runOnlyForDeploymentPostprocessing = 0;
  2688. };
  2689. C48363CA2AC3D96500E3FA1B /* Sources */ = {
  2690. isa = PBXSourcesBuildPhase;
  2691. buildActionMask = 2147483647;
  2692. files = (
  2693. C48363D32AC3D96500E3FA1B /* ADHTuanCanUITests.swift in Sources */,
  2694. C48363D52AC3D96500E3FA1B /* ADHTuanCanUITestsLaunchTests.swift in Sources */,
  2695. );
  2696. runOnlyForDeploymentPostprocessing = 0;
  2697. };
  2698. /* End PBXSourcesBuildPhase section */
  2699. /* Begin PBXTargetDependency section */
  2700. C48363C62AC3D96500E3FA1B /* PBXTargetDependency */ = {
  2701. isa = PBXTargetDependency;
  2702. target = C48363AA2AC3D96400E3FA1B /* ADHTuanCan */;
  2703. targetProxy = C48363C52AC3D96500E3FA1B /* PBXContainerItemProxy */;
  2704. };
  2705. C48363D02AC3D96500E3FA1B /* PBXTargetDependency */ = {
  2706. isa = PBXTargetDependency;
  2707. target = C48363AA2AC3D96400E3FA1B /* ADHTuanCan */;
  2708. targetProxy = C48363CF2AC3D96500E3FA1B /* PBXContainerItemProxy */;
  2709. };
  2710. /* End PBXTargetDependency section */
  2711. /* Begin PBXVariantGroup section */
  2712. C40691142B08B7E5002688FD /* TCLogingViewController.xib */ = {
  2713. isa = PBXVariantGroup;
  2714. children = (
  2715. C40691132B08B7E5002688FD /* Base */,
  2716. C40691182B08B7F1002688FD /* en */,
  2717. C406911C2B08B7FE002688FD /* zh-Hans */,
  2718. );
  2719. name = TCLogingViewController.xib;
  2720. sourceTree = "<group>";
  2721. };
  2722. C406911F2B08B8C3002688FD /* CodeViewController.xib */ = {
  2723. isa = PBXVariantGroup;
  2724. children = (
  2725. C406911E2B08B8C3002688FD /* Base */,
  2726. C40691212B08B8C5002688FD /* en */,
  2727. C40691232B08B8C6002688FD /* zh-Hans */,
  2728. );
  2729. name = CodeViewController.xib;
  2730. sourceTree = "<group>";
  2731. };
  2732. C40691262B08B92C002688FD /* PhoneLoginViewController.xib */ = {
  2733. isa = PBXVariantGroup;
  2734. children = (
  2735. C40691252B08B92C002688FD /* Base */,
  2736. C40691282B08B92E002688FD /* en */,
  2737. C406912A2B08B92F002688FD /* zh-Hans */,
  2738. );
  2739. name = PhoneLoginViewController.xib;
  2740. sourceTree = "<group>";
  2741. };
  2742. C406912D2B08B99E002688FD /* RegisteViewController.xib */ = {
  2743. isa = PBXVariantGroup;
  2744. children = (
  2745. C406912C2B08B99E002688FD /* Base */,
  2746. C406912F2B08B9A0002688FD /* en */,
  2747. C40691312B08B9A1002688FD /* zh-Hans */,
  2748. );
  2749. name = RegisteViewController.xib;
  2750. sourceTree = "<group>";
  2751. };
  2752. C40691342B08BA2F002688FD /* EditLoginPSWViewController.xib */ = {
  2753. isa = PBXVariantGroup;
  2754. children = (
  2755. C40691332B08BA2F002688FD /* Base */,
  2756. C40691362B08BA32002688FD /* en */,
  2757. C40691382B08BA33002688FD /* zh-Hans */,
  2758. );
  2759. name = EditLoginPSWViewController.xib;
  2760. sourceTree = "<group>";
  2761. };
  2762. C406913B2B08BB29002688FD /* EditPayPSWViewController.xib */ = {
  2763. isa = PBXVariantGroup;
  2764. children = (
  2765. C406913A2B08BB29002688FD /* Base */,
  2766. C406913D2B08BB2B002688FD /* en */,
  2767. C406913F2B08BB2C002688FD /* zh-Hans */,
  2768. );
  2769. name = EditPayPSWViewController.xib;
  2770. sourceTree = "<group>";
  2771. };
  2772. C41DA4B72AFF22DD00707C5D /* IntegralHeadView.xib */ = {
  2773. isa = PBXVariantGroup;
  2774. children = (
  2775. C41DA4B62AFF22DD00707C5D /* Base */,
  2776. C41DA4B92AFF22DE00707C5D /* en */,
  2777. C41DA4BB2AFF22E000707C5D /* zh-Hans */,
  2778. );
  2779. name = IntegralHeadView.xib;
  2780. sourceTree = "<group>";
  2781. };
  2782. C41DA4C72AFF39BE00707C5D /* ReplaceFoodView.xib */ = {
  2783. isa = PBXVariantGroup;
  2784. children = (
  2785. C41DA4C62AFF39BE00707C5D /* Base */,
  2786. C41DA4C92AFF39BF00707C5D /* en */,
  2787. C41DA4CB2AFF39C100707C5D /* zh-Hans */,
  2788. );
  2789. name = ReplaceFoodView.xib;
  2790. sourceTree = "<group>";
  2791. };
  2792. C41DA4D92AFFB02700707C5D /* DiscountsListViewCell.xib */ = {
  2793. isa = PBXVariantGroup;
  2794. children = (
  2795. C41DA4D82AFFB02700707C5D /* Base */,
  2796. C41DA4DB2AFFB02900707C5D /* en */,
  2797. C41DA4DD2AFFB02D00707C5D /* zh-Hans */,
  2798. );
  2799. name = DiscountsListViewCell.xib;
  2800. sourceTree = "<group>";
  2801. };
  2802. C41DA4F12AFFE1C400707C5D /* PromotionSheetView.xib */ = {
  2803. isa = PBXVariantGroup;
  2804. children = (
  2805. C41DA4F02AFFE1C400707C5D /* Base */,
  2806. C41DA4F32AFFE1C600707C5D /* en */,
  2807. C41DA4F52AFFE1C700707C5D /* zh-Hans */,
  2808. );
  2809. name = PromotionSheetView.xib;
  2810. sourceTree = "<group>";
  2811. };
  2812. C42AEDE32B03717F0045EF66 /* ChangeMealCollectionView.xib */ = {
  2813. isa = PBXVariantGroup;
  2814. children = (
  2815. C42AEDE22B03717F0045EF66 /* Base */,
  2816. C42AEDE52B0371810045EF66 /* en */,
  2817. C42AEDE72B0371820045EF66 /* zh-Hans */,
  2818. );
  2819. name = ChangeMealCollectionView.xib;
  2820. sourceTree = "<group>";
  2821. };
  2822. C42AEDEA2B03727E0045EF66 /* HomeViewController.xib */ = {
  2823. isa = PBXVariantGroup;
  2824. children = (
  2825. C42AEDE92B03727E0045EF66 /* Base */,
  2826. C42AEDEC2B0372830045EF66 /* en */,
  2827. C42AEDEE2B0372860045EF66 /* zh-Hans */,
  2828. );
  2829. name = HomeViewController.xib;
  2830. sourceTree = "<group>";
  2831. };
  2832. C42AEDF12B0372D70045EF66 /* HomeSecondViewController.xib */ = {
  2833. isa = PBXVariantGroup;
  2834. children = (
  2835. C42AEDF02B0372D70045EF66 /* Base */,
  2836. C42AEDF32B0372D80045EF66 /* en */,
  2837. C42AEDF52B0372D90045EF66 /* zh-Hans */,
  2838. );
  2839. name = HomeSecondViewController.xib;
  2840. sourceTree = "<group>";
  2841. };
  2842. C42AEDFA2B03731E0045EF66 /* HomeFoodItem.xib */ = {
  2843. isa = PBXVariantGroup;
  2844. children = (
  2845. C42AEDF92B03731E0045EF66 /* Base */,
  2846. C42AEDFC2B0373200045EF66 /* en */,
  2847. C42AEDFE2B0373210045EF66 /* zh-Hans */,
  2848. );
  2849. name = HomeFoodItem.xib;
  2850. sourceTree = "<group>";
  2851. };
  2852. C42AEE012B03737D0045EF66 /* EverybodyLoveItem.xib */ = {
  2853. isa = PBXVariantGroup;
  2854. children = (
  2855. C42AEE002B03737D0045EF66 /* Base */,
  2856. C42AEE032B03737E0045EF66 /* en */,
  2857. C42AEE052B0373800045EF66 /* zh-Hans */,
  2858. );
  2859. name = EverybodyLoveItem.xib;
  2860. sourceTree = "<group>";
  2861. };
  2862. C42AEE082B0374A30045EF66 /* SalesmanFirstShowView.xib */ = {
  2863. isa = PBXVariantGroup;
  2864. children = (
  2865. C42AEE072B0374A30045EF66 /* Base */,
  2866. C42AEE0A2B0374A40045EF66 /* en */,
  2867. C42AEE0C2B0374A50045EF66 /* zh-Hans */,
  2868. );
  2869. name = SalesmanFirstShowView.xib;
  2870. sourceTree = "<group>";
  2871. };
  2872. C42AEE0F2B0376F70045EF66 /* AddresViewCell.xib */ = {
  2873. isa = PBXVariantGroup;
  2874. children = (
  2875. C42AEE0E2B0376F70045EF66 /* Base */,
  2876. C42AEE112B0376F90045EF66 /* en */,
  2877. C42AEE132B0376FB0045EF66 /* zh-Hans */,
  2878. );
  2879. name = AddresViewCell.xib;
  2880. sourceTree = "<group>";
  2881. };
  2882. C42AEE162B03786A0045EF66 /* PersonalInformationVC.xib */ = {
  2883. isa = PBXVariantGroup;
  2884. children = (
  2885. C42AEE152B03786A0045EF66 /* Base */,
  2886. C42AEE182B03786B0045EF66 /* en */,
  2887. C42AEE1A2B03786C0045EF66 /* zh-Hans */,
  2888. );
  2889. name = PersonalInformationVC.xib;
  2890. sourceTree = "<group>";
  2891. };
  2892. C42AEE1D2B037AED0045EF66 /* UnsubscribeViewController.xib */ = {
  2893. isa = PBXVariantGroup;
  2894. children = (
  2895. C42AEE1C2B037AED0045EF66 /* Base */,
  2896. C42AEE1F2B037AEE0045EF66 /* en */,
  2897. C42AEE212B037AEF0045EF66 /* zh-Hans */,
  2898. );
  2899. name = UnsubscribeViewController.xib;
  2900. sourceTree = "<group>";
  2901. };
  2902. C42AEE242B037BD40045EF66 /* AddEvaluateCell.xib */ = {
  2903. isa = PBXVariantGroup;
  2904. children = (
  2905. C42AEE232B037BD40045EF66 /* Base */,
  2906. C42AEE262B037BD50045EF66 /* en */,
  2907. C42AEE282B037BD60045EF66 /* zh-Hans */,
  2908. );
  2909. name = AddEvaluateCell.xib;
  2910. sourceTree = "<group>";
  2911. };
  2912. C438E3CF2AF7C54600F671AE /* OrderListCell.xib */ = {
  2913. isa = PBXVariantGroup;
  2914. children = (
  2915. C438E3CE2AF7C54600F671AE /* Base */,
  2916. C438E3D12AF7C54800F671AE /* en */,
  2917. C438E3D32AF7C54800F671AE /* zh-Hans */,
  2918. );
  2919. name = OrderListCell.xib;
  2920. sourceTree = "<group>";
  2921. };
  2922. C438E3D62AF7E80300F671AE /* OrderManagerVC.xib */ = {
  2923. isa = PBXVariantGroup;
  2924. children = (
  2925. C438E3D52AF7E80300F671AE /* Base */,
  2926. C438E3D72AF7E80500F671AE /* en */,
  2927. C438E3D82AF7E80700F671AE /* zh-Hans */,
  2928. );
  2929. name = OrderManagerVC.xib;
  2930. sourceTree = "<group>";
  2931. };
  2932. C44301FE2AF5E1860098C854 /* OrderAddressCell.xib */ = {
  2933. isa = PBXVariantGroup;
  2934. children = (
  2935. C44301FD2AF5E1860098C854 /* Base */,
  2936. C44302002AF5E1880098C854 /* en */,
  2937. C44302022AF5E1880098C854 /* zh-Hans */,
  2938. );
  2939. name = OrderAddressCell.xib;
  2940. sourceTree = "<group>";
  2941. };
  2942. C44302172AF5F5370098C854 /* selectAddressView.xib */ = {
  2943. isa = PBXVariantGroup;
  2944. children = (
  2945. C44302162AF5F5370098C854 /* Base */,
  2946. C44302192AF5F5460098C854 /* en */,
  2947. C443021B2AF5F5480098C854 /* zh-Hans */,
  2948. );
  2949. name = selectAddressView.xib;
  2950. sourceTree = "<group>";
  2951. };
  2952. C44302262AF6073A0098C854 /* PayMentSelectView.xib */ = {
  2953. isa = PBXVariantGroup;
  2954. children = (
  2955. C44302252AF6073A0098C854 /* Base */,
  2956. C44302282AF6073C0098C854 /* en */,
  2957. C443022A2AF6073C0098C854 /* zh-Hans */,
  2958. );
  2959. name = PayMentSelectView.xib;
  2960. sourceTree = "<group>";
  2961. };
  2962. C443023C2AF61A2A0098C854 /* UserPayMentSheet.xib */ = {
  2963. isa = PBXVariantGroup;
  2964. children = (
  2965. C443023B2AF61A2A0098C854 /* Base */,
  2966. C443023E2AF61A2D0098C854 /* en */,
  2967. C44302402AF61A300098C854 /* zh-Hans */,
  2968. );
  2969. name = UserPayMentSheet.xib;
  2970. sourceTree = "<group>";
  2971. };
  2972. C448CD0D2AFE4E8700B3B068 /* AddEvaluateViewController.xib */ = {
  2973. isa = PBXVariantGroup;
  2974. children = (
  2975. C448CD0C2AFE4E8700B3B068 /* Base */,
  2976. C448CD0F2AFE4E9500B3B068 /* zh-Hans */,
  2977. C448CD102AFE4E9800B3B068 /* en */,
  2978. );
  2979. name = AddEvaluateViewController.xib;
  2980. sourceTree = "<group>";
  2981. };
  2982. C448CD1E2AFE8AAF00B3B068 /* MealHeadView.xib */ = {
  2983. isa = PBXVariantGroup;
  2984. children = (
  2985. C448CD1D2AFE8AAF00B3B068 /* Base */,
  2986. C448CD202AFE8AB000B3B068 /* en */,
  2987. C448CD222AFE8AB200B3B068 /* zh-Hans */,
  2988. );
  2989. name = MealHeadView.xib;
  2990. sourceTree = "<group>";
  2991. };
  2992. C44CFA572AFB5308000D592D /* OrderDetailFootView.xib */ = {
  2993. isa = PBXVariantGroup;
  2994. children = (
  2995. C44CFA562AFB5308000D592D /* Base */,
  2996. C44CFA592AFB530F000D592D /* en */,
  2997. C44CFA5B2AFB530F000D592D /* zh-Hans */,
  2998. );
  2999. name = OrderDetailFootView.xib;
  3000. sourceTree = "<group>";
  3001. };
  3002. C44CFA692AFB81FF000D592D /* BrokerageCell.xib */ = {
  3003. isa = PBXVariantGroup;
  3004. children = (
  3005. C44CFA682AFB81FF000D592D /* Base */,
  3006. C44CFA6B2AFB8204000D592D /* en */,
  3007. C44CFA6D2AFB8205000D592D /* zh-Hans */,
  3008. );
  3009. name = BrokerageCell.xib;
  3010. sourceTree = "<group>";
  3011. };
  3012. C44CFA742AFB8AB7000D592D /* BrokerageSheetView.xib */ = {
  3013. isa = PBXVariantGroup;
  3014. children = (
  3015. C44CFA732AFB8AB7000D592D /* Base */,
  3016. C44CFA762AFB8ABA000D592D /* en */,
  3017. C44CFA782AFB8ABB000D592D /* zh-Hans */,
  3018. );
  3019. name = BrokerageSheetView.xib;
  3020. sourceTree = "<group>";
  3021. };
  3022. C454117D2B00DF780096F60E /* BalanceTabHeadView.xib */ = {
  3023. isa = PBXVariantGroup;
  3024. children = (
  3025. C454117C2B00DF780096F60E /* Base */,
  3026. C454117F2B00DF790096F60E /* en */,
  3027. C45411812B00DF7B0096F60E /* zh-Hans */,
  3028. );
  3029. name = BalanceTabHeadView.xib;
  3030. sourceTree = "<group>";
  3031. };
  3032. C4577CB52AEA8E5C004D9439 /* MealCollectionView.xib */ = {
  3033. isa = PBXVariantGroup;
  3034. children = (
  3035. C4577CB42AEA8E5C004D9439 /* Base */,
  3036. C4577CB72AEA8E5E004D9439 /* en */,
  3037. C4577CB92AEA8E5E004D9439 /* zh-Hans */,
  3038. );
  3039. name = MealCollectionView.xib;
  3040. sourceTree = "<group>";
  3041. };
  3042. C4577CD92AEBC19F004D9439 /* NeedKonwView.xib */ = {
  3043. isa = PBXVariantGroup;
  3044. children = (
  3045. C4577CD82AEBC19F004D9439 /* Base */,
  3046. C4577CDB2AEBC1A1004D9439 /* en */,
  3047. C4577CDD2AEBC1A1004D9439 /* zh-Hans */,
  3048. );
  3049. name = NeedKonwView.xib;
  3050. sourceTree = "<group>";
  3051. };
  3052. C45C8A1B2AD18D41009D6C3A /* timeManageSheetView.xib */ = {
  3053. isa = PBXVariantGroup;
  3054. children = (
  3055. C45C8A1A2AD18D41009D6C3A /* Base */,
  3056. C45C8A1D2AD18D45009D6C3A /* en */,
  3057. C45C8A1F2AD18D45009D6C3A /* zh-Hans */,
  3058. );
  3059. name = timeManageSheetView.xib;
  3060. sourceTree = "<group>";
  3061. };
  3062. C45E1ECA2AF9E412005C9210 /* MyViewController.xib */ = {
  3063. isa = PBXVariantGroup;
  3064. children = (
  3065. C45E1EC92AF9E412005C9210 /* Base */,
  3066. C45E1ECC2AF9E415005C9210 /* en */,
  3067. C45E1ECE2AF9E415005C9210 /* zh-Hans */,
  3068. );
  3069. name = MyViewController.xib;
  3070. sourceTree = "<group>";
  3071. };
  3072. C46731602AFA13FF00658C58 /* UnsubscribeDetailVC.xib */ = {
  3073. isa = PBXVariantGroup;
  3074. children = (
  3075. C467315F2AFA13FF00658C58 /* Base */,
  3076. C46731622AFA140000658C58 /* en */,
  3077. C46731642AFA140100658C58 /* zh-Hans */,
  3078. );
  3079. name = UnsubscribeDetailVC.xib;
  3080. sourceTree = "<group>";
  3081. };
  3082. C46731702AFA569900658C58 /* OderDetailHeadView.xib */ = {
  3083. isa = PBXVariantGroup;
  3084. children = (
  3085. C467316F2AFA569900658C58 /* Base */,
  3086. C46731722AFA569B00658C58 /* en */,
  3087. C46731742AFA569C00658C58 /* zh-Hans */,
  3088. );
  3089. name = OderDetailHeadView.xib;
  3090. sourceTree = "<group>";
  3091. };
  3092. C470B57A2AEFBD07009046B4 /* AddRemarkView.xib */ = {
  3093. isa = PBXVariantGroup;
  3094. children = (
  3095. C470B5792AEFBD07009046B4 /* Base */,
  3096. C470B57C2AEFBD09009046B4 /* en */,
  3097. C470B57E2AEFBD0A009046B4 /* zh-Hans */,
  3098. );
  3099. name = AddRemarkView.xib;
  3100. sourceTree = "<group>";
  3101. };
  3102. C470B5952AF0B05B009046B4 /* DeliveryTimeSetView.xib */ = {
  3103. isa = PBXVariantGroup;
  3104. children = (
  3105. C470B5942AF0B05B009046B4 /* Base */,
  3106. C470B5972AF0B05D009046B4 /* en */,
  3107. C470B5992AF0B05D009046B4 /* zh-Hans */,
  3108. );
  3109. name = DeliveryTimeSetView.xib;
  3110. sourceTree = "<group>";
  3111. };
  3112. C48363B42AC3D96400E3FA1B /* Main.storyboard */ = {
  3113. isa = PBXVariantGroup;
  3114. children = (
  3115. C48363B52AC3D96400E3FA1B /* Base */,
  3116. C4836A362AC417BB00E3FA1B /* zh-Hans */,
  3117. );
  3118. name = Main.storyboard;
  3119. sourceTree = "<group>";
  3120. };
  3121. C4836A472AC41C1100E3FA1B /* Localizable.strings */ = {
  3122. isa = PBXVariantGroup;
  3123. children = (
  3124. C4836A462AC41C1100E3FA1B /* en */,
  3125. C4836A482AC41C1200E3FA1B /* zh-Hans */,
  3126. );
  3127. name = Localizable.strings;
  3128. sourceTree = "<group>";
  3129. };
  3130. C4836B712AC72B0F00E3FA1B /* EverybodyLoveView.xib */ = {
  3131. isa = PBXVariantGroup;
  3132. children = (
  3133. C4836B702AC72B0F00E3FA1B /* Base */,
  3134. C4836B732AC72B1400E3FA1B /* en */,
  3135. C4836B752AC72B1400E3FA1B /* zh-Hans */,
  3136. );
  3137. name = EverybodyLoveView.xib;
  3138. sourceTree = "<group>";
  3139. };
  3140. C4836B7C2AC7308400E3FA1B /* HomeDateView.xib */ = {
  3141. isa = PBXVariantGroup;
  3142. children = (
  3143. C4836B7B2AC7308400E3FA1B /* Base */,
  3144. C4836B7E2AC7308800E3FA1B /* en */,
  3145. C4836B802AC7308800E3FA1B /* zh-Hans */,
  3146. );
  3147. name = HomeDateView.xib;
  3148. sourceTree = "<group>";
  3149. };
  3150. C4836C352AC8A26A00E3FA1B /* SearchView.xib */ = {
  3151. isa = PBXVariantGroup;
  3152. children = (
  3153. C4836C342AC8A26A00E3FA1B /* Base */,
  3154. C4836C372AC8A26D00E3FA1B /* en */,
  3155. C4836C392AC8A26D00E3FA1B /* zh-Hans */,
  3156. );
  3157. name = SearchView.xib;
  3158. sourceTree = "<group>";
  3159. };
  3160. C4B082BA2AF54CA500CD146E /* CheckOrderHeadView.xib */ = {
  3161. isa = PBXVariantGroup;
  3162. children = (
  3163. C4B082B92AF54CA500CD146E /* Base */,
  3164. C4B082BC2AF54CAC00CD146E /* en */,
  3165. C4B082BE2AF54CB300CD146E /* zh-Hans */,
  3166. );
  3167. name = CheckOrderHeadView.xib;
  3168. sourceTree = "<group>";
  3169. };
  3170. C4C51C752AF0FF4100F4636E /* AddressManagerVC.xib */ = {
  3171. isa = PBXVariantGroup;
  3172. children = (
  3173. C4C51C742AF0FF4100F4636E /* Base */,
  3174. C4C51C772AF0FF4200F4636E /* en */,
  3175. C4C51C792AF0FF4300F4636E /* zh-Hans */,
  3176. );
  3177. name = AddressManagerVC.xib;
  3178. sourceTree = "<group>";
  3179. };
  3180. C4C51C7C2AF0FFBE00F4636E /* AddressEditorVC.xib */ = {
  3181. isa = PBXVariantGroup;
  3182. children = (
  3183. C4C51C7B2AF0FFBE00F4636E /* Base */,
  3184. C4C51C7E2AF0FFBF00F4636E /* en */,
  3185. C4C51C802AF0FFC000F4636E /* zh-Hans */,
  3186. );
  3187. name = AddressEditorVC.xib;
  3188. sourceTree = "<group>";
  3189. };
  3190. C4C6D83C2AFC100400E1AFB5 /* phoneCallView.xib */ = {
  3191. isa = PBXVariantGroup;
  3192. children = (
  3193. C4C6D83B2AFC100400E1AFB5 /* Base */,
  3194. C4C6D83E2AFC100600E1AFB5 /* en */,
  3195. C4C6D8402AFC100600E1AFB5 /* zh-Hans */,
  3196. );
  3197. name = phoneCallView.xib;
  3198. sourceTree = "<group>";
  3199. };
  3200. C4CF5F4C2ACD468000B6B2D9 /* StartView.xib */ = {
  3201. isa = PBXVariantGroup;
  3202. children = (
  3203. C4CF5F4B2ACD468000B6B2D9 /* Base */,
  3204. C4CF5F4E2ACD468400B6B2D9 /* en */,
  3205. C4CF5F502ACD468500B6B2D9 /* zh-Hans */,
  3206. );
  3207. name = StartView.xib;
  3208. sourceTree = "<group>";
  3209. };
  3210. /* End PBXVariantGroup section */
  3211. /* Begin XCBuildConfiguration section */
  3212. C48363D62AC3D96500E3FA1B /* Debug */ = {
  3213. isa = XCBuildConfiguration;
  3214. buildSettings = {
  3215. ALWAYS_SEARCH_USER_PATHS = NO;
  3216. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3217. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3218. CLANG_ANALYZER_NONNULL = YES;
  3219. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3220. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3221. CLANG_ENABLE_MODULES = YES;
  3222. CLANG_ENABLE_OBJC_ARC = YES;
  3223. CLANG_ENABLE_OBJC_WEAK = YES;
  3224. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3225. CLANG_WARN_BOOL_CONVERSION = YES;
  3226. CLANG_WARN_COMMA = YES;
  3227. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3228. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3229. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3230. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3231. CLANG_WARN_EMPTY_BODY = YES;
  3232. CLANG_WARN_ENUM_CONVERSION = YES;
  3233. CLANG_WARN_INFINITE_RECURSION = YES;
  3234. CLANG_WARN_INT_CONVERSION = YES;
  3235. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3236. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3237. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3238. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3239. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3240. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3241. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3242. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3243. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3244. CLANG_WARN_UNREACHABLE_CODE = YES;
  3245. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3246. COPY_PHASE_STRIP = NO;
  3247. DEBUG_INFORMATION_FORMAT = dwarf;
  3248. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3249. ENABLE_TESTABILITY = YES;
  3250. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  3251. GCC_C_LANGUAGE_STANDARD = gnu17;
  3252. GCC_DYNAMIC_NO_PIC = NO;
  3253. GCC_NO_COMMON_BLOCKS = YES;
  3254. GCC_OPTIMIZATION_LEVEL = 0;
  3255. GCC_PREPROCESSOR_DEFINITIONS = (
  3256. "DEBUG=1",
  3257. "$(inherited)",
  3258. );
  3259. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3260. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3261. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3262. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3263. GCC_WARN_UNUSED_FUNCTION = YES;
  3264. GCC_WARN_UNUSED_VARIABLE = YES;
  3265. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  3266. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3267. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3268. MTL_FAST_MATH = YES;
  3269. ONLY_ACTIVE_ARCH = YES;
  3270. SDKROOT = iphoneos;
  3271. SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
  3272. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3273. };
  3274. name = Debug;
  3275. };
  3276. C48363D72AC3D96500E3FA1B /* Release */ = {
  3277. isa = XCBuildConfiguration;
  3278. buildSettings = {
  3279. ALWAYS_SEARCH_USER_PATHS = NO;
  3280. ASSETCATALOG_COMPILER_GENERATE_SWIFT_ASSET_SYMBOL_EXTENSIONS = YES;
  3281. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3282. CLANG_ANALYZER_NONNULL = YES;
  3283. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3284. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  3285. CLANG_ENABLE_MODULES = YES;
  3286. CLANG_ENABLE_OBJC_ARC = YES;
  3287. CLANG_ENABLE_OBJC_WEAK = YES;
  3288. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3289. CLANG_WARN_BOOL_CONVERSION = YES;
  3290. CLANG_WARN_COMMA = YES;
  3291. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3292. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3293. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3294. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3295. CLANG_WARN_EMPTY_BODY = YES;
  3296. CLANG_WARN_ENUM_CONVERSION = YES;
  3297. CLANG_WARN_INFINITE_RECURSION = YES;
  3298. CLANG_WARN_INT_CONVERSION = YES;
  3299. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3300. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3301. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3302. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3303. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3304. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3305. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3306. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3307. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3308. CLANG_WARN_UNREACHABLE_CODE = YES;
  3309. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3310. COPY_PHASE_STRIP = NO;
  3311. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3312. ENABLE_NS_ASSERTIONS = NO;
  3313. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3314. ENABLE_USER_SCRIPT_SANDBOXING = NO;
  3315. GCC_C_LANGUAGE_STANDARD = gnu17;
  3316. GCC_NO_COMMON_BLOCKS = YES;
  3317. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3318. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3319. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3320. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3321. GCC_WARN_UNUSED_FUNCTION = YES;
  3322. GCC_WARN_UNUSED_VARIABLE = YES;
  3323. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  3324. LOCALIZATION_PREFERS_STRING_CATALOGS = YES;
  3325. MTL_ENABLE_DEBUG_INFO = NO;
  3326. MTL_FAST_MATH = YES;
  3327. SDKROOT = iphoneos;
  3328. SWIFT_COMPILATION_MODE = wholemodule;
  3329. VALIDATE_PRODUCT = YES;
  3330. };
  3331. name = Release;
  3332. };
  3333. C48363D92AC3D96500E3FA1B /* Debug */ = {
  3334. isa = XCBuildConfiguration;
  3335. baseConfigurationReference = D5A42DEC0153678020E581CB /* Pods-ADHTuanCan.debug.xcconfig */;
  3336. buildSettings = {
  3337. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3338. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3339. CLANG_ENABLE_MODULES = YES;
  3340. CODE_SIGN_STYLE = Automatic;
  3341. CURRENT_PROJECT_VERSION = 1;
  3342. DEVELOPMENT_TEAM = 2BWZ68DEC3;
  3343. GENERATE_INFOPLIST_FILE = YES;
  3344. INFOPLIST_FILE = ADHTuanCan/Info.plist;
  3345. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3346. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  3347. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  3348. INFOPLIST_KEY_UIStatusBarStyle = "";
  3349. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  3350. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  3351. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  3352. LD_RUNPATH_SEARCH_PATHS = (
  3353. "$(inherited)",
  3354. "@executable_path/Frameworks",
  3355. );
  3356. MARKETING_VERSION = 1.0;
  3357. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCan;
  3358. PRODUCT_NAME = "$(TARGET_NAME)";
  3359. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  3360. SUPPORTS_MACCATALYST = NO;
  3361. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  3362. SWIFT_EMIT_LOC_STRINGS = YES;
  3363. SWIFT_OBJC_BRIDGING_HEADER = "ADHTuanCan/Class/Config/ADHTuanCan-Bridging-Header.h";
  3364. SWIFT_OPTIMIZATION_LEVEL = "-Onone";
  3365. SWIFT_VERSION = 5.0;
  3366. TARGETED_DEVICE_FAMILY = 1;
  3367. };
  3368. name = Debug;
  3369. };
  3370. C48363DA2AC3D96500E3FA1B /* Release */ = {
  3371. isa = XCBuildConfiguration;
  3372. baseConfigurationReference = A392503CF9C8A459BF93B985 /* Pods-ADHTuanCan.release.xcconfig */;
  3373. buildSettings = {
  3374. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3375. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3376. CLANG_ENABLE_MODULES = YES;
  3377. CODE_SIGN_STYLE = Automatic;
  3378. CURRENT_PROJECT_VERSION = 1;
  3379. DEVELOPMENT_TEAM = 2BWZ68DEC3;
  3380. GENERATE_INFOPLIST_FILE = YES;
  3381. INFOPLIST_FILE = ADHTuanCan/Info.plist;
  3382. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3383. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  3384. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  3385. INFOPLIST_KEY_UIStatusBarStyle = "";
  3386. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  3387. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown";
  3388. IPHONEOS_DEPLOYMENT_TARGET = 13.0;
  3389. LD_RUNPATH_SEARCH_PATHS = (
  3390. "$(inherited)",
  3391. "@executable_path/Frameworks",
  3392. );
  3393. MARKETING_VERSION = 1.0;
  3394. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCan;
  3395. PRODUCT_NAME = "$(TARGET_NAME)";
  3396. SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
  3397. SUPPORTS_MACCATALYST = NO;
  3398. SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO;
  3399. SWIFT_EMIT_LOC_STRINGS = YES;
  3400. SWIFT_OBJC_BRIDGING_HEADER = "ADHTuanCan/Class/Config/ADHTuanCan-Bridging-Header.h";
  3401. SWIFT_VERSION = 5.0;
  3402. TARGETED_DEVICE_FAMILY = 1;
  3403. };
  3404. name = Release;
  3405. };
  3406. C48363DC2AC3D96500E3FA1B /* Debug */ = {
  3407. isa = XCBuildConfiguration;
  3408. buildSettings = {
  3409. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3410. BUNDLE_LOADER = "$(TEST_HOST)";
  3411. CODE_SIGN_STYLE = Automatic;
  3412. CURRENT_PROJECT_VERSION = 1;
  3413. GENERATE_INFOPLIST_FILE = YES;
  3414. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  3415. MARKETING_VERSION = 1.0;
  3416. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCanTests;
  3417. PRODUCT_NAME = "$(TARGET_NAME)";
  3418. SWIFT_EMIT_LOC_STRINGS = NO;
  3419. SWIFT_VERSION = 5.0;
  3420. TARGETED_DEVICE_FAMILY = "1,2";
  3421. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ADHTuanCan.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ADHTuanCan";
  3422. };
  3423. name = Debug;
  3424. };
  3425. C48363DD2AC3D96500E3FA1B /* Release */ = {
  3426. isa = XCBuildConfiguration;
  3427. buildSettings = {
  3428. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3429. BUNDLE_LOADER = "$(TEST_HOST)";
  3430. CODE_SIGN_STYLE = Automatic;
  3431. CURRENT_PROJECT_VERSION = 1;
  3432. GENERATE_INFOPLIST_FILE = YES;
  3433. IPHONEOS_DEPLOYMENT_TARGET = 17.0;
  3434. MARKETING_VERSION = 1.0;
  3435. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCanTests;
  3436. PRODUCT_NAME = "$(TARGET_NAME)";
  3437. SWIFT_EMIT_LOC_STRINGS = NO;
  3438. SWIFT_VERSION = 5.0;
  3439. TARGETED_DEVICE_FAMILY = "1,2";
  3440. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/ADHTuanCan.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/ADHTuanCan";
  3441. };
  3442. name = Release;
  3443. };
  3444. C48363DF2AC3D96500E3FA1B /* Debug */ = {
  3445. isa = XCBuildConfiguration;
  3446. buildSettings = {
  3447. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3448. CODE_SIGN_STYLE = Automatic;
  3449. CURRENT_PROJECT_VERSION = 1;
  3450. GENERATE_INFOPLIST_FILE = YES;
  3451. MARKETING_VERSION = 1.0;
  3452. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCanUITests;
  3453. PRODUCT_NAME = "$(TARGET_NAME)";
  3454. SWIFT_EMIT_LOC_STRINGS = NO;
  3455. SWIFT_VERSION = 5.0;
  3456. TARGETED_DEVICE_FAMILY = "1,2";
  3457. TEST_TARGET_NAME = ADHTuanCan;
  3458. };
  3459. name = Debug;
  3460. };
  3461. C48363E02AC3D96500E3FA1B /* Release */ = {
  3462. isa = XCBuildConfiguration;
  3463. buildSettings = {
  3464. ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
  3465. CODE_SIGN_STYLE = Automatic;
  3466. CURRENT_PROJECT_VERSION = 1;
  3467. GENERATE_INFOPLIST_FILE = YES;
  3468. MARKETING_VERSION = 1.0;
  3469. PRODUCT_BUNDLE_IDENTIFIER = TuanCanId.ADHTuanCanUITests;
  3470. PRODUCT_NAME = "$(TARGET_NAME)";
  3471. SWIFT_EMIT_LOC_STRINGS = NO;
  3472. SWIFT_VERSION = 5.0;
  3473. TARGETED_DEVICE_FAMILY = "1,2";
  3474. TEST_TARGET_NAME = ADHTuanCan;
  3475. };
  3476. name = Release;
  3477. };
  3478. /* End XCBuildConfiguration section */
  3479. /* Begin XCConfigurationList section */
  3480. C48363A62AC3D96400E3FA1B /* Build configuration list for PBXProject "ADHTuanCan" */ = {
  3481. isa = XCConfigurationList;
  3482. buildConfigurations = (
  3483. C48363D62AC3D96500E3FA1B /* Debug */,
  3484. C48363D72AC3D96500E3FA1B /* Release */,
  3485. );
  3486. defaultConfigurationIsVisible = 0;
  3487. defaultConfigurationName = Release;
  3488. };
  3489. C48363D82AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCan" */ = {
  3490. isa = XCConfigurationList;
  3491. buildConfigurations = (
  3492. C48363D92AC3D96500E3FA1B /* Debug */,
  3493. C48363DA2AC3D96500E3FA1B /* Release */,
  3494. );
  3495. defaultConfigurationIsVisible = 0;
  3496. defaultConfigurationName = Release;
  3497. };
  3498. C48363DB2AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCanTests" */ = {
  3499. isa = XCConfigurationList;
  3500. buildConfigurations = (
  3501. C48363DC2AC3D96500E3FA1B /* Debug */,
  3502. C48363DD2AC3D96500E3FA1B /* Release */,
  3503. );
  3504. defaultConfigurationIsVisible = 0;
  3505. defaultConfigurationName = Release;
  3506. };
  3507. C48363DE2AC3D96500E3FA1B /* Build configuration list for PBXNativeTarget "ADHTuanCanUITests" */ = {
  3508. isa = XCConfigurationList;
  3509. buildConfigurations = (
  3510. C48363DF2AC3D96500E3FA1B /* Debug */,
  3511. C48363E02AC3D96500E3FA1B /* Release */,
  3512. );
  3513. defaultConfigurationIsVisible = 0;
  3514. defaultConfigurationName = Release;
  3515. };
  3516. /* End XCConfigurationList section */
  3517. /* Begin XCVersionGroup section */
  3518. C48363B72AC3D96400E3FA1B /* ADHTuanCan.xcdatamodeld */ = {
  3519. isa = XCVersionGroup;
  3520. children = (
  3521. C48363B82AC3D96400E3FA1B /* ADHTuanCan.xcdatamodel */,
  3522. );
  3523. currentVersion = C48363B82AC3D96400E3FA1B /* ADHTuanCan.xcdatamodel */;
  3524. path = ADHTuanCan.xcdatamodeld;
  3525. sourceTree = "<group>";
  3526. versionGroupType = wrapper.xcdatamodel;
  3527. };
  3528. /* End XCVersionGroup section */
  3529. };
  3530. rootObject = C48363A32AC3D96400E3FA1B /* Project object */;
  3531. }