project.pbxproj 286 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 55;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2723B5A227F1578300E0B90B /* CreateFansGroupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */; };
  10. 2723B5A327F1578300E0B90B /* KSChatListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */; };
  11. 2723B5A427F1578300E0B90B /* KSChatConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */; };
  12. 2723B5A527F1578300E0B90B /* ChatAddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */; };
  13. 2723B5BA27F157B100E0B90B /* ChatAddressHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */; };
  14. 2723B5BB27F157B100E0B90B /* ChatAddressBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */; };
  15. 2723B5BC27F157B100E0B90B /* GroupCreateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A827F157A300E0B90B /* GroupCreateView.m */; };
  16. 2723B5BD27F157B100E0B90B /* KSChatListSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */; };
  17. 2723B5BE27F157B100E0B90B /* ChatNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AA27F157A500E0B90B /* ChatNavView.m */; };
  18. 2723B5BF27F157B100E0B90B /* GroupCreateView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */; };
  19. 2723B5C027F157B100E0B90B /* ChatAddressHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */; };
  20. 2723B5C127F157B100E0B90B /* ContractListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AF27F157AA00E0B90B /* ContractListCell.m */; };
  21. 2723B5C227F157B100E0B90B /* GroupListViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */; };
  22. 2723B5C327F157B100E0B90B /* ChatNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B227F157AD00E0B90B /* ChatNavView.xib */; };
  23. 2723B5C427F157B100E0B90B /* KSChatListSearchView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */; };
  24. 2723B5C527F157B100E0B90B /* ContractListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B727F157B000E0B90B /* ContractListCell.xib */; };
  25. 2723B5C627F157B100E0B90B /* GroupListViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5B927F157B100E0B90B /* GroupListViewCell.m */; };
  26. 2723B5CD27F157BE00E0B90B /* GroupListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5C827F157B900E0B90B /* GroupListModel.m */; };
  27. 2723B5CE27F157BE00E0B90B /* KSRCloudMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */; };
  28. 2723B5CF27F157BE00E0B90B /* GroupMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */; };
  29. 2723B61827F157D500E0B90B /* KSSearchHistoryMessageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */; };
  30. 2723B61927F157D500E0B90B /* KSSearchResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */; };
  31. 2723B61A27F157D500E0B90B /* KSSearchResultViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */; };
  32. 2723B61B27F157D500E0B90B /* KSSearchRCLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */; };
  33. 2723B61C27F157D500E0B90B /* KSRCSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */; };
  34. 2723B61D27F157D500E0B90B /* GroupNoticeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */; };
  35. 2723B61E27F157D500E0B90B /* GroupNoticeEditController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */; };
  36. 2723B61F27F157D500E0B90B /* GroupNoticeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */; };
  37. 2723B62027F157D500E0B90B /* GroupNoticeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */; };
  38. 2723B62127F157D500E0B90B /* NoticeEditBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */; };
  39. 2723B62227F157D500E0B90B /* LFPopupMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */; };
  40. 2723B62327F157D500E0B90B /* LFPopupMenuDefaultConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */; };
  41. 2723B62427F157D500E0B90B /* NoticeEditBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */; };
  42. 2723B62527F157D500E0B90B /* GroupNoticeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */; };
  43. 2723B62627F157D500E0B90B /* GroupApplyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */; };
  44. 2723B62727F157D500E0B90B /* GroupMemberViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */; };
  45. 2723B62827F157D500E0B90B /* KSSelectConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */; };
  46. 2723B62927F157D500E0B90B /* KSChatComplainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F927F157D500E0B90B /* KSChatComplainController.m */; };
  47. 2723B62A27F157D500E0B90B /* GroupSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */; };
  48. 2723B62B27F157D500E0B90B /* ApplyMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60027F157D500E0B90B /* ApplyMemberModel.m */; };
  49. 2723B62C27F157D500E0B90B /* ApplyBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60427F157D500E0B90B /* ApplyBottomView.m */; };
  50. 2723B62D27F157D500E0B90B /* GroupApplyMemberCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */; };
  51. 2723B62E27F157D500E0B90B /* GroupApplyChooseAllCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */; };
  52. 2723B62F27F157D500E0B90B /* ChatComplainBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */; };
  53. 2723B63027F157D500E0B90B /* GroupApplyChooseAllCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */; };
  54. 2723B63127F157D500E0B90B /* GroupSettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */; };
  55. 2723B63227F157D500E0B90B /* GroupSettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */; };
  56. 2723B63327F157D500E0B90B /* ChatComplainBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */; };
  57. 2723B63427F157D500E0B90B /* GroupApplyMemberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */; };
  58. 2723B63527F157D500E0B90B /* GroupApplyChooseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */; };
  59. 2723B63627F157D500E0B90B /* GroupMemberListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61327F157D500E0B90B /* GroupMemberListCell.m */; };
  60. 2723B63727F157D500E0B90B /* ApplyBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61427F157D500E0B90B /* ApplyBottomView.xib */; };
  61. 2723B63827F157D500E0B90B /* GroupApplyChooseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */; };
  62. 2723B63927F157D500E0B90B /* GroupMemberListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */; };
  63. 2723B63C27F159BA00E0B90B /* KSBaseTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */; };
  64. 2723B64427F15B5900E0B90B /* SCIndexViewConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */; };
  65. 2723B64527F15B5900E0B90B /* SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64027F15B5800E0B90B /* SCIndexView.m */; };
  66. 2723B64627F15B5900E0B90B /* UITableView+SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */; };
  67. 2723B64927F15BDC00E0B90B /* KSJXBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */; };
  68. 2723B66127F15CFB00E0B90B /* SettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */; };
  69. 2723B66227F15CFC00E0B90B /* FeedbackBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */; };
  70. 2723B66327F15CFC00E0B90B /* ModifyNameBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */; };
  71. 2723B66427F15CFC00E0B90B /* VeriCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64E27F15CF800E0B90B /* VeriCheckView.m */; };
  72. 2723B66527F15CFC00E0B90B /* ModifyBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */; };
  73. 2723B66627F15CFC00E0B90B /* AboutUsBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */; };
  74. 2723B66727F15CFC00E0B90B /* ModifyBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65427F15CF900E0B90B /* ModifyBodyView.m */; };
  75. 2723B66827F15CFC00E0B90B /* FeedbackBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */; };
  76. 2723B66927F15CFC00E0B90B /* PhoneChangeBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */; };
  77. 2723B66A27F15CFC00E0B90B /* PhoneChangeBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */; };
  78. 2723B66B27F15CFC00E0B90B /* PhoneCheckBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */; };
  79. 2723B66C27F15CFC00E0B90B /* SettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */; };
  80. 2723B66D27F15CFC00E0B90B /* ModifyNameBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */; };
  81. 2723B66E27F15CFC00E0B90B /* PhoneCheckBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */; };
  82. 2723B66F27F15CFC00E0B90B /* AboutUsBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */; };
  83. 2723B67E27F15D3D00E0B90B /* ModifyPhoneCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */; };
  84. 2723B67F27F15D3D00E0B90B /* AboutUsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67227F15D3300E0B90B /* AboutUsViewController.m */; };
  85. 2723B68027F15D3D00E0B90B /* FeedbackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67327F15D3400E0B90B /* FeedbackViewController.m */; };
  86. 2723B68127F15D3D00E0B90B /* ModifyNameViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */; };
  87. 2723B68227F15D3D00E0B90B /* ModifyPhoneChangeController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */; };
  88. 2723B68327F15D3D00E0B90B /* ModifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67927F15D3B00E0B90B /* ModifyViewController.m */; };
  89. 2723B68427F15D3D00E0B90B /* AddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67B27F15D3C00E0B90B /* AddressViewController.m */; };
  90. 275E8AAA27E18F8800DD3F6E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AA927E18F8800DD3F6E /* AppDelegate.m */; };
  91. 275E8AB027E18F8800DD3F6E /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AAF27E18F8800DD3F6E /* ViewController.m */; };
  92. 275E8AB327E18F8800DD3F6E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB127E18F8800DD3F6E /* Main.storyboard */; };
  93. 275E8AB527E18F8B00DD3F6E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */; };
  94. 275E8AB827E18F8B00DD3F6E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */; };
  95. 275E8ABB27E18F8B00DD3F6E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8ABA27E18F8B00DD3F6E /* main.m */; };
  96. 275E8AC527E18F8C00DD3F6E /* KulexiuForStudentTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */; };
  97. 275E8ACF27E18F8C00DD3F6E /* KulexiuForStudentUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */; };
  98. 275E8AD127E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */; };
  99. 275FA1AD27E734C600CFEA2E /* KSImageAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */; };
  100. 275FA1AE27E734C600CFEA2E /* KSImageAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */; };
  101. 275FA1DA27E7351900CFEA2E /* KSNetworkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */; };
  102. 275FA1DB27E7351900CFEA2E /* UINavigationController+KSNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */; };
  103. 275FA1DC27E7351900CFEA2E /* KSAQRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */; };
  104. 275FA1DD27E7351900CFEA2E /* KSBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B727E7351500CFEA2E /* KSBaseModel.m */; };
  105. 275FA1DE27E7351900CFEA2E /* KSLocalWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */; };
  106. 275FA1DF27E7351900CFEA2E /* RCConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */; };
  107. 275FA1E027E7351900CFEA2E /* RecordCheckManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */; };
  108. 275FA1E127E7351900CFEA2E /* KSTabBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */; };
  109. 275FA1E227E7351900CFEA2E /* KSWebBackButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */; };
  110. 275FA1E327E7351900CFEA2E /* WeakWebViewScriptMessageDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */; };
  111. 275FA1E427E7351900CFEA2E /* KSWebNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C227E7351600CFEA2E /* KSWebNavView.m */; };
  112. 275FA1E527E7351900CFEA2E /* KSAccompanyWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */; };
  113. 275FA1E627E7351900CFEA2E /* KSUpdateAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */; };
  114. 275FA1E727E7351900CFEA2E /* KSWebSocketManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */; };
  115. 275FA1E827E7351900CFEA2E /* CustomNavViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */; };
  116. 275FA1E927E7351900CFEA2E /* KSNetTypeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */; };
  117. 275FA1EA27E7351900CFEA2E /* KSRCIMDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */; };
  118. 275FA1EB27E7351900CFEA2E /* KSBaseWKWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */; };
  119. 275FA1EC27E7351900CFEA2E /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CF27E7351800CFEA2E /* BaseViewController.m */; };
  120. 275FA1ED27E7351900CFEA2E /* KSUpdateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */; };
  121. 275FA1EE27E7351900CFEA2E /* KSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */; };
  122. 275FA1EF27E7351900CFEA2E /* KSUpdateAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */; };
  123. 275FA22B27E7356B00CFEA2E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1F327E7356A00CFEA2E /* HomeViewController.m */; };
  124. 275FA22C27E7356B00CFEA2E /* CourseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */; };
  125. 275FA22D27E7356B00CFEA2E /* ChatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */; };
  126. 275FA22E27E7356B00CFEA2E /* MineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA20627E7356B00CFEA2E /* MineViewController.m */; };
  127. 275FA22F27E7356B00CFEA2E /* ShopMallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */; };
  128. 275FA23027E7356B00CFEA2E /* PasswordLoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */; };
  129. 275FA23127E7356B00CFEA2E /* FirstSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */; };
  130. 275FA23227E7356B00CFEA2E /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21327E7356B00CFEA2E /* LoginViewController.m */; };
  131. 275FA23327E7356B00CFEA2E /* VefiCodeLoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */; };
  132. 275FA23427E7356B00CFEA2E /* UserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21A27E7356B00CFEA2E /* UserInfo.m */; };
  133. 275FA23527E7356B00CFEA2E /* UserInfoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */; };
  134. 275FA23627E7356B00CFEA2E /* LoginBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22027E7356B00CFEA2E /* LoginBodyView.m */; };
  135. 275FA23727E7356B00CFEA2E /* LoginBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */; };
  136. 275FA23827E7356B00CFEA2E /* FirstSettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */; };
  137. 275FA23927E7356B00CFEA2E /* FirstSettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */; };
  138. 275FA23A27E7356B00CFEA2E /* VefiBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */; };
  139. 275FA23B27E7356B00CFEA2E /* PasswordBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */; };
  140. 275FA23C27E7356B00CFEA2E /* VefiBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22927E7356B00CFEA2E /* VefiBodyView.m */; };
  141. 275FA23D27E7356B00CFEA2E /* PasswordBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */; };
  142. 275FA24027E737EE00CFEA2E /* ChooseInsturmentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA23F27E737EE00CFEA2E /* ChooseInsturmentViewController.m */; };
  143. 275FA24327E73DF600CFEA2E /* InstrumentDescView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */; };
  144. 275FA24527E73E0100CFEA2E /* InstrumentDescView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */; };
  145. 275FA24827E7428200CFEA2E /* InstrumentChooseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */; };
  146. 275FA24A27E7428D00CFEA2E /* InstrumentChooseView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */; };
  147. 2779351227E324A50010E277 /* KSNetworkAccessibleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */; };
  148. 2779351327E324A50010E277 /* NSDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */; };
  149. 2779351427E324A50010E277 /* NSMutableDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */; };
  150. 2779351527E324A60010E277 /* NSArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */; };
  151. 2779351627E324A60010E277 /* NSMutableArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */; };
  152. 2779351727E324A60010E277 /* NSObject+KSSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */; };
  153. 2779351827E324A60010E277 /* NSObject+KSImpChangeTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */; };
  154. 2779351927E324A60010E277 /* NSMutableString+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */; };
  155. 2779351A27E324A60010E277 /* NSObject+AssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */; };
  156. 2779351B27E324A60010E277 /* UIControl+ButtonAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */; };
  157. 2779351C27E324A60010E277 /* UIDevice+zhDeviceType.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */; };
  158. 2779351D27E324A60010E277 /* NSString+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */; };
  159. 2779351E27E324A60010E277 /* UIViewController+zhStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */; };
  160. 2779351F27E324A60010E277 /* UITextView+ZWPlaceHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */; };
  161. 2779352027E324A60010E277 /* CALayer+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338027E3249D0010E277 /* CALayer+Color.m */; };
  162. 2779352127E324A60010E277 /* NSMutableAttributedString+CZHExtention.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */; };
  163. 2779352227E324A60010E277 /* UITextView+ZWLimitCounter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */; };
  164. 2779352327E324A60010E277 /* UILabel+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338527E3249D0010E277 /* UILabel+Extension.m */; };
  165. 2779352427E324A60010E277 /* KSUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338727E3249D0010E277 /* KSUtilities.m */; };
  166. 2779352527E324A60010E277 /* pinyin.c in Sources */ = {isa = PBXBuildFile; fileRef = 2779338A27E3249D0010E277 /* pinyin.c */; };
  167. 2779352627E324A60010E277 /* UIAlertController+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */; };
  168. 2779352727E324A60010E277 /* NSArray+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */; };
  169. 2779352827E324A60010E277 /* UIColor+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339227E3249D0010E277 /* UIColor+Extend.m */; };
  170. 2779352927E324A60010E277 /* zhPopupController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339327E3249D0010E277 /* zhPopupController.m */; };
  171. 2779352A27E324A60010E277 /* UIView+Dealloc.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339427E3249D0010E277 /* UIView+Dealloc.m */; };
  172. 2779352B27E324A60010E277 /* NSObject+Parse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339527E3249D0010E277 /* NSObject+Parse.m */; };
  173. 2779352C27E324A60010E277 /* UIView+AddConstraints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339627E3249D0010E277 /* UIView+AddConstraints.m */; };
  174. 2779352D27E324A60010E277 /* NSString+CZHSizeExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */; };
  175. 2779352E27E324A60010E277 /* NSDictionary+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */; };
  176. 2779352F27E324A60010E277 /* UIView+Hints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339F27E3249D0010E277 /* UIView+Hints.m */; };
  177. 2779353027E324A60010E277 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A327E3249D0010E277 /* NSDate+Extension.m */; };
  178. 2779353127E324A60010E277 /* NSString+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A527E3249D0010E277 /* NSString+Extension.m */; };
  179. 2779353227E324A60010E277 /* NSDate+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A627E3249D0010E277 /* NSDate+Transform.m */; };
  180. 2779353327E324A60010E277 /* UIScreen+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A927E3249D0010E277 /* UIScreen+Extend.m */; };
  181. 2779353427E324A60010E277 /* UIImageView+CornerRadius.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */; };
  182. 2779353527E324A60010E277 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */; };
  183. 2779353627E324A60010E277 /* CALayer+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AD27E3249E0010E277 /* CALayer+Layout.m */; };
  184. 2779353727E324A60010E277 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AE27E3249E0010E277 /* UIImage+Color.m */; };
  185. 2779353827E324A60010E277 /* UIView+KSExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AF27E3249E0010E277 /* UIView+KSExtension.m */; };
  186. 2779353927E324A60010E277 /* UIView+XIBView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B727E3249E0010E277 /* UIView+XIBView.m */; };
  187. 2779353A27E324A60010E277 /* UILabel+QWTopLeftLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */; };
  188. 2779353B27E324A60010E277 /* UrlDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B927E3249E0010E277 /* UrlDecode.m */; };
  189. 2779353C27E324A60010E277 /* UIButton+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BA27E3249E0010E277 /* UIButton+Property.m */; };
  190. 2779353D27E324A60010E277 /* UIScrollView+KSTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */; };
  191. 2779353E27E324A60010E277 /* UIDevice+TFDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */; };
  192. 2779353F27E324A60010E277 /* UIView+KSLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BE27E3249E0010E277 /* UIView+KSLayer.m */; };
  193. 2779354027E324A60010E277 /* UIImage+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BF27E3249E0010E277 /* UIImage+Property.m */; };
  194. 2779354127E324A60010E277 /* UIView+ShowProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C127E3249E0010E277 /* UIView+ShowProgress.m */; };
  195. 2779354227E324A60010E277 /* UIImage+ResizeImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */; };
  196. 2779354327E324A60010E277 /* UIButton+HasChooseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */; };
  197. 2779354427E324A60010E277 /* NSObject+AutoProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */; };
  198. 2779354527E324A60010E277 /* UIImage+UIImageScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */; };
  199. 2779354627E324A60010E277 /* UIView+Animation.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C827E3249E0010E277 /* UIView+Animation.m */; };
  200. 2779354727E324A60010E277 /* UIButton+EnlargeEdge.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */; };
  201. 2779354827E324A60010E277 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */; };
  202. 2779354927E324A60010E277 /* MBProgressHUD+KSShow.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */; };
  203. 2779354A27E324A60010E277 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DA27E3249E0010E277 /* UIImage+Resize.m */; };
  204. 2779354B27E324A60010E277 /* KSVideoEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DD27E3249E0010E277 /* KSVideoEditor.m */; };
  205. 2779354C27E324A70010E277 /* KSGifRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */; };
  206. 2779354D27E324A70010E277 /* KSGifRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */; };
  207. 2779354E27E324A70010E277 /* KSAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E427E3249E0010E277 /* KSAudioSessionManager.m */; };
  208. 2779354F27E324A70010E277 /* VoLRUManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E927E3249F0010E277 /* VoLRUManager.m */; };
  209. 2779355027E324A70010E277 /* VoDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EB27E3249F0010E277 /* VoDiskCache.m */; };
  210. 2779355127E324A70010E277 /* VoCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EC27E3249F0010E277 /* VoCacheManager.m */; };
  211. 2779355227E324A70010E277 /* VoMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EE27E3249F0010E277 /* VoMemoryCache.m */; };
  212. 2779355327E324A70010E277 /* VoNetworking+RequestManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */; };
  213. 2779355427E324A70010E277 /* VoNetWorking.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F227E3249F0010E277 /* VoNetWorking.m */; };
  214. 2779355527E324A70010E277 /* DiskFreeSpaceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */; };
  215. 2779355627E324A70010E277 /* KSPremissionAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F827E3249F0010E277 /* KSPremissionAlert.m */; };
  216. 2779355727E324A70010E277 /* KSPremissionAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 277933F927E3249F0010E277 /* KSPremissionAlert.xib */; };
  217. 2779355827E324A70010E277 /* UIImage+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933FC27E3249F0010E277 /* UIImage+Addtions.m */; };
  218. 2779355927E324A70010E277 /* GRCreateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933FD27E3249F0010E277 /* GRCreateManager.m */; };
  219. 2779355A27E324A70010E277 /* QCCountdownButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340127E3249F0010E277 /* QCCountdownButton.m */; };
  220. 2779355B27E324A70010E277 /* KSStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340427E3249F0010E277 /* KSStatusView.m */; };
  221. 2779355C27E324A70010E277 /* KSChoosePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340727E3249F0010E277 /* KSChoosePicker.m */; };
  222. 2779355D27E324A70010E277 /* KSHoldButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340B27E3249F0010E277 /* KSHoldButton.m */; };
  223. 2779355E27E324A70010E277 /* KSAudioRecordFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */; };
  224. 2779355F27E324A70010E277 /* UIView+ValueAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */; };
  225. 2779356027E324A70010E277 /* KSRecordStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340F27E3249F0010E277 /* KSRecordStatusView.m */; };
  226. 2779356127E324A70010E277 /* KSAudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341027E3249F0010E277 /* KSAudioRecordManager.m */; };
  227. 2779356227E324A70010E277 /* KSRecordPowerAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */; };
  228. 2779356327E324A70010E277 /* HomeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341527E3249F0010E277 /* HomeButton.m */; };
  229. 2779356427E324A70010E277 /* KSFullDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341727E3249F0010E277 /* KSFullDatePicker.m */; };
  230. 2779356527E324A70010E277 /* KSMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341927E3249F0010E277 /* KSMediaManager.m */; };
  231. 2779356627E324A70010E277 /* ShopMessBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341A27E3249F0010E277 /* ShopMessBtn.m */; };
  232. 2779356727E324A70010E277 /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341B27E324A00010E277 /* UIColor+Hex.m */; };
  233. 2779356827E324A70010E277 /* shopview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341C27E324A00010E277 /* shopview.m */; };
  234. 2779356927E324A70010E277 /* YKMultiLevelTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */; };
  235. 2779356A27E324A70010E277 /* YKNodeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341F27E324A00010E277 /* YKNodeModel.m */; };
  236. 2779356B27E324A70010E277 /* pickBut.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342227E324A00010E277 /* pickBut.m */; };
  237. 2779356C27E324A70010E277 /* MBProgressHUD+NJ.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */; };
  238. 2779356D27E324A70010E277 /* StoreShopCaterview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342827E324A00010E277 /* StoreShopCaterview.m */; };
  239. 2779356E27E324A70010E277 /* UITextField_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342A27E324A00010E277 /* UITextField_Toolbar.m */; };
  240. 2779356F27E324A70010E277 /* SkipTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342B27E324A00010E277 /* SkipTextField.m */; };
  241. 2779357027E324A70010E277 /* UITextView_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342E27E324A00010E277 /* UITextView_Toolbar.m */; };
  242. 2779357127E324A70010E277 /* SkipTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343127E324A00010E277 /* SkipTextView.m */; };
  243. 2779357227E324A70010E277 /* SearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343427E324A00010E277 /* SearchView.m */; };
  244. 2779357327E324A70010E277 /* prodectButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343A27E324A00010E277 /* prodectButton.m */; };
  245. 2779357427E324A70010E277 /* StoreButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343B27E324A00010E277 /* StoreButton.m */; };
  246. 2779357527E324A70010E277 /* LifeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343C27E324A00010E277 /* LifeButton.m */; };
  247. 2779357627E324A70010E277 /* ShoppCatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343D27E324A00010E277 /* ShoppCatView.m */; };
  248. 2779357727E324A70010E277 /* GRScanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343E27E324A00010E277 /* GRScanManager.m */; };
  249. 2779357827E324A70010E277 /* NSString+phone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344427E324A00010E277 /* NSString+phone.m */; };
  250. 2779357927E324A70010E277 /* KSImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344627E324A00010E277 /* KSImageButton.m */; };
  251. 2779357A27E324A70010E277 /* PIckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344927E324A00010E277 /* PIckView.m */; };
  252. 2779357B27E324A70010E277 /* ShopButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344B27E324A00010E277 /* ShopButton.m */; };
  253. 2779357C27E324A70010E277 /* NSString+MD5.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344C27E324A00010E277 /* NSString+MD5.m */; };
  254. 2779357D27E324A80010E277 /* KSMessageInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344D27E324A00010E277 /* KSMessageInputView.m */; };
  255. 2779357E27E324A80010E277 /* KSInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345027E324A00010E277 /* KSInputView.m */; };
  256. 2779357F27E324A80010E277 /* KeyChainTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345127E324A00010E277 /* KeyChainTools.m */; };
  257. 2779358027E324A80010E277 /* sortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345227E324A00010E277 /* sortButton.m */; };
  258. 2779358127E324A80010E277 /* StateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345327E324A00010E277 /* StateView.m */; };
  259. 2779358227E324A80010E277 /* NSDate+KSBaseDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */; };
  260. 2779358327E324A80010E277 /* LLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345727E324A10010E277 /* LLPhotoBrowser.m */; };
  261. 2779358427E324A80010E277 /* LLImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345A27E324A10010E277 /* LLImageCache.m */; };
  262. 2779358527E324A80010E277 /* LLFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345B27E324A10010E277 /* LLFileManager.m */; };
  263. 2779358627E324A80010E277 /* LLPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345E27E324A10010E277 /* LLPhoto.m */; };
  264. 2779358727E324A80010E277 /* LLCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345F27E324A10010E277 /* LLCollectionViewCell.m */; };
  265. 2779358827E324A80010E277 /* NSObject+Archiving.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346627E324A10010E277 /* NSObject+Archiving.m */; };
  266. 2779358927E324A80010E277 /* CoinModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346727E324A10010E277 /* CoinModel.m */; };
  267. 2779358A27E324A80010E277 /* ArchiveTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346827E324A10010E277 /* ArchiveTools.m */; };
  268. 2779358B27E324A80010E277 /* KLTNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347127E324A10010E277 /* KLTNavigationController.m */; };
  269. 2779358C27E324A80010E277 /* AnimationContoller.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347327E324A10010E277 /* AnimationContoller.m */; };
  270. 2779358D27E324A80010E277 /* DZNSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347527E324A10010E277 /* DZNSegmentedControl.m */; };
  271. 2779358E27E324A80010E277 /* WMPlayerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347927E324A10010E277 /* WMPlayerModel.m */; };
  272. 2779358F27E324A80010E277 /* WMPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2779347B27E324A10010E277 /* WMPlayer.bundle */; };
  273. 2779359027E324A80010E277 /* WMLightView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347E27E324A10010E277 /* WMLightView.m */; };
  274. 2779359127E324A80010E277 /* FastForwardView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347F27E324A10010E277 /* FastForwardView.m */; };
  275. 2779359227E324A80010E277 /* WMPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348027E324A10010E277 /* WMPlayer.m */; };
  276. 2779359327E324A80010E277 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348427E324A10010E277 /* TZImageCropManager.m */; };
  277. 2779359427E324A80010E277 /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348627E324A10010E277 /* TZAssetCell.m */; };
  278. 2779359527E324A80010E277 /* TZVideoEditedPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */; };
  279. 2779359627E324A80010E277 /* TZVideoCropController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348827E324A10010E277 /* TZVideoCropController.m */; };
  280. 2779359727E324A80010E277 /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348927E324A10010E277 /* TZVideoPlayerController.m */; };
  281. 2779359827E324A80010E277 /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348A27E324A10010E277 /* TZAssetModel.m */; };
  282. 2779359927E324A80010E277 /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */; };
  283. 2779359A27E324A80010E277 /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */; };
  284. 2779359B27E324A80010E277 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2779349027E324A10010E277 /* TZImagePickerController.bundle */; };
  285. 2779359C27E324A80010E277 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349127E324A10010E277 /* TZProgressView.m */; };
  286. 2779359D27E324A80010E277 /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349627E324A10010E277 /* TZImageManager.m */; };
  287. 2779359E27E324A80010E277 /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349827E324A20010E277 /* TZPhotoPickerController.m */; };
  288. 2779359F27E324A80010E277 /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */; };
  289. 277935A027E324A80010E277 /* UIView+TZLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349B27E324A20010E277 /* UIView+TZLayout.m */; };
  290. 277935A127E324A80010E277 /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A027E324A20010E277 /* TZImagePickerController.m */; };
  291. 277935A227E324A80010E277 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A127E324A20010E277 /* TZLocationManager.m */; };
  292. 277935A327E324A80010E277 /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */; };
  293. 277935A427E324A80010E277 /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A327E324A20010E277 /* TZImageRequestOperation.m */; };
  294. 277935A527E324A80010E277 /* MSSBrowseLoadingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */; };
  295. 277935A627E324A80010E277 /* MSSBrowseLocalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */; };
  296. 277935A727E324A80010E277 /* MSSBrowseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */; };
  297. 277935A827E324A80010E277 /* MSSBrowseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B127E324A20010E277 /* MSSBrowseModel.m */; };
  298. 277935A927E324A80010E277 /* MSSBrowseActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */; };
  299. 277935AA27E324A80010E277 /* MSSBrowseNetworkViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */; };
  300. 277935AB27E324A80010E277 /* UIImage+MSSScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B527E324A20010E277 /* UIImage+MSSScale.m */; };
  301. 277935AC27E324A80010E277 /* MSSBrowseBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */; };
  302. 277935AD27E324A80010E277 /* MSSBrowseZoomScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */; };
  303. 277935AE27E324A80010E277 /* MSSBrowseRemindView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B927E324A20010E277 /* MSSBrowseRemindView.m */; };
  304. 277935AF27E324A90010E277 /* mss_browseLoading@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */; };
  305. 277935B027E324A90010E277 /* MSSBrowseActionSheetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */; };
  306. 277935B127E324A90010E277 /* mss_browseLoading@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */; };
  307. 277935B227E324A90010E277 /* UIView+MSSLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C027E324A20010E277 /* UIView+MSSLayout.m */; };
  308. 277935B327E324A90010E277 /* FSCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C227E324A20010E277 /* FSCalendarCollectionView.m */; };
  309. 277935B427E324A90010E277 /* FSCalendarDelegationProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */; };
  310. 277935B527E324A90010E277 /* FSCalendarDelegationFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */; };
  311. 277935B627E324A90010E277 /* FSCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934CE27E324A30010E277 /* FSCalendarCell.m */; };
  312. 277935B727E324A90010E277 /* FSCalendarStickyHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */; };
  313. 277935B827E324A90010E277 /* FSCalendar.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D027E324A30010E277 /* FSCalendar.m */; };
  314. 277935B927E324A90010E277 /* FSCalendarCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */; };
  315. 277935BA27E324A90010E277 /* FSCalendarWeekdayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */; };
  316. 277935BB27E324A90010E277 /* FSCalendarSeparatorDecorationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */; };
  317. 277935BC27E324A90010E277 /* FSCalendarExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D727E324A30010E277 /* FSCalendarExtensions.m */; };
  318. 277935BD27E324A90010E277 /* FSCalendarConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D927E324A30010E277 /* FSCalendarConstants.m */; };
  319. 277935BE27E324A90010E277 /* FSCalendarCalculator.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DA27E324A30010E277 /* FSCalendarCalculator.m */; };
  320. 277935BF27E324A90010E277 /* FSCalendarHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */; };
  321. 277935C027E324A90010E277 /* FSCalendarTransitionCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */; };
  322. 277935C127E324A90010E277 /* FSCalendarAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E027E324A30010E277 /* FSCalendarAppearance.m */; };
  323. 277935C227E324A90010E277 /* QWdynamicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E227E324A30010E277 /* QWdynamicModel.m */; };
  324. 277935C327E324A90010E277 /* SDQWMaskCustomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */; };
  325. 277935C427E324A90010E277 /* SDCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E927E324A30010E277 /* SDCycleScrollView.m */; };
  326. 277935C527E324A90010E277 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934EA27E324A30010E277 /* UIView+SDExtension.m */; };
  327. 277935C627E324A90010E277 /* SDQWMaskCustomModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */; };
  328. 277935C727E324A90010E277 /* SDCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934ED27E324A30010E277 /* SDCollectionViewCell.m */; };
  329. 277935C827E324A90010E277 /* TADotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F027E324A30010E277 /* TADotView.m */; };
  330. 277935C927E324A90010E277 /* TAPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F127E324A30010E277 /* TAPageControl.m */; };
  331. 277935CA27E324A90010E277 /* TAAnimatedDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F227E324A30010E277 /* TAAnimatedDotView.m */; };
  332. 277935CB27E324A90010E277 /* TAAbstractDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F327E324A30010E277 /* TAAbstractDotView.m */; };
  333. 277935CC27E324A90010E277 /* SDQWMaskCustomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F727E324A30010E277 /* SDQWMaskCustomView.m */; };
  334. 277935CD27E324A90010E277 /* ALCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F927E324A30010E277 /* ALCalendarCell.m */; };
  335. 277935CE27E324A90010E277 /* ALCalendarConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FA27E324A30010E277 /* ALCalendarConfig.m */; };
  336. 277935CF27E324A90010E277 /* ALCalendarHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FB27E324A30010E277 /* ALCalendarHeader.m */; };
  337. 277935D027E324A90010E277 /* ALCalendarDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FC27E324A30010E277 /* ALCalendarDate.m */; };
  338. 277935D127E324A90010E277 /* ALCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */; };
  339. 277935D227E324A90010E277 /* ALCalendarHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FE27E324A30010E277 /* ALCalendarHelper.m */; };
  340. 277935D327E324A90010E277 /* ALCalendarPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350827E324A40010E277 /* ALCalendarPicker.m */; };
  341. 277935D427E324A90010E277 /* UIView+ALFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350927E324A40010E277 /* UIView+ALFrame.m */; };
  342. 277935D527E324A90010E277 /* ALCalendarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350A27E324A40010E277 /* ALCalendarManager.m */; };
  343. 27F9032927E87C2E00C08A19 /* NetworkingCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */; };
  344. 27F9032A27E87C2E00C08A19 /* NetworkBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */; };
  345. 27F9032B27E87C2E00C08A19 /* NetworkBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */; };
  346. 27F9032C27E87C2E00C08A19 /* KSNetworkAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */; };
  347. 27F9032D27E87C2E00C08A19 /* KSNetworkAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */; };
  348. 27F9032E27E87C2E00C08A19 /* DeviceCheckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */; };
  349. 27F9032F27E87C2E00C08A19 /* AudioPlayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */; };
  350. 27F9033027E87C2E00C08A19 /* AudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */; };
  351. 27F9033127E87C2E00C08A19 /* DeviceCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */; };
  352. 27F9033227E87C2E00C08A19 /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9032627E87C2E00C08A19 /* SettingViewController.m */; };
  353. 27F9033627E87C8B00C08A19 /* MineNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9033427E87C8A00C08A19 /* MineNavView.m */; };
  354. 27F9033727E87C8B00C08A19 /* MineNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9033527E87C8B00C08A19 /* MineNavView.xib */; };
  355. 27F9033A27E87FD500C08A19 /* MineBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9033927E87FD500C08A19 /* MineBodyView.m */; };
  356. 27F9033C27E87FE100C08A19 /* MineBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9033B27E87FE100C08A19 /* MineBodyView.xib */; };
  357. 82EE25CEB2BB5A0E1BB8D54B /* Pods_KulexiuForStudent.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */; };
  358. 93F0FA52C8A72F83D07C15A6 /* Pods_KulexiuForStudentTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */; };
  359. C56C141D9D9D478077F14C1E /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */; };
  360. /* End PBXBuildFile section */
  361. /* Begin PBXContainerItemProxy section */
  362. 275E8AC127E18F8C00DD3F6E /* PBXContainerItemProxy */ = {
  363. isa = PBXContainerItemProxy;
  364. containerPortal = 275E8A9D27E18F8800DD3F6E /* Project object */;
  365. proxyType = 1;
  366. remoteGlobalIDString = 275E8AA427E18F8800DD3F6E;
  367. remoteInfo = KulexiuForStudent;
  368. };
  369. 275E8ACB27E18F8C00DD3F6E /* PBXContainerItemProxy */ = {
  370. isa = PBXContainerItemProxy;
  371. containerPortal = 275E8A9D27E18F8800DD3F6E /* Project object */;
  372. proxyType = 1;
  373. remoteGlobalIDString = 275E8AA427E18F8800DD3F6E;
  374. remoteInfo = KulexiuForStudent;
  375. };
  376. /* End PBXContainerItemProxy section */
  377. /* Begin PBXFileReference section */
  378. 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig"; sourceTree = "<group>"; };
  379. 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudent.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  380. 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudentTests.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudentTests/Pods-KulexiuForStudentTests.debug.xcconfig"; sourceTree = "<group>"; };
  381. 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent.release.xcconfig"; sourceTree = "<group>"; };
  382. 2723B59A27F1577E00E0B90B /* CreateFansGroupViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CreateFansGroupViewController.h; sourceTree = "<group>"; };
  383. 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CreateFansGroupViewController.m; sourceTree = "<group>"; };
  384. 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatListViewController.m; sourceTree = "<group>"; };
  385. 2723B59D27F1577F00E0B90B /* ChatAddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressViewController.h; sourceTree = "<group>"; };
  386. 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatConversationViewController.m; sourceTree = "<group>"; };
  387. 2723B59F27F1578100E0B90B /* KSChatListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatListViewController.h; sourceTree = "<group>"; };
  388. 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressViewController.m; sourceTree = "<group>"; };
  389. 2723B5A127F1578200E0B90B /* KSChatConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatConversationViewController.h; sourceTree = "<group>"; };
  390. 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatAddressHeaderView.xib; sourceTree = "<group>"; };
  391. 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressBodyView.m; sourceTree = "<group>"; };
  392. 2723B5A827F157A300E0B90B /* GroupCreateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupCreateView.m; sourceTree = "<group>"; };
  393. 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatListSearchView.m; sourceTree = "<group>"; };
  394. 2723B5AA27F157A500E0B90B /* ChatNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatNavView.m; sourceTree = "<group>"; };
  395. 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupCreateView.xib; sourceTree = "<group>"; };
  396. 2723B5AC27F157A600E0B90B /* KSChatListSearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatListSearchView.h; sourceTree = "<group>"; };
  397. 2723B5AD27F157A700E0B90B /* ContractListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContractListCell.h; sourceTree = "<group>"; };
  398. 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressHeaderView.m; sourceTree = "<group>"; };
  399. 2723B5AF27F157AA00E0B90B /* ContractListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContractListCell.m; sourceTree = "<group>"; };
  400. 2723B5B027F157AB00E0B90B /* ChatAddressBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressBodyView.h; sourceTree = "<group>"; };
  401. 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupListViewCell.xib; sourceTree = "<group>"; };
  402. 2723B5B227F157AD00E0B90B /* ChatNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatNavView.xib; sourceTree = "<group>"; };
  403. 2723B5B327F157AE00E0B90B /* GroupListViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListViewCell.h; sourceTree = "<group>"; };
  404. 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSChatListSearchView.xib; sourceTree = "<group>"; };
  405. 2723B5B527F157AF00E0B90B /* ChatNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatNavView.h; sourceTree = "<group>"; };
  406. 2723B5B627F157AF00E0B90B /* ChatAddressHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressHeaderView.h; sourceTree = "<group>"; };
  407. 2723B5B727F157B000E0B90B /* ContractListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ContractListCell.xib; sourceTree = "<group>"; };
  408. 2723B5B827F157B000E0B90B /* GroupCreateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupCreateView.h; sourceTree = "<group>"; };
  409. 2723B5B927F157B100E0B90B /* GroupListViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListViewCell.m; sourceTree = "<group>"; };
  410. 2723B5C727F157B800E0B90B /* KSRCloudMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCloudMediaManager.h; sourceTree = "<group>"; };
  411. 2723B5C827F157B900E0B90B /* GroupListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListModel.m; sourceTree = "<group>"; };
  412. 2723B5C927F157BA00E0B90B /* GroupListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListModel.h; sourceTree = "<group>"; };
  413. 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCloudMediaManager.m; sourceTree = "<group>"; };
  414. 2723B5CB27F157BD00E0B90B /* GroupMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberModel.h; sourceTree = "<group>"; };
  415. 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberModel.m; sourceTree = "<group>"; };
  416. 2723B5D227F157D300E0B90B /* KSSearchHistoryMessageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchHistoryMessageController.h; sourceTree = "<group>"; };
  417. 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchHistoryMessageController.m; sourceTree = "<group>"; };
  418. 2723B5D527F157D300E0B90B /* KSSearchResultModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchResultModel.h; sourceTree = "<group>"; };
  419. 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchResultModel.m; sourceTree = "<group>"; };
  420. 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchResultViewCell.m; sourceTree = "<group>"; };
  421. 2723B5D927F157D300E0B90B /* KSRCSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCSearchBar.h; sourceTree = "<group>"; };
  422. 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchRCLabel.m; sourceTree = "<group>"; };
  423. 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCSearchBar.m; sourceTree = "<group>"; };
  424. 2723B5DC27F157D300E0B90B /* KSSearchResultViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchResultViewCell.h; sourceTree = "<group>"; };
  425. 2723B5DD27F157D300E0B90B /* KSSearchRCLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchRCLabel.h; sourceTree = "<group>"; };
  426. 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeViewController.m; sourceTree = "<group>"; };
  427. 2723B5E127F157D400E0B90B /* GroupNoticeEditController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeEditController.h; sourceTree = "<group>"; };
  428. 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeEditController.m; sourceTree = "<group>"; };
  429. 2723B5E327F157D400E0B90B /* GroupNoticeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeViewController.h; sourceTree = "<group>"; };
  430. 2723B5E527F157D400E0B90B /* GroupNoticeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeModel.h; sourceTree = "<group>"; };
  431. 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeModel.m; sourceTree = "<group>"; };
  432. 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeCell.m; sourceTree = "<group>"; };
  433. 2723B5E927F157D400E0B90B /* NoticeEditBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeEditBodyView.h; sourceTree = "<group>"; };
  434. 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoticeEditBodyView.xib; sourceTree = "<group>"; };
  435. 2723B5EC27F157D400E0B90B /* LFPopupMenuDefaultConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFPopupMenuDefaultConfig.h; sourceTree = "<group>"; };
  436. 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFPopupMenu.m; sourceTree = "<group>"; };
  437. 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFPopupMenuDefaultConfig.m; sourceTree = "<group>"; };
  438. 2723B5EF27F157D400E0B90B /* LFPopupMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFPopupMenu.h; sourceTree = "<group>"; };
  439. 2723B5F027F157D400E0B90B /* GroupNoticeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeCell.h; sourceTree = "<group>"; };
  440. 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeEditBodyView.m; sourceTree = "<group>"; };
  441. 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupNoticeCell.xib; sourceTree = "<group>"; };
  442. 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyViewController.m; sourceTree = "<group>"; };
  443. 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberViewController.m; sourceTree = "<group>"; };
  444. 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSelectConversationViewController.m; sourceTree = "<group>"; };
  445. 2723B5F827F157D500E0B90B /* GroupSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSettingViewController.h; sourceTree = "<group>"; };
  446. 2723B5F927F157D500E0B90B /* KSChatComplainController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatComplainController.m; sourceTree = "<group>"; };
  447. 2723B5FA27F157D500E0B90B /* GroupMemberViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberViewController.h; sourceTree = "<group>"; };
  448. 2723B5FB27F157D500E0B90B /* GroupApplyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyViewController.h; sourceTree = "<group>"; };
  449. 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSettingViewController.m; sourceTree = "<group>"; };
  450. 2723B5FD27F157D500E0B90B /* KSSelectConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSelectConversationViewController.h; sourceTree = "<group>"; };
  451. 2723B5FE27F157D500E0B90B /* KSChatComplainController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatComplainController.h; sourceTree = "<group>"; };
  452. 2723B60027F157D500E0B90B /* ApplyMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplyMemberModel.m; sourceTree = "<group>"; };
  453. 2723B60127F157D500E0B90B /* ApplyMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyMemberModel.h; sourceTree = "<group>"; };
  454. 2723B60327F157D500E0B90B /* ChatComplainBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatComplainBodyView.h; sourceTree = "<group>"; };
  455. 2723B60427F157D500E0B90B /* ApplyBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplyBottomView.m; sourceTree = "<group>"; };
  456. 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyMemberCell.xib; sourceTree = "<group>"; };
  457. 2723B60627F157D500E0B90B /* GroupMemberListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberListCell.h; sourceTree = "<group>"; };
  458. 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyChooseAllCell.xib; sourceTree = "<group>"; };
  459. 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatComplainBodyView.xib; sourceTree = "<group>"; };
  460. 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyChooseAllCell.m; sourceTree = "<group>"; };
  461. 2723B60A27F157D500E0B90B /* GroupApplyMemberCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyMemberCell.h; sourceTree = "<group>"; };
  462. 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSettingBodyView.m; sourceTree = "<group>"; };
  463. 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupSettingBodyView.xib; sourceTree = "<group>"; };
  464. 2723B60D27F157D500E0B90B /* GroupApplyChooseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyChooseCell.h; sourceTree = "<group>"; };
  465. 2723B60E27F157D500E0B90B /* ApplyBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyBottomView.h; sourceTree = "<group>"; };
  466. 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatComplainBodyView.m; sourceTree = "<group>"; };
  467. 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyMemberCell.m; sourceTree = "<group>"; };
  468. 2723B61127F157D500E0B90B /* GroupApplyChooseAllCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyChooseAllCell.h; sourceTree = "<group>"; };
  469. 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyChooseCell.xib; sourceTree = "<group>"; };
  470. 2723B61327F157D500E0B90B /* GroupMemberListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberListCell.m; sourceTree = "<group>"; };
  471. 2723B61427F157D500E0B90B /* ApplyBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApplyBottomView.xib; sourceTree = "<group>"; };
  472. 2723B61527F157D500E0B90B /* GroupSettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSettingBodyView.h; sourceTree = "<group>"; };
  473. 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyChooseCell.m; sourceTree = "<group>"; };
  474. 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupMemberListCell.xib; sourceTree = "<group>"; };
  475. 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseTableViewController.m; sourceTree = "<group>"; };
  476. 2723B63B27F159BA00E0B90B /* KSBaseTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseTableViewController.h; sourceTree = "<group>"; };
  477. 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexViewConfiguration.m; sourceTree = "<group>"; };
  478. 2723B63F27F15B5800E0B90B /* UITableView+SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SCIndexView.h"; sourceTree = "<group>"; };
  479. 2723B64027F15B5800E0B90B /* SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexView.m; sourceTree = "<group>"; };
  480. 2723B64127F15B5800E0B90B /* SCIndexViewConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexViewConfiguration.h; sourceTree = "<group>"; };
  481. 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SCIndexView.m"; sourceTree = "<group>"; };
  482. 2723B64327F15B5800E0B90B /* SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexView.h; sourceTree = "<group>"; };
  483. 2723B64727F15BDB00E0B90B /* KSJXBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSJXBodyView.h; sourceTree = "<group>"; };
  484. 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSJXBodyView.m; sourceTree = "<group>"; };
  485. 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = SettingBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.xib; sourceTree = SOURCE_ROOT; };
  486. 2723B64B27F15CF800E0B90B /* ModifyNameBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModifyNameBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.h; sourceTree = SOURCE_ROOT; };
  487. 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = FeedbackBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.xib; sourceTree = SOURCE_ROOT; };
  488. 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = ModifyNameBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.xib; sourceTree = SOURCE_ROOT; };
  489. 2723B64E27F15CF800E0B90B /* VeriCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = VeriCheckView.m; path = KulexiuForStudent/Module/Mine/Setting/View/VeriCheckView.m; sourceTree = SOURCE_ROOT; };
  490. 2723B64F27F15CF900E0B90B /* ModifyBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = ModifyBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.h; sourceTree = SOURCE_ROOT; };
  491. 2723B65027F15CF900E0B90B /* AboutUsBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AboutUsBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.h; sourceTree = SOURCE_ROOT; };
  492. 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = ModifyBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.xib; sourceTree = SOURCE_ROOT; };
  493. 2723B65227F15CF900E0B90B /* FeedbackBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = FeedbackBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.h; sourceTree = SOURCE_ROOT; };
  494. 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = AboutUsBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.m; sourceTree = SOURCE_ROOT; };
  495. 2723B65427F15CF900E0B90B /* ModifyBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModifyBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.m; sourceTree = SOURCE_ROOT; };
  496. 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = FeedbackBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.m; sourceTree = SOURCE_ROOT; };
  497. 2723B65627F15CFA00E0B90B /* PhoneChangeBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhoneChangeBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.h; sourceTree = SOURCE_ROOT; };
  498. 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhoneChangeBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.m; sourceTree = SOURCE_ROOT; };
  499. 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = PhoneChangeBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.xib; sourceTree = SOURCE_ROOT; };
  500. 2723B65927F15CFA00E0B90B /* PhoneCheckBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PhoneCheckBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.h; sourceTree = SOURCE_ROOT; };
  501. 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = PhoneCheckBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.m; sourceTree = SOURCE_ROOT; };
  502. 2723B65B27F15CFA00E0B90B /* SettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SettingBodyView.h; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.h; sourceTree = SOURCE_ROOT; };
  503. 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = SettingBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.m; sourceTree = SOURCE_ROOT; };
  504. 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ModifyNameBodyView.m; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.m; sourceTree = SOURCE_ROOT; };
  505. 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = PhoneCheckBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.xib; sourceTree = SOURCE_ROOT; };
  506. 2723B65F27F15CFB00E0B90B /* VeriCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = VeriCheckView.h; path = KulexiuForStudent/Module/Mine/Setting/View/VeriCheckView.h; sourceTree = SOURCE_ROOT; };
  507. 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = AboutUsBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.xib; sourceTree = SOURCE_ROOT; };
  508. 2723B67027F15D3200E0B90B /* ModifyPhoneCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneCheckController.h; sourceTree = "<group>"; };
  509. 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneCheckController.m; sourceTree = "<group>"; };
  510. 2723B67227F15D3300E0B90B /* AboutUsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutUsViewController.m; sourceTree = "<group>"; };
  511. 2723B67327F15D3400E0B90B /* FeedbackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
  512. 2723B67427F15D3600E0B90B /* AboutUsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutUsViewController.h; sourceTree = "<group>"; };
  513. 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyNameViewController.m; sourceTree = "<group>"; };
  514. 2723B67627F15D3800E0B90B /* FeedbackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
  515. 2723B67727F15D3900E0B90B /* AddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressViewController.h; sourceTree = "<group>"; };
  516. 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneChangeController.m; sourceTree = "<group>"; };
  517. 2723B67927F15D3B00E0B90B /* ModifyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyViewController.m; sourceTree = "<group>"; };
  518. 2723B67A27F15D3B00E0B90B /* ModifyNameViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyNameViewController.h; sourceTree = "<group>"; };
  519. 2723B67B27F15D3C00E0B90B /* AddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressViewController.m; sourceTree = "<group>"; };
  520. 2723B67C27F15D3D00E0B90B /* ModifyPhoneChangeController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneChangeController.h; sourceTree = "<group>"; };
  521. 2723B67D27F15D3D00E0B90B /* ModifyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyViewController.h; sourceTree = "<group>"; };
  522. 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KulexiuForStudent.app; sourceTree = BUILT_PRODUCTS_DIR; };
  523. 275E8AA827E18F8800DD3F6E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  524. 275E8AA927E18F8800DD3F6E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  525. 275E8AAE27E18F8800DD3F6E /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
  526. 275E8AAF27E18F8800DD3F6E /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
  527. 275E8AB227E18F8800DD3F6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  528. 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  529. 275E8AB727E18F8B00DD3F6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  530. 275E8AB927E18F8B00DD3F6E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  531. 275E8ABA27E18F8B00DD3F6E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  532. 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KulexiuForStudentTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  533. 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentTests.m; sourceTree = "<group>"; };
  534. 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KulexiuForStudentUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  535. 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentUITests.m; sourceTree = "<group>"; };
  536. 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentUITestsLaunchTests.m; sourceTree = "<group>"; };
  537. 275FA1AA27E734C500CFEA2E /* KSImageAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageAlert.h; sourceTree = "<group>"; };
  538. 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSImageAlert.xib; sourceTree = "<group>"; };
  539. 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageAlert.m; sourceTree = "<group>"; };
  540. 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkingManager.m; sourceTree = "<group>"; };
  541. 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+KSNavigationBar.m"; sourceTree = "<group>"; };
  542. 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAQRecordManager.m; sourceTree = "<group>"; };
  543. 275FA1B227E7351400CFEA2E /* KSUpdateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateManager.h; sourceTree = "<group>"; };
  544. 275FA1B327E7351400CFEA2E /* KSBaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseModel.h; sourceTree = "<group>"; };
  545. 275FA1B427E7351400CFEA2E /* UINavigationController+KSNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+KSNavigationBar.h"; sourceTree = "<group>"; };
  546. 275FA1B527E7351400CFEA2E /* KSRCIMDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCIMDataSource.h; sourceTree = "<group>"; };
  547. 275FA1B627E7351500CFEA2E /* KSAQRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAQRecordManager.h; sourceTree = "<group>"; };
  548. 275FA1B727E7351500CFEA2E /* KSBaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseModel.m; sourceTree = "<group>"; };
  549. 275FA1B827E7351500CFEA2E /* KSWebNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebNavView.h; sourceTree = "<group>"; };
  550. 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLocalWebViewController.m; sourceTree = "<group>"; };
  551. 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCConnectionManager.m; sourceTree = "<group>"; };
  552. 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordCheckManager.m; sourceTree = "<group>"; };
  553. 275FA1BC27E7351500CFEA2E /* CustomNavViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNavViewController.h; sourceTree = "<group>"; };
  554. 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTabBarViewController.m; sourceTree = "<group>"; };
  555. 275FA1BE27E7351600CFEA2E /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
  556. 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebBackButton.m; sourceTree = "<group>"; };
  557. 275FA1C027E7351600CFEA2E /* KSLocalWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLocalWebViewController.h; sourceTree = "<group>"; };
  558. 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WeakWebViewScriptMessageDelegate.m; sourceTree = "<group>"; };
  559. 275FA1C227E7351600CFEA2E /* KSWebNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebNavView.m; sourceTree = "<group>"; };
  560. 275FA1C327E7351600CFEA2E /* KSAccompanyWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAccompanyWebViewController.h; sourceTree = "<group>"; };
  561. 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAccompanyWebViewController.m; sourceTree = "<group>"; };
  562. 275FA1C527E7351600CFEA2E /* KSBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseViewController.h; sourceTree = "<group>"; };
  563. 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateAlert.m; sourceTree = "<group>"; };
  564. 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebSocketManager.m; sourceTree = "<group>"; };
  565. 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNavViewController.m; sourceTree = "<group>"; };
  566. 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetTypeManager.m; sourceTree = "<group>"; };
  567. 275FA1CA27E7351700CFEA2E /* KSNetTypeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetTypeManager.h; sourceTree = "<group>"; };
  568. 275FA1CB27E7351700CFEA2E /* KSUpdateAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateAlert.h; sourceTree = "<group>"; };
  569. 275FA1CC27E7351700CFEA2E /* WeakWebViewScriptMessageDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeakWebViewScriptMessageDelegate.h; sourceTree = "<group>"; };
  570. 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCIMDataSource.m; sourceTree = "<group>"; };
  571. 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseWKWebViewController.m; sourceTree = "<group>"; };
  572. 275FA1CF27E7351800CFEA2E /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
  573. 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateManager.m; sourceTree = "<group>"; };
  574. 275FA1D127E7351800CFEA2E /* KSWebBackButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebBackButton.h; sourceTree = "<group>"; };
  575. 275FA1D227E7351800CFEA2E /* KSWebSocketManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebSocketManager.h; sourceTree = "<group>"; };
  576. 275FA1D327E7351800CFEA2E /* RCConnectionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCConnectionManager.h; sourceTree = "<group>"; };
  577. 275FA1D427E7351800CFEA2E /* KSNetworkingManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkingManager.h; sourceTree = "<group>"; };
  578. 275FA1D527E7351800CFEA2E /* KSBaseWKWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseWKWebViewController.h; sourceTree = "<group>"; };
  579. 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseViewController.m; sourceTree = "<group>"; };
  580. 275FA1D727E7351900CFEA2E /* KSTabBarViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTabBarViewController.h; sourceTree = "<group>"; };
  581. 275FA1D827E7351900CFEA2E /* RecordCheckManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordCheckManager.h; sourceTree = "<group>"; };
  582. 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSUpdateAlert.xib; sourceTree = "<group>"; };
  583. 275FA1F327E7356A00CFEA2E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
  584. 275FA1F427E7356A00CFEA2E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
  585. 275FA1F927E7356A00CFEA2E /* CourseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CourseViewController.h; sourceTree = "<group>"; };
  586. 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CourseViewController.m; sourceTree = "<group>"; };
  587. 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatViewController.m; sourceTree = "<group>"; };
  588. 275FA20027E7356B00CFEA2E /* ChatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatViewController.h; sourceTree = "<group>"; };
  589. 275FA20527E7356B00CFEA2E /* MineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineViewController.h; sourceTree = "<group>"; };
  590. 275FA20627E7356B00CFEA2E /* MineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineViewController.m; sourceTree = "<group>"; };
  591. 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopMallViewController.m; sourceTree = "<group>"; };
  592. 275FA20C27E7356B00CFEA2E /* ShopMallViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopMallViewController.h; sourceTree = "<group>"; };
  593. 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordLoginController.m; sourceTree = "<group>"; };
  594. 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingViewController.m; sourceTree = "<group>"; };
  595. 275FA21327E7356B00CFEA2E /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  596. 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiCodeLoginController.m; sourceTree = "<group>"; };
  597. 275FA21527E7356B00CFEA2E /* PasswordLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordLoginController.h; sourceTree = "<group>"; };
  598. 275FA21627E7356B00CFEA2E /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  599. 275FA21727E7356B00CFEA2E /* FirstSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingViewController.h; sourceTree = "<group>"; };
  600. 275FA21827E7356B00CFEA2E /* VefiCodeLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiCodeLoginController.h; sourceTree = "<group>"; };
  601. 275FA21A27E7356B00CFEA2E /* UserInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfo.m; sourceTree = "<group>"; };
  602. 275FA21B27E7356B00CFEA2E /* UserInfoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoManager.h; sourceTree = "<group>"; };
  603. 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoManager.m; sourceTree = "<group>"; };
  604. 275FA21D27E7356B00CFEA2E /* UserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfo.h; sourceTree = "<group>"; };
  605. 275FA21F27E7356B00CFEA2E /* FirstSettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingBodyView.h; sourceTree = "<group>"; };
  606. 275FA22027E7356B00CFEA2E /* LoginBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginBodyView.m; sourceTree = "<group>"; };
  607. 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginBodyView.xib; sourceTree = "<group>"; };
  608. 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FirstSettingBodyView.xib; sourceTree = "<group>"; };
  609. 275FA22327E7356B00CFEA2E /* VefiBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiBodyView.h; sourceTree = "<group>"; };
  610. 275FA22427E7356B00CFEA2E /* PasswordBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordBodyView.h; sourceTree = "<group>"; };
  611. 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingBodyView.m; sourceTree = "<group>"; };
  612. 275FA22627E7356B00CFEA2E /* LoginBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginBodyView.h; sourceTree = "<group>"; };
  613. 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VefiBodyView.xib; sourceTree = "<group>"; };
  614. 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordBodyView.m; sourceTree = "<group>"; };
  615. 275FA22927E7356B00CFEA2E /* VefiBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiBodyView.m; sourceTree = "<group>"; };
  616. 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PasswordBodyView.xib; sourceTree = "<group>"; };
  617. 275FA23E27E737EE00CFEA2E /* ChooseInsturmentViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChooseInsturmentViewController.h; sourceTree = "<group>"; };
  618. 275FA23F27E737EE00CFEA2E /* ChooseInsturmentViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChooseInsturmentViewController.m; sourceTree = "<group>"; };
  619. 275FA24127E73DF600CFEA2E /* InstrumentDescView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstrumentDescView.h; sourceTree = "<group>"; };
  620. 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstrumentDescView.m; sourceTree = "<group>"; };
  621. 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InstrumentDescView.xib; sourceTree = "<group>"; };
  622. 275FA24627E7428200CFEA2E /* InstrumentChooseView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstrumentChooseView.h; sourceTree = "<group>"; };
  623. 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstrumentChooseView.m; sourceTree = "<group>"; };
  624. 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InstrumentChooseView.xib; sourceTree = "<group>"; };
  625. 2779336427E3249C0010E277 /* KSNetworkAccessibleManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAccessibleManager.h; sourceTree = "<group>"; };
  626. 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAccessibleManager.m; sourceTree = "<group>"; };
  627. 2779336727E3249C0010E277 /* KSSafeObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSafeObject.h; sourceTree = "<group>"; };
  628. 2779336827E3249C0010E277 /* NSObject+KSSwizzling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSSwizzling.h"; sourceTree = "<group>"; };
  629. 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+KSSafe.m"; sourceTree = "<group>"; };
  630. 2779336A27E3249C0010E277 /* NSObject+KSImpChangeTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSImpChangeTool.h"; sourceTree = "<group>"; };
  631. 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+KSSafe.m"; sourceTree = "<group>"; };
  632. 2779336C27E3249C0010E277 /* NSMutableString+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableString+KSSafe.h"; sourceTree = "<group>"; };
  633. 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+KSSafe.m"; sourceTree = "<group>"; };
  634. 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+KSSafe.m"; sourceTree = "<group>"; };
  635. 2779336F27E3249C0010E277 /* NSDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+KSSafe.h"; sourceTree = "<group>"; };
  636. 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSSwizzling.m"; sourceTree = "<group>"; };
  637. 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSImpChangeTool.m"; sourceTree = "<group>"; };
  638. 2779337227E3249C0010E277 /* NSMutableArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+KSSafe.h"; sourceTree = "<group>"; };
  639. 2779337327E3249C0010E277 /* NSArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+KSSafe.h"; sourceTree = "<group>"; };
  640. 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableString+KSSafe.m"; sourceTree = "<group>"; };
  641. 2779337527E3249C0010E277 /* NSMutableDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+KSSafe.h"; sourceTree = "<group>"; };
  642. 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AssociatedObject.m"; sourceTree = "<group>"; };
  643. 2779337827E3249C0010E277 /* UIView+Hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hints.h"; sourceTree = "<group>"; };
  644. 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+ButtonAction.m"; sourceTree = "<group>"; };
  645. 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+zhDeviceType.m"; sourceTree = "<group>"; };
  646. 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+zh_SafeAccess.m"; sourceTree = "<group>"; };
  647. 2779337C27E3249D0010E277 /* NSDictionary+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Extension.h"; sourceTree = "<group>"; };
  648. 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+zhStatusBarStyle.m"; sourceTree = "<group>"; };
  649. 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWPlaceHolder.m"; sourceTree = "<group>"; };
  650. 2779337F27E3249D0010E277 /* NSString+CZHSizeExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+CZHSizeExtension.h"; sourceTree = "<group>"; };
  651. 2779338027E3249D0010E277 /* CALayer+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Color.m"; sourceTree = "<group>"; };
  652. 2779338127E3249D0010E277 /* NSDate+Transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Transform.h"; sourceTree = "<group>"; };
  653. 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+CZHExtention.m"; sourceTree = "<group>"; };
  654. 2779338327E3249D0010E277 /* NSString+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extension.h"; sourceTree = "<group>"; };
  655. 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWLimitCounter.m"; sourceTree = "<group>"; };
  656. 2779338527E3249D0010E277 /* UILabel+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extension.m"; sourceTree = "<group>"; };
  657. 2779338627E3249D0010E277 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
  658. 2779338727E3249D0010E277 /* KSUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUtilities.m; sourceTree = "<group>"; };
  659. 2779338927E3249D0010E277 /* pinyin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pinyin.h; sourceTree = "<group>"; };
  660. 2779338A27E3249D0010E277 /* pinyin.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; path = pinyin.c; sourceTree = "<group>"; };
  661. 2779338B27E3249D0010E277 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
  662. 2779338C27E3249D0010E277 /* CALayer+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Layout.h"; sourceTree = "<group>"; };
  663. 2779338D27E3249D0010E277 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  664. 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+Extend.m"; sourceTree = "<group>"; };
  665. 2779338F27E3249D0010E277 /* UIImageView+CornerRadius.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+CornerRadius.h"; sourceTree = "<group>"; };
  666. 2779339027E3249D0010E277 /* UIScreen+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+Extend.h"; sourceTree = "<group>"; };
  667. 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+zh_SafeAccess.m"; sourceTree = "<group>"; };
  668. 2779339227E3249D0010E277 /* UIColor+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extend.m"; sourceTree = "<group>"; };
  669. 2779339327E3249D0010E277 /* zhPopupController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = zhPopupController.m; sourceTree = "<group>"; };
  670. 2779339427E3249D0010E277 /* UIView+Dealloc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Dealloc.m"; sourceTree = "<group>"; };
  671. 2779339527E3249D0010E277 /* NSObject+Parse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Parse.m"; sourceTree = "<group>"; };
  672. 2779339627E3249D0010E277 /* UIView+AddConstraints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AddConstraints.m"; sourceTree = "<group>"; };
  673. 2779339727E3249D0010E277 /* UIView+KSExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSExtension.h"; sourceTree = "<group>"; };
  674. 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+CZHSizeExtension.m"; sourceTree = "<group>"; };
  675. 2779339927E3249D0010E277 /* UITextView+ZWPlaceHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWPlaceHolder.h"; sourceTree = "<group>"; };
  676. 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Extension.m"; sourceTree = "<group>"; };
  677. 2779339B27E3249D0010E277 /* UIViewController+zhStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+zhStatusBarStyle.h"; sourceTree = "<group>"; };
  678. 2779339C27E3249D0010E277 /* NSString+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+zh_SafeAccess.h"; sourceTree = "<group>"; };
  679. 2779339D27E3249D0010E277 /* UIDevice+zhDeviceType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+zhDeviceType.h"; sourceTree = "<group>"; };
  680. 2779339E27E3249D0010E277 /* UIControl+ButtonAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+ButtonAction.h"; sourceTree = "<group>"; };
  681. 2779339F27E3249D0010E277 /* UIView+Hints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hints.m"; sourceTree = "<group>"; };
  682. 277933A027E3249D0010E277 /* NSObject+AssociatedObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AssociatedObject.h"; sourceTree = "<group>"; };
  683. 277933A127E3249D0010E277 /* KSUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUtilities.h; sourceTree = "<group>"; };
  684. 277933A227E3249D0010E277 /* UILabel+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extension.h"; sourceTree = "<group>"; };
  685. 277933A327E3249D0010E277 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
  686. 277933A427E3249D0010E277 /* UITextView+ZWLimitCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWLimitCounter.h"; sourceTree = "<group>"; };
  687. 277933A527E3249D0010E277 /* NSString+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extension.m"; sourceTree = "<group>"; };
  688. 277933A627E3249D0010E277 /* NSDate+Transform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Transform.m"; sourceTree = "<group>"; };
  689. 277933A727E3249D0010E277 /* NSMutableAttributedString+CZHExtention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+CZHExtention.h"; sourceTree = "<group>"; };
  690. 277933A827E3249D0010E277 /* CALayer+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Color.h"; sourceTree = "<group>"; };
  691. 277933A927E3249D0010E277 /* UIScreen+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+Extend.m"; sourceTree = "<group>"; };
  692. 277933AA27E3249D0010E277 /* UIAlertController+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+Extend.h"; sourceTree = "<group>"; };
  693. 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+CornerRadius.m"; sourceTree = "<group>"; };
  694. 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  695. 277933AD27E3249E0010E277 /* CALayer+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Layout.m"; sourceTree = "<group>"; };
  696. 277933AE27E3249E0010E277 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
  697. 277933AF27E3249E0010E277 /* UIView+KSExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSExtension.m"; sourceTree = "<group>"; };
  698. 277933B027E3249E0010E277 /* NSObject+Parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Parse.h"; sourceTree = "<group>"; };
  699. 277933B127E3249E0010E277 /* UIView+AddConstraints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AddConstraints.h"; sourceTree = "<group>"; };
  700. 277933B227E3249E0010E277 /* UIView+Dealloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Dealloc.h"; sourceTree = "<group>"; };
  701. 277933B327E3249E0010E277 /* zhPopupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zhPopupController.h; sourceTree = "<group>"; };
  702. 277933B427E3249E0010E277 /* UIColor+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extend.h"; sourceTree = "<group>"; };
  703. 277933B527E3249E0010E277 /* NSArray+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+zh_SafeAccess.h"; sourceTree = "<group>"; };
  704. 277933B727E3249E0010E277 /* UIView+XIBView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIBView.m"; sourceTree = "<group>"; };
  705. 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+QWTopLeftLabel.m"; sourceTree = "<group>"; };
  706. 277933B927E3249E0010E277 /* UrlDecode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UrlDecode.m; sourceTree = "<group>"; };
  707. 277933BA27E3249E0010E277 /* UIButton+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Property.m"; sourceTree = "<group>"; };
  708. 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+KSTouch.m"; sourceTree = "<group>"; };
  709. 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+TFDevice.m"; sourceTree = "<group>"; };
  710. 277933BD27E3249E0010E277 /* MBProgressHUD+KSShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+KSShow.h"; sourceTree = "<group>"; };
  711. 277933BE27E3249E0010E277 /* UIView+KSLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSLayer.m"; sourceTree = "<group>"; };
  712. 277933BF27E3249E0010E277 /* UIImage+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Property.m"; sourceTree = "<group>"; };
  713. 277933C027E3249E0010E277 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  714. 277933C127E3249E0010E277 /* UIView+ShowProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ShowProgress.m"; sourceTree = "<group>"; };
  715. 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ResizeImage.m"; sourceTree = "<group>"; };
  716. 277933C327E3249E0010E277 /* UIButton+EnlargeEdge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+EnlargeEdge.h"; sourceTree = "<group>"; };
  717. 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+HasChooseImage.m"; sourceTree = "<group>"; };
  718. 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AutoProperty.m"; sourceTree = "<group>"; };
  719. 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+UIImageScale.m"; sourceTree = "<group>"; };
  720. 277933C727E3249E0010E277 /* UIImage+Resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resize.h"; sourceTree = "<group>"; };
  721. 277933C827E3249E0010E277 /* UIView+Animation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Animation.m"; sourceTree = "<group>"; };
  722. 277933C927E3249E0010E277 /* UIView+XIBView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIBView.h"; sourceTree = "<group>"; };
  723. 277933CA27E3249E0010E277 /* UIDevice+TFDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+TFDevice.h"; sourceTree = "<group>"; };
  724. 277933CB27E3249E0010E277 /* UIScrollView+KSTouch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+KSTouch.h"; sourceTree = "<group>"; };
  725. 277933CC27E3249E0010E277 /* UIButton+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Property.h"; sourceTree = "<group>"; };
  726. 277933CD27E3249E0010E277 /* UrlDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UrlDecode.h; sourceTree = "<group>"; };
  727. 277933CE27E3249E0010E277 /* UILabel+QWTopLeftLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+QWTopLeftLabel.h"; sourceTree = "<group>"; };
  728. 277933CF27E3249E0010E277 /* UIImage+UIImageScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+UIImageScale.h"; sourceTree = "<group>"; };
  729. 277933D027E3249E0010E277 /* NSObject+AutoProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AutoProperty.h"; sourceTree = "<group>"; };
  730. 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+EnlargeEdge.m"; sourceTree = "<group>"; };
  731. 277933D227E3249E0010E277 /* UIButton+HasChooseImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+HasChooseImage.h"; sourceTree = "<group>"; };
  732. 277933D327E3249E0010E277 /* UIImage+ResizeImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ResizeImage.h"; sourceTree = "<group>"; };
  733. 277933D427E3249E0010E277 /* UIView+ShowProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ShowProgress.h"; sourceTree = "<group>"; };
  734. 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  735. 277933D627E3249E0010E277 /* UIImage+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Property.h"; sourceTree = "<group>"; };
  736. 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+KSShow.m"; sourceTree = "<group>"; };
  737. 277933D827E3249E0010E277 /* UIView+KSLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSLayer.h"; sourceTree = "<group>"; };
  738. 277933D927E3249E0010E277 /* UIView+Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Animation.h"; sourceTree = "<group>"; };
  739. 277933DA27E3249E0010E277 /* UIImage+Resize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resize.m"; sourceTree = "<group>"; };
  740. 277933DC27E3249E0010E277 /* KSVideoEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoEditor.h; sourceTree = "<group>"; };
  741. 277933DD27E3249E0010E277 /* KSVideoEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoEditor.m; sourceTree = "<group>"; };
  742. 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSGifRefreshHeader.m; sourceTree = "<group>"; };
  743. 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSGifRefreshFooter.m; sourceTree = "<group>"; };
  744. 277933E127E3249E0010E277 /* KSGifRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSGifRefreshFooter.h; sourceTree = "<group>"; };
  745. 277933E227E3249E0010E277 /* KSGifRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSGifRefreshHeader.h; sourceTree = "<group>"; };
  746. 277933E427E3249E0010E277 /* KSAudioSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioSessionManager.m; sourceTree = "<group>"; };
  747. 277933E527E3249F0010E277 /* KSAudioSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioSessionManager.h; sourceTree = "<group>"; };
  748. 277933E727E3249F0010E277 /* VoNetWorking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoNetWorking.h; sourceTree = "<group>"; };
  749. 277933E927E3249F0010E277 /* VoLRUManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoLRUManager.m; sourceTree = "<group>"; };
  750. 277933EA27E3249F0010E277 /* VoMemoryCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoMemoryCache.h; sourceTree = "<group>"; };
  751. 277933EB27E3249F0010E277 /* VoDiskCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoDiskCache.m; sourceTree = "<group>"; };
  752. 277933EC27E3249F0010E277 /* VoCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoCacheManager.m; sourceTree = "<group>"; };
  753. 277933ED27E3249F0010E277 /* VoLRUManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoLRUManager.h; sourceTree = "<group>"; };
  754. 277933EE27E3249F0010E277 /* VoMemoryCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoMemoryCache.m; sourceTree = "<group>"; };
  755. 277933EF27E3249F0010E277 /* VoCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoCacheManager.h; sourceTree = "<group>"; };
  756. 277933F027E3249F0010E277 /* VoDiskCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoDiskCache.h; sourceTree = "<group>"; };
  757. 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "VoNetworking+RequestManager.m"; sourceTree = "<group>"; };
  758. 277933F227E3249F0010E277 /* VoNetWorking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoNetWorking.m; sourceTree = "<group>"; };
  759. 277933F327E3249F0010E277 /* VoNetworking+RequestManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "VoNetworking+RequestManager.h"; sourceTree = "<group>"; };
  760. 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DiskFreeSpaceManager.m; sourceTree = "<group>"; };
  761. 277933F627E3249F0010E277 /* DiskFreeSpaceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiskFreeSpaceManager.h; sourceTree = "<group>"; };
  762. 277933F827E3249F0010E277 /* KSPremissionAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSPremissionAlert.m; sourceTree = "<group>"; };
  763. 277933F927E3249F0010E277 /* KSPremissionAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSPremissionAlert.xib; sourceTree = "<group>"; };
  764. 277933FA27E3249F0010E277 /* KSPremissionAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSPremissionAlert.h; sourceTree = "<group>"; };
  765. 277933FC27E3249F0010E277 /* UIImage+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
  766. 277933FD27E3249F0010E277 /* GRCreateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRCreateManager.m; sourceTree = "<group>"; };
  767. 277933FE27E3249F0010E277 /* GRScanManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRScanManager.h; sourceTree = "<group>"; };
  768. 277933FF27E3249F0010E277 /* ShoppCatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppCatView.h; sourceTree = "<group>"; };
  769. 2779340127E3249F0010E277 /* QCCountdownButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QCCountdownButton.m; sourceTree = "<group>"; };
  770. 2779340227E3249F0010E277 /* QCCountdownButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QCCountdownButton.h; sourceTree = "<group>"; };
  771. 2779340327E3249F0010E277 /* LifeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LifeButton.h; sourceTree = "<group>"; };
  772. 2779340427E3249F0010E277 /* KSStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSStatusView.m; sourceTree = "<group>"; };
  773. 2779340527E3249F0010E277 /* prodectButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prodectButton.h; sourceTree = "<group>"; };
  774. 2779340627E3249F0010E277 /* StoreButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreButton.h; sourceTree = "<group>"; };
  775. 2779340727E3249F0010E277 /* KSChoosePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChoosePicker.m; sourceTree = "<group>"; };
  776. 2779340927E3249F0010E277 /* KSAudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordManager.h; sourceTree = "<group>"; };
  777. 2779340A27E3249F0010E277 /* KSRecordStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordStatusView.h; sourceTree = "<group>"; };
  778. 2779340B27E3249F0010E277 /* KSHoldButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHoldButton.m; sourceTree = "<group>"; };
  779. 2779340C27E3249F0010E277 /* KSRecordPowerAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordPowerAnimationView.h; sourceTree = "<group>"; };
  780. 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordFileManager.m; sourceTree = "<group>"; };
  781. 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ValueAdd.m"; sourceTree = "<group>"; };
  782. 2779340F27E3249F0010E277 /* KSRecordStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordStatusView.m; sourceTree = "<group>"; };
  783. 2779341027E3249F0010E277 /* KSAudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordManager.m; sourceTree = "<group>"; };
  784. 2779341127E3249F0010E277 /* KSHoldButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHoldButton.h; sourceTree = "<group>"; };
  785. 2779341227E3249F0010E277 /* UIView+ValueAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ValueAdd.h"; sourceTree = "<group>"; };
  786. 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordPowerAnimationView.m; sourceTree = "<group>"; };
  787. 2779341427E3249F0010E277 /* KSAudioRecordFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordFileManager.h; sourceTree = "<group>"; };
  788. 2779341527E3249F0010E277 /* HomeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeButton.m; sourceTree = "<group>"; };
  789. 2779341627E3249F0010E277 /* KSImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageButton.h; sourceTree = "<group>"; };
  790. 2779341727E3249F0010E277 /* KSFullDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSFullDatePicker.m; sourceTree = "<group>"; };
  791. 2779341827E3249F0010E277 /* NSString+phone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+phone.h"; sourceTree = "<group>"; };
  792. 2779341927E3249F0010E277 /* KSMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaManager.m; sourceTree = "<group>"; };
  793. 2779341A27E3249F0010E277 /* ShopMessBtn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopMessBtn.m; sourceTree = "<group>"; };
  794. 2779341B27E324A00010E277 /* UIColor+Hex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
  795. 2779341C27E324A00010E277 /* shopview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = shopview.m; sourceTree = "<group>"; };
  796. 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YKMultiLevelTableView.m; sourceTree = "<group>"; };
  797. 2779341F27E324A00010E277 /* YKNodeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YKNodeModel.m; sourceTree = "<group>"; };
  798. 2779342027E324A00010E277 /* YKNodeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YKNodeModel.h; sourceTree = "<group>"; };
  799. 2779342127E324A00010E277 /* YKMultiLevelTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YKMultiLevelTableView.h; sourceTree = "<group>"; };
  800. 2779342227E324A00010E277 /* pickBut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = pickBut.m; sourceTree = "<group>"; };
  801. 2779342327E324A00010E277 /* KSMessageInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMessageInputView.h; sourceTree = "<group>"; };
  802. 2779342427E324A00010E277 /* NSString+MD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MD5.h"; sourceTree = "<group>"; };
  803. 2779342527E324A00010E277 /* ShopButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopButton.h; sourceTree = "<group>"; };
  804. 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+NJ.m"; sourceTree = "<group>"; };
  805. 2779342727E324A00010E277 /* PIckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PIckView.h; sourceTree = "<group>"; };
  806. 2779342827E324A00010E277 /* StoreShopCaterview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreShopCaterview.m; sourceTree = "<group>"; };
  807. 2779342A27E324A00010E277 /* UITextField_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextField_Toolbar.m; sourceTree = "<group>"; };
  808. 2779342B27E324A00010E277 /* SkipTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextField.m; sourceTree = "<group>"; };
  809. 2779342C27E324A00010E277 /* SkipTextProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextProtocol.h; sourceTree = "<group>"; };
  810. 2779342D27E324A00010E277 /* SkipTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextView.h; sourceTree = "<group>"; };
  811. 2779342E27E324A00010E277 /* UITextView_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextView_Toolbar.m; sourceTree = "<group>"; };
  812. 2779342F27E324A00010E277 /* UITextField_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField_Toolbar.h; sourceTree = "<group>"; };
  813. 2779343027E324A00010E277 /* SkipTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextField.h; sourceTree = "<group>"; };
  814. 2779343127E324A00010E277 /* SkipTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextView.m; sourceTree = "<group>"; };
  815. 2779343227E324A00010E277 /* UITextView_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextView_Toolbar.h; sourceTree = "<group>"; };
  816. 2779343327E324A00010E277 /* NSDate+KSBaseDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+KSBaseDatePicker.h"; sourceTree = "<group>"; };
  817. 2779343427E324A00010E277 /* SearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchView.m; sourceTree = "<group>"; };
  818. 2779343527E324A00010E277 /* StateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateView.h; sourceTree = "<group>"; };
  819. 2779343627E324A00010E277 /* sortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sortButton.h; sourceTree = "<group>"; };
  820. 2779343727E324A00010E277 /* KSInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSInputView.h; sourceTree = "<group>"; };
  821. 2779343827E324A00010E277 /* KeyChainTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyChainTools.h; sourceTree = "<group>"; };
  822. 2779343927E324A00010E277 /* KSStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSStatusView.h; sourceTree = "<group>"; };
  823. 2779343A27E324A00010E277 /* prodectButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = prodectButton.m; sourceTree = "<group>"; };
  824. 2779343B27E324A00010E277 /* StoreButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreButton.m; sourceTree = "<group>"; };
  825. 2779343C27E324A00010E277 /* LifeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LifeButton.m; sourceTree = "<group>"; };
  826. 2779343D27E324A00010E277 /* ShoppCatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppCatView.m; sourceTree = "<group>"; };
  827. 2779343E27E324A00010E277 /* GRScanManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRScanManager.m; sourceTree = "<group>"; };
  828. 2779343F27E324A00010E277 /* GRCreateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRCreateManager.h; sourceTree = "<group>"; };
  829. 2779344027E324A00010E277 /* UIImage+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
  830. 2779344127E324A00010E277 /* UIColor+Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
  831. 2779344227E324A00010E277 /* ShopMessBtn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopMessBtn.h; sourceTree = "<group>"; };
  832. 2779344327E324A00010E277 /* KSMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaManager.h; sourceTree = "<group>"; };
  833. 2779344427E324A00010E277 /* NSString+phone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+phone.m"; sourceTree = "<group>"; };
  834. 2779344527E324A00010E277 /* KSFullDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSFullDatePicker.h; sourceTree = "<group>"; };
  835. 2779344627E324A00010E277 /* KSImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageButton.m; sourceTree = "<group>"; };
  836. 2779344727E324A00010E277 /* HomeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeButton.h; sourceTree = "<group>"; };
  837. 2779344827E324A00010E277 /* KSChoosePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChoosePicker.h; sourceTree = "<group>"; };
  838. 2779344927E324A00010E277 /* PIckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PIckView.m; sourceTree = "<group>"; };
  839. 2779344A27E324A00010E277 /* MBProgressHUD+NJ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+NJ.h"; sourceTree = "<group>"; };
  840. 2779344B27E324A00010E277 /* ShopButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopButton.m; sourceTree = "<group>"; };
  841. 2779344C27E324A00010E277 /* NSString+MD5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MD5.m"; sourceTree = "<group>"; };
  842. 2779344D27E324A00010E277 /* KSMessageInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMessageInputView.m; sourceTree = "<group>"; };
  843. 2779344E27E324A00010E277 /* pickBut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pickBut.h; sourceTree = "<group>"; };
  844. 2779344F27E324A00010E277 /* shopview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopview.h; sourceTree = "<group>"; };
  845. 2779345027E324A00010E277 /* KSInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSInputView.m; sourceTree = "<group>"; };
  846. 2779345127E324A00010E277 /* KeyChainTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KeyChainTools.m; sourceTree = "<group>"; };
  847. 2779345227E324A00010E277 /* sortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = sortButton.m; sourceTree = "<group>"; };
  848. 2779345327E324A00010E277 /* StateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateView.m; sourceTree = "<group>"; };
  849. 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+KSBaseDatePicker.m"; sourceTree = "<group>"; };
  850. 2779345527E324A00010E277 /* SearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchView.h; sourceTree = "<group>"; };
  851. 2779345727E324A10010E277 /* LLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhotoBrowser.m; sourceTree = "<group>"; };
  852. 2779345827E324A10010E277 /* LLCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLCollectionViewCell.h; sourceTree = "<group>"; };
  853. 2779345A27E324A10010E277 /* LLImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLImageCache.m; sourceTree = "<group>"; };
  854. 2779345B27E324A10010E277 /* LLFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLFileManager.m; sourceTree = "<group>"; };
  855. 2779345C27E324A10010E277 /* LLImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLImageCache.h; sourceTree = "<group>"; };
  856. 2779345D27E324A10010E277 /* LLFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLFileManager.h; sourceTree = "<group>"; };
  857. 2779345E27E324A10010E277 /* LLPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhoto.m; sourceTree = "<group>"; };
  858. 2779345F27E324A10010E277 /* LLCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLCollectionViewCell.m; sourceTree = "<group>"; };
  859. 2779346027E324A10010E277 /* LLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhotoBrowser.h; sourceTree = "<group>"; };
  860. 2779346127E324A10010E277 /* LLPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhoto.h; sourceTree = "<group>"; };
  861. 2779346227E324A10010E277 /* StoreShopCaterview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreShopCaterview.h; sourceTree = "<group>"; };
  862. 2779346427E324A10010E277 /* CoinModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoinModel.h; sourceTree = "<group>"; };
  863. 2779346527E324A10010E277 /* ArchiveTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchiveTools.h; sourceTree = "<group>"; };
  864. 2779346627E324A10010E277 /* NSObject+Archiving.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Archiving.m"; sourceTree = "<group>"; };
  865. 2779346727E324A10010E277 /* CoinModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CoinModel.m; sourceTree = "<group>"; };
  866. 2779346827E324A10010E277 /* ArchiveTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArchiveTools.m; sourceTree = "<group>"; };
  867. 2779346927E324A10010E277 /* NSObject+Archiving.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Archiving.h"; sourceTree = "<group>"; };
  868. 2779346B27E324A10010E277 /* UserKeyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserKeyHeader.h; sourceTree = "<group>"; };
  869. 2779346C27E324A10010E277 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
  870. 2779346D27E324A10010E277 /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  871. 2779347027E324A10010E277 /* AnimationContoller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationContoller.h; sourceTree = "<group>"; };
  872. 2779347127E324A10010E277 /* KLTNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KLTNavigationController.m; sourceTree = "<group>"; };
  873. 2779347227E324A10010E277 /* KLTNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KLTNavigationController.h; sourceTree = "<group>"; };
  874. 2779347327E324A10010E277 /* AnimationContoller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnimationContoller.m; sourceTree = "<group>"; };
  875. 2779347527E324A10010E277 /* DZNSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DZNSegmentedControl.m; sourceTree = "<group>"; };
  876. 2779347627E324A10010E277 /* DZNSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DZNSegmentedControl.h; sourceTree = "<group>"; };
  877. 2779347827E324A10010E277 /* WMLightView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMLightView.h; sourceTree = "<group>"; };
  878. 2779347927E324A10010E277 /* WMPlayerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayerModel.m; sourceTree = "<group>"; };
  879. 2779347A27E324A10010E277 /* FastForwardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FastForwardView.h; sourceTree = "<group>"; };
  880. 2779347B27E324A10010E277 /* WMPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WMPlayer.bundle; sourceTree = "<group>"; };
  881. 2779347C27E324A10010E277 /* WMPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayer.h; sourceTree = "<group>"; };
  882. 2779347D27E324A10010E277 /* WMPlayerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayerModel.h; sourceTree = "<group>"; };
  883. 2779347E27E324A10010E277 /* WMLightView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMLightView.m; sourceTree = "<group>"; };
  884. 2779347F27E324A10010E277 /* FastForwardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FastForwardView.m; sourceTree = "<group>"; };
  885. 2779348027E324A10010E277 /* WMPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayer.m; sourceTree = "<group>"; };
  886. 2779348227E324A10010E277 /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewCell.h; sourceTree = "<group>"; };
  887. 2779348327E324A10010E277 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPickerController.h; sourceTree = "<group>"; };
  888. 2779348427E324A10010E277 /* TZImageCropManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageCropManager.m; sourceTree = "<group>"; };
  889. 2779348527E324A10010E277 /* TZImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageManager.h; sourceTree = "<group>"; };
  890. 2779348627E324A10010E277 /* TZAssetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetCell.m; sourceTree = "<group>"; };
  891. 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoEditedPreviewController.m; sourceTree = "<group>"; };
  892. 2779348827E324A10010E277 /* TZVideoCropController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoCropController.m; sourceTree = "<group>"; };
  893. 2779348927E324A10010E277 /* TZVideoPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoPlayerController.m; sourceTree = "<group>"; };
  894. 2779348A27E324A10010E277 /* TZAssetModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetModel.m; sourceTree = "<group>"; };
  895. 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+TZImagePicker.m"; sourceTree = "<group>"; };
  896. 2779348C27E324A10010E277 /* UIView+TZLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+TZLayout.h"; sourceTree = "<group>"; };
  897. 2779348D27E324A10010E277 /* TZLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZLocationManager.h; sourceTree = "<group>"; };
  898. 2779348E27E324A10010E277 /* TZImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImagePickerController.h; sourceTree = "<group>"; };
  899. 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewController.m; sourceTree = "<group>"; };
  900. 2779349027E324A10010E277 /* TZImagePickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TZImagePickerController.bundle; sourceTree = "<group>"; };
  901. 2779349127E324A10010E277 /* TZProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZProgressView.m; sourceTree = "<group>"; };
  902. 2779349227E324A10010E277 /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZGifPhotoPreviewController.h; sourceTree = "<group>"; };
  903. 2779349327E324A10010E277 /* TZImageRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageRequestOperation.h; sourceTree = "<group>"; };
  904. 2779349427E324A10010E277 /* TZVideoEditedPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoEditedPreviewController.h; sourceTree = "<group>"; };
  905. 2779349527E324A10010E277 /* TZAssetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetCell.h; sourceTree = "<group>"; };
  906. 2779349627E324A10010E277 /* TZImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageManager.m; sourceTree = "<group>"; };
  907. 2779349727E324A20010E277 /* TZImageCropManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageCropManager.h; sourceTree = "<group>"; };
  908. 2779349827E324A20010E277 /* TZPhotoPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPickerController.m; sourceTree = "<group>"; };
  909. 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewCell.m; sourceTree = "<group>"; };
  910. 2779349A27E324A20010E277 /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+TZImagePicker.h"; sourceTree = "<group>"; };
  911. 2779349B27E324A20010E277 /* UIView+TZLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+TZLayout.m"; sourceTree = "<group>"; };
  912. 2779349C27E324A20010E277 /* TZAssetModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetModel.h; sourceTree = "<group>"; };
  913. 2779349D27E324A20010E277 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoPlayerController.h; sourceTree = "<group>"; };
  914. 2779349E27E324A20010E277 /* TZVideoCropController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoCropController.h; sourceTree = "<group>"; };
  915. 2779349F27E324A20010E277 /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewController.h; sourceTree = "<group>"; };
  916. 277934A027E324A20010E277 /* TZImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImagePickerController.m; sourceTree = "<group>"; };
  917. 277934A127E324A20010E277 /* TZLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZLocationManager.m; sourceTree = "<group>"; };
  918. 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZGifPhotoPreviewController.m; sourceTree = "<group>"; };
  919. 277934A327E324A20010E277 /* TZImageRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageRequestOperation.m; sourceTree = "<group>"; };
  920. 277934A427E324A20010E277 /* TZProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZProgressView.h; sourceTree = "<group>"; };
  921. 277934A627E324A20010E277 /* MSSBrowseRemindView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseRemindView.h; sourceTree = "<group>"; };
  922. 277934A727E324A20010E277 /* MSSBrowseZoomScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseZoomScrollView.h; sourceTree = "<group>"; };
  923. 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLoadingImageView.m; sourceTree = "<group>"; };
  924. 277934A927E324A20010E277 /* MSSBrowseBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseBaseViewController.h; sourceTree = "<group>"; };
  925. 277934AA27E324A20010E277 /* UIImage+MSSScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MSSScale.h"; sourceTree = "<group>"; };
  926. 277934AB27E324A20010E277 /* MSSBrowseNetworkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseNetworkViewController.h; sourceTree = "<group>"; };
  927. 277934AC27E324A20010E277 /* MSSBrowseActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheet.h; sourceTree = "<group>"; };
  928. 277934AD27E324A20010E277 /* MSSBrowseActionSheetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheetCell.h; sourceTree = "<group>"; };
  929. 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLocalViewController.m; sourceTree = "<group>"; };
  930. 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseCollectionViewCell.m; sourceTree = "<group>"; };
  931. 277934B027E324A20010E277 /* UIView+MSSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MSSLayout.h"; sourceTree = "<group>"; };
  932. 277934B127E324A20010E277 /* MSSBrowseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseModel.m; sourceTree = "<group>"; };
  933. 277934B227E324A20010E277 /* MSSBrowseDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseDefine.h; sourceTree = "<group>"; };
  934. 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheet.m; sourceTree = "<group>"; };
  935. 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseNetworkViewController.m; sourceTree = "<group>"; };
  936. 277934B527E324A20010E277 /* UIImage+MSSScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MSSScale.m"; sourceTree = "<group>"; };
  937. 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseBaseViewController.m; sourceTree = "<group>"; };
  938. 277934B727E324A20010E277 /* MSSBrowseLoadingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLoadingImageView.h; sourceTree = "<group>"; };
  939. 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseZoomScrollView.m; sourceTree = "<group>"; };
  940. 277934B927E324A20010E277 /* MSSBrowseRemindView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseRemindView.m; sourceTree = "<group>"; };
  941. 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@3x.png"; sourceTree = "<group>"; };
  942. 277934BB27E324A20010E277 /* MSSBrowseCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseCollectionViewCell.h; sourceTree = "<group>"; };
  943. 277934BC27E324A20010E277 /* MSSBrowseLocalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLocalViewController.h; sourceTree = "<group>"; };
  944. 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheetCell.m; sourceTree = "<group>"; };
  945. 277934BE27E324A20010E277 /* MSSBrowseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseModel.h; sourceTree = "<group>"; };
  946. 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@2x.png"; sourceTree = "<group>"; };
  947. 277934C027E324A20010E277 /* UIView+MSSLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MSSLayout.m"; sourceTree = "<group>"; };
  948. 277934C227E324A20010E277 /* FSCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCollectionView.m; sourceTree = "<group>"; };
  949. 277934C327E324A20010E277 /* FSCalendarWeekdayView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarWeekdayView.h; sourceTree = "<group>"; };
  950. 277934C427E324A20010E277 /* FSCalendarCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCollectionViewLayout.h; sourceTree = "<group>"; };
  951. 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarDelegationProxy.m; sourceTree = "<group>"; };
  952. 277934C627E324A20010E277 /* FSCalendarExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarExtensions.h; sourceTree = "<group>"; };
  953. 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarDelegationFactory.m; sourceTree = "<group>"; };
  954. 277934C827E324A20010E277 /* FSCalendarSeparatorDecorationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarSeparatorDecorationView.h; sourceTree = "<group>"; };
  955. 277934C927E324A20010E277 /* FSCalendarCalculator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCalculator.h; sourceTree = "<group>"; };
  956. 277934CA27E324A20010E277 /* FSCalendarHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarHeaderView.h; sourceTree = "<group>"; };
  957. 277934CB27E324A20010E277 /* FSCalendarConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarConstants.h; sourceTree = "<group>"; };
  958. 277934CC27E324A20010E277 /* FSCalendarAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarAppearance.h; sourceTree = "<group>"; };
  959. 277934CD27E324A20010E277 /* FSCalendarTransitionCoordinator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarTransitionCoordinator.h; sourceTree = "<group>"; };
  960. 277934CE27E324A30010E277 /* FSCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCell.m; sourceTree = "<group>"; };
  961. 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarStickyHeader.m; sourceTree = "<group>"; };
  962. 277934D027E324A30010E277 /* FSCalendar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendar.m; sourceTree = "<group>"; };
  963. 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCollectionViewLayout.m; sourceTree = "<group>"; };
  964. 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarWeekdayView.m; sourceTree = "<group>"; };
  965. 277934D327E324A30010E277 /* FSCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCollectionView.h; sourceTree = "<group>"; };
  966. 277934D427E324A30010E277 /* FSCalendarDynamicHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDynamicHeader.h; sourceTree = "<group>"; };
  967. 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarSeparatorDecorationView.m; sourceTree = "<group>"; };
  968. 277934D627E324A30010E277 /* FSCalendarDelegationFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDelegationFactory.h; sourceTree = "<group>"; };
  969. 277934D727E324A30010E277 /* FSCalendarExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarExtensions.m; sourceTree = "<group>"; };
  970. 277934D827E324A30010E277 /* FSCalendarDelegationProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDelegationProxy.h; sourceTree = "<group>"; };
  971. 277934D927E324A30010E277 /* FSCalendarConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarConstants.m; sourceTree = "<group>"; };
  972. 277934DA27E324A30010E277 /* FSCalendarCalculator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCalculator.m; sourceTree = "<group>"; };
  973. 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarHeaderView.m; sourceTree = "<group>"; };
  974. 277934DC27E324A30010E277 /* FSCalendarStickyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarStickyHeader.h; sourceTree = "<group>"; };
  975. 277934DD27E324A30010E277 /* FSCalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendar.h; sourceTree = "<group>"; };
  976. 277934DE27E324A30010E277 /* FSCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCell.h; sourceTree = "<group>"; };
  977. 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarTransitionCoordinator.m; sourceTree = "<group>"; };
  978. 277934E027E324A30010E277 /* FSCalendarAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarAppearance.m; sourceTree = "<group>"; };
  979. 277934E227E324A30010E277 /* QWdynamicModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QWdynamicModel.m; sourceTree = "<group>"; };
  980. 277934E327E324A30010E277 /* UIView+SDExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SDExtension.h"; sourceTree = "<group>"; };
  981. 277934E427E324A30010E277 /* SDQWMaskCustomModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDQWMaskCustomModel.h; sourceTree = "<group>"; };
  982. 277934E527E324A30010E277 /* SDCycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCycleScrollView.h; sourceTree = "<group>"; };
  983. 277934E627E324A30010E277 /* SDCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCollectionViewCell.h; sourceTree = "<group>"; };
  984. 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SDQWMaskCustomView.xib; sourceTree = "<group>"; };
  985. 277934E827E324A30010E277 /* SDQWMaskCustomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDQWMaskCustomView.h; sourceTree = "<group>"; };
  986. 277934E927E324A30010E277 /* SDCycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCycleScrollView.m; sourceTree = "<group>"; };
  987. 277934EA27E324A30010E277 /* UIView+SDExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SDExtension.m"; sourceTree = "<group>"; };
  988. 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDQWMaskCustomModel.m; sourceTree = "<group>"; };
  989. 277934EC27E324A30010E277 /* QWdynamicModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QWdynamicModel.h; sourceTree = "<group>"; };
  990. 277934ED27E324A30010E277 /* SDCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCollectionViewCell.m; sourceTree = "<group>"; };
  991. 277934EF27E324A30010E277 /* TAAbstractDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAbstractDotView.h; sourceTree = "<group>"; };
  992. 277934F027E324A30010E277 /* TADotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TADotView.m; sourceTree = "<group>"; };
  993. 277934F127E324A30010E277 /* TAPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAPageControl.m; sourceTree = "<group>"; };
  994. 277934F227E324A30010E277 /* TAAnimatedDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAnimatedDotView.m; sourceTree = "<group>"; };
  995. 277934F327E324A30010E277 /* TAAbstractDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAbstractDotView.m; sourceTree = "<group>"; };
  996. 277934F427E324A30010E277 /* TADotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TADotView.h; sourceTree = "<group>"; };
  997. 277934F527E324A30010E277 /* TAAnimatedDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAnimatedDotView.h; sourceTree = "<group>"; };
  998. 277934F627E324A30010E277 /* TAPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAPageControl.h; sourceTree = "<group>"; };
  999. 277934F727E324A30010E277 /* SDQWMaskCustomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDQWMaskCustomView.m; sourceTree = "<group>"; };
  1000. 277934F927E324A30010E277 /* ALCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCell.m; sourceTree = "<group>"; };
  1001. 277934FA27E324A30010E277 /* ALCalendarConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarConfig.m; sourceTree = "<group>"; };
  1002. 277934FB27E324A30010E277 /* ALCalendarHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHeader.m; sourceTree = "<group>"; };
  1003. 277934FC27E324A30010E277 /* ALCalendarDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarDate.m; sourceTree = "<group>"; };
  1004. 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCollectionView.m; sourceTree = "<group>"; };
  1005. 277934FE27E324A30010E277 /* ALCalendarHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHelper.m; sourceTree = "<group>"; };
  1006. 277934FF27E324A30010E277 /* UIView+ALFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ALFrame.h"; sourceTree = "<group>"; };
  1007. 2779350027E324A30010E277 /* ALCalendarPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarPicker.h; sourceTree = "<group>"; };
  1008. 2779350127E324A30010E277 /* ALCalendarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarManager.h; sourceTree = "<group>"; };
  1009. 2779350227E324A30010E277 /* ALCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCollectionView.h; sourceTree = "<group>"; };
  1010. 2779350327E324A30010E277 /* ALCalendarDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarDate.h; sourceTree = "<group>"; };
  1011. 2779350427E324A30010E277 /* ALCalendarHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHeader.h; sourceTree = "<group>"; };
  1012. 2779350527E324A30010E277 /* ALCalendarConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarConfig.h; sourceTree = "<group>"; };
  1013. 2779350627E324A30010E277 /* ALCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCell.h; sourceTree = "<group>"; };
  1014. 2779350727E324A40010E277 /* ALCalendarHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHelper.h; sourceTree = "<group>"; };
  1015. 2779350827E324A40010E277 /* ALCalendarPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarPicker.m; sourceTree = "<group>"; };
  1016. 2779350927E324A40010E277 /* UIView+ALFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ALFrame.m"; sourceTree = "<group>"; };
  1017. 2779350A27E324A40010E277 /* ALCalendarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarManager.m; sourceTree = "<group>"; };
  1018. 27F9031127E87C2C00C08A19 /* NetworkingCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkingCheckController.h; sourceTree = "<group>"; };
  1019. 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkingCheckController.m; sourceTree = "<group>"; };
  1020. 27F9031527E87C2C00C08A19 /* KSNetworkAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAlert.h; sourceTree = "<group>"; };
  1021. 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkBodyView.m; sourceTree = "<group>"; };
  1022. 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetworkBodyView.xib; sourceTree = "<group>"; };
  1023. 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAlert.m; sourceTree = "<group>"; };
  1024. 27F9031927E87C2D00C08A19 /* NetworkBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkBodyView.h; sourceTree = "<group>"; };
  1025. 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSNetworkAlert.xib; sourceTree = "<group>"; };
  1026. 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceCheckView.xib; sourceTree = "<group>"; };
  1027. 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioPlayManager.m; sourceTree = "<group>"; };
  1028. 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioRecordManager.m; sourceTree = "<group>"; };
  1029. 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceCheckView.m; sourceTree = "<group>"; };
  1030. 27F9032027E87C2D00C08A19 /* AudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioRecordManager.h; sourceTree = "<group>"; };
  1031. 27F9032127E87C2D00C08A19 /* DeviceCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceCheckView.h; sourceTree = "<group>"; };
  1032. 27F9032227E87C2D00C08A19 /* AudioPlayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioPlayManager.h; sourceTree = "<group>"; };
  1033. 27F9032527E87C2E00C08A19 /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingViewController.h; sourceTree = "<group>"; };
  1034. 27F9032627E87C2E00C08A19 /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingViewController.m; sourceTree = "<group>"; };
  1035. 27F9033327E87C8A00C08A19 /* MineNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineNavView.h; sourceTree = "<group>"; };
  1036. 27F9033427E87C8A00C08A19 /* MineNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineNavView.m; sourceTree = "<group>"; };
  1037. 27F9033527E87C8B00C08A19 /* MineNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MineNavView.xib; sourceTree = "<group>"; };
  1038. 27F9033827E87FD500C08A19 /* MineBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MineBodyView.h; sourceTree = "<group>"; };
  1039. 27F9033927E87FD500C08A19 /* MineBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MineBodyView.m; sourceTree = "<group>"; };
  1040. 27F9033B27E87FE100C08A19 /* MineBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MineBodyView.xib; sourceTree = "<group>"; };
  1041. 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent.debug.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent.debug.xcconfig"; sourceTree = "<group>"; };
  1042. C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudent_KulexiuForStudentUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1043. D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig"; sourceTree = "<group>"; };
  1044. DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudentTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  1045. ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-KulexiuForStudentTests.release.xcconfig"; path = "Target Support Files/Pods-KulexiuForStudentTests/Pods-KulexiuForStudentTests.release.xcconfig"; sourceTree = "<group>"; };
  1046. /* End PBXFileReference section */
  1047. /* Begin PBXFrameworksBuildPhase section */
  1048. 275E8AA227E18F8800DD3F6E /* Frameworks */ = {
  1049. isa = PBXFrameworksBuildPhase;
  1050. buildActionMask = 2147483647;
  1051. files = (
  1052. 82EE25CEB2BB5A0E1BB8D54B /* Pods_KulexiuForStudent.framework in Frameworks */,
  1053. );
  1054. runOnlyForDeploymentPostprocessing = 0;
  1055. };
  1056. 275E8ABD27E18F8C00DD3F6E /* Frameworks */ = {
  1057. isa = PBXFrameworksBuildPhase;
  1058. buildActionMask = 2147483647;
  1059. files = (
  1060. 93F0FA52C8A72F83D07C15A6 /* Pods_KulexiuForStudentTests.framework in Frameworks */,
  1061. );
  1062. runOnlyForDeploymentPostprocessing = 0;
  1063. };
  1064. 275E8AC727E18F8C00DD3F6E /* Frameworks */ = {
  1065. isa = PBXFrameworksBuildPhase;
  1066. buildActionMask = 2147483647;
  1067. files = (
  1068. C56C141D9D9D478077F14C1E /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework in Frameworks */,
  1069. );
  1070. runOnlyForDeploymentPostprocessing = 0;
  1071. };
  1072. /* End PBXFrameworksBuildPhase section */
  1073. /* Begin PBXGroup section */
  1074. 0C35B95085341A122CBEF122 /* Pods */ = {
  1075. isa = PBXGroup;
  1076. children = (
  1077. 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */,
  1078. 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */,
  1079. 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */,
  1080. D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */,
  1081. 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */,
  1082. ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */,
  1083. );
  1084. path = Pods;
  1085. sourceTree = "<group>";
  1086. };
  1087. 2723B5D027F157D300E0B90B /* Search */ = {
  1088. isa = PBXGroup;
  1089. children = (
  1090. 2723B5D127F157D300E0B90B /* Controller */,
  1091. 2723B5D427F157D300E0B90B /* Model */,
  1092. 2723B5D727F157D300E0B90B /* View */,
  1093. );
  1094. path = Search;
  1095. sourceTree = "<group>";
  1096. };
  1097. 2723B5D127F157D300E0B90B /* Controller */ = {
  1098. isa = PBXGroup;
  1099. children = (
  1100. 2723B5D227F157D300E0B90B /* KSSearchHistoryMessageController.h */,
  1101. 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */,
  1102. );
  1103. path = Controller;
  1104. sourceTree = "<group>";
  1105. };
  1106. 2723B5D427F157D300E0B90B /* Model */ = {
  1107. isa = PBXGroup;
  1108. children = (
  1109. 2723B5D527F157D300E0B90B /* KSSearchResultModel.h */,
  1110. 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */,
  1111. );
  1112. path = Model;
  1113. sourceTree = "<group>";
  1114. };
  1115. 2723B5D727F157D300E0B90B /* View */ = {
  1116. isa = PBXGroup;
  1117. children = (
  1118. 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */,
  1119. 2723B5D927F157D300E0B90B /* KSRCSearchBar.h */,
  1120. 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */,
  1121. 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */,
  1122. 2723B5DC27F157D300E0B90B /* KSSearchResultViewCell.h */,
  1123. 2723B5DD27F157D300E0B90B /* KSSearchRCLabel.h */,
  1124. );
  1125. path = View;
  1126. sourceTree = "<group>";
  1127. };
  1128. 2723B5DE27F157D400E0B90B /* GroupNotice */ = {
  1129. isa = PBXGroup;
  1130. children = (
  1131. 2723B5DF27F157D400E0B90B /* Controller */,
  1132. 2723B5E427F157D400E0B90B /* Model */,
  1133. 2723B5E727F157D400E0B90B /* View */,
  1134. );
  1135. path = GroupNotice;
  1136. sourceTree = "<group>";
  1137. };
  1138. 2723B5DF27F157D400E0B90B /* Controller */ = {
  1139. isa = PBXGroup;
  1140. children = (
  1141. 2723B5E127F157D400E0B90B /* GroupNoticeEditController.h */,
  1142. 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */,
  1143. 2723B5E327F157D400E0B90B /* GroupNoticeViewController.h */,
  1144. 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */,
  1145. );
  1146. path = Controller;
  1147. sourceTree = "<group>";
  1148. };
  1149. 2723B5E427F157D400E0B90B /* Model */ = {
  1150. isa = PBXGroup;
  1151. children = (
  1152. 2723B5E527F157D400E0B90B /* GroupNoticeModel.h */,
  1153. 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */,
  1154. );
  1155. path = Model;
  1156. sourceTree = "<group>";
  1157. };
  1158. 2723B5E727F157D400E0B90B /* View */ = {
  1159. isa = PBXGroup;
  1160. children = (
  1161. 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */,
  1162. 2723B5E927F157D400E0B90B /* NoticeEditBodyView.h */,
  1163. 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */,
  1164. 2723B5EB27F157D400E0B90B /* LFPopupMenu */,
  1165. 2723B5F027F157D400E0B90B /* GroupNoticeCell.h */,
  1166. 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */,
  1167. 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */,
  1168. );
  1169. path = View;
  1170. sourceTree = "<group>";
  1171. };
  1172. 2723B5EB27F157D400E0B90B /* LFPopupMenu */ = {
  1173. isa = PBXGroup;
  1174. children = (
  1175. 2723B5EC27F157D400E0B90B /* LFPopupMenuDefaultConfig.h */,
  1176. 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */,
  1177. 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */,
  1178. 2723B5EF27F157D400E0B90B /* LFPopupMenu.h */,
  1179. );
  1180. path = LFPopupMenu;
  1181. sourceTree = "<group>";
  1182. };
  1183. 2723B5F327F157D500E0B90B /* Group */ = {
  1184. isa = PBXGroup;
  1185. children = (
  1186. 2723B5F427F157D500E0B90B /* Controller */,
  1187. 2723B5FF27F157D500E0B90B /* Model */,
  1188. 2723B60227F157D500E0B90B /* View */,
  1189. );
  1190. path = Group;
  1191. sourceTree = "<group>";
  1192. };
  1193. 2723B5F427F157D500E0B90B /* Controller */ = {
  1194. isa = PBXGroup;
  1195. children = (
  1196. 2723B5FB27F157D500E0B90B /* GroupApplyViewController.h */,
  1197. 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */,
  1198. 2723B5FA27F157D500E0B90B /* GroupMemberViewController.h */,
  1199. 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */,
  1200. 2723B5F827F157D500E0B90B /* GroupSettingViewController.h */,
  1201. 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */,
  1202. 2723B5FE27F157D500E0B90B /* KSChatComplainController.h */,
  1203. 2723B5F927F157D500E0B90B /* KSChatComplainController.m */,
  1204. 2723B5FD27F157D500E0B90B /* KSSelectConversationViewController.h */,
  1205. 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */,
  1206. );
  1207. path = Controller;
  1208. sourceTree = "<group>";
  1209. };
  1210. 2723B5FF27F157D500E0B90B /* Model */ = {
  1211. isa = PBXGroup;
  1212. children = (
  1213. 2723B60027F157D500E0B90B /* ApplyMemberModel.m */,
  1214. 2723B60127F157D500E0B90B /* ApplyMemberModel.h */,
  1215. );
  1216. path = Model;
  1217. sourceTree = "<group>";
  1218. };
  1219. 2723B60227F157D500E0B90B /* View */ = {
  1220. isa = PBXGroup;
  1221. children = (
  1222. 2723B60E27F157D500E0B90B /* ApplyBottomView.h */,
  1223. 2723B60427F157D500E0B90B /* ApplyBottomView.m */,
  1224. 2723B61427F157D500E0B90B /* ApplyBottomView.xib */,
  1225. 2723B60327F157D500E0B90B /* ChatComplainBodyView.h */,
  1226. 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */,
  1227. 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */,
  1228. 2723B61127F157D500E0B90B /* GroupApplyChooseAllCell.h */,
  1229. 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */,
  1230. 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */,
  1231. 2723B60D27F157D500E0B90B /* GroupApplyChooseCell.h */,
  1232. 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */,
  1233. 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */,
  1234. 2723B60A27F157D500E0B90B /* GroupApplyMemberCell.h */,
  1235. 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */,
  1236. 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */,
  1237. 2723B60627F157D500E0B90B /* GroupMemberListCell.h */,
  1238. 2723B61327F157D500E0B90B /* GroupMemberListCell.m */,
  1239. 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */,
  1240. 2723B61527F157D500E0B90B /* GroupSettingBodyView.h */,
  1241. 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */,
  1242. 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */,
  1243. );
  1244. path = View;
  1245. sourceTree = "<group>";
  1246. };
  1247. 2723B63D27F15B5800E0B90B /* SCIndexView */ = {
  1248. isa = PBXGroup;
  1249. children = (
  1250. 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */,
  1251. 2723B63F27F15B5800E0B90B /* UITableView+SCIndexView.h */,
  1252. 2723B64027F15B5800E0B90B /* SCIndexView.m */,
  1253. 2723B64127F15B5800E0B90B /* SCIndexViewConfiguration.h */,
  1254. 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */,
  1255. 2723B64327F15B5800E0B90B /* SCIndexView.h */,
  1256. );
  1257. path = SCIndexView;
  1258. sourceTree = "<group>";
  1259. };
  1260. 275E8A9C27E18F8800DD3F6E = {
  1261. isa = PBXGroup;
  1262. children = (
  1263. 275E8AA727E18F8800DD3F6E /* KulexiuForStudent */,
  1264. 275E8AC327E18F8C00DD3F6E /* KulexiuForStudentTests */,
  1265. 275E8ACD27E18F8C00DD3F6E /* KulexiuForStudentUITests */,
  1266. 275E8AA627E18F8800DD3F6E /* Products */,
  1267. 0C35B95085341A122CBEF122 /* Pods */,
  1268. 9BF683910A95A690331EF86A /* Frameworks */,
  1269. );
  1270. sourceTree = "<group>";
  1271. };
  1272. 275E8AA627E18F8800DD3F6E /* Products */ = {
  1273. isa = PBXGroup;
  1274. children = (
  1275. 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */,
  1276. 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */,
  1277. 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */,
  1278. );
  1279. name = Products;
  1280. sourceTree = "<group>";
  1281. };
  1282. 275E8AA727E18F8800DD3F6E /* KulexiuForStudent */ = {
  1283. isa = PBXGroup;
  1284. children = (
  1285. 275FA1F027E7356A00CFEA2E /* Module */,
  1286. 2779336127E3249C0010E277 /* Common */,
  1287. 275E8AA827E18F8800DD3F6E /* AppDelegate.h */,
  1288. 275E8AA927E18F8800DD3F6E /* AppDelegate.m */,
  1289. 275E8AAE27E18F8800DD3F6E /* ViewController.h */,
  1290. 275E8AAF27E18F8800DD3F6E /* ViewController.m */,
  1291. 275E8AB127E18F8800DD3F6E /* Main.storyboard */,
  1292. 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */,
  1293. 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */,
  1294. 275E8AB927E18F8B00DD3F6E /* Info.plist */,
  1295. 275E8ABA27E18F8B00DD3F6E /* main.m */,
  1296. );
  1297. path = KulexiuForStudent;
  1298. sourceTree = "<group>";
  1299. };
  1300. 275E8AC327E18F8C00DD3F6E /* KulexiuForStudentTests */ = {
  1301. isa = PBXGroup;
  1302. children = (
  1303. 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */,
  1304. );
  1305. path = KulexiuForStudentTests;
  1306. sourceTree = "<group>";
  1307. };
  1308. 275E8ACD27E18F8C00DD3F6E /* KulexiuForStudentUITests */ = {
  1309. isa = PBXGroup;
  1310. children = (
  1311. 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */,
  1312. 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */,
  1313. );
  1314. path = KulexiuForStudentUITests;
  1315. sourceTree = "<group>";
  1316. };
  1317. 275FA1F027E7356A00CFEA2E /* Module */ = {
  1318. isa = PBXGroup;
  1319. children = (
  1320. 275FA1F127E7356A00CFEA2E /* Home */,
  1321. 275FA1F727E7356A00CFEA2E /* Course */,
  1322. 275FA1FD27E7356B00CFEA2E /* Chat */,
  1323. 275FA20327E7356B00CFEA2E /* Mine */,
  1324. 275FA20927E7356B00CFEA2E /* Mall */,
  1325. 275FA20F27E7356B00CFEA2E /* Login */,
  1326. );
  1327. path = Module;
  1328. sourceTree = "<group>";
  1329. };
  1330. 275FA1F127E7356A00CFEA2E /* Home */ = {
  1331. isa = PBXGroup;
  1332. children = (
  1333. 275FA1F227E7356A00CFEA2E /* Controller */,
  1334. 275FA1F527E7356A00CFEA2E /* Model */,
  1335. 275FA1F627E7356A00CFEA2E /* View */,
  1336. );
  1337. path = Home;
  1338. sourceTree = "<group>";
  1339. };
  1340. 275FA1F227E7356A00CFEA2E /* Controller */ = {
  1341. isa = PBXGroup;
  1342. children = (
  1343. 275FA1F327E7356A00CFEA2E /* HomeViewController.m */,
  1344. 275FA1F427E7356A00CFEA2E /* HomeViewController.h */,
  1345. );
  1346. path = Controller;
  1347. sourceTree = "<group>";
  1348. };
  1349. 275FA1F527E7356A00CFEA2E /* Model */ = {
  1350. isa = PBXGroup;
  1351. children = (
  1352. );
  1353. path = Model;
  1354. sourceTree = "<group>";
  1355. };
  1356. 275FA1F627E7356A00CFEA2E /* View */ = {
  1357. isa = PBXGroup;
  1358. children = (
  1359. );
  1360. path = View;
  1361. sourceTree = "<group>";
  1362. };
  1363. 275FA1F727E7356A00CFEA2E /* Course */ = {
  1364. isa = PBXGroup;
  1365. children = (
  1366. 275FA1F827E7356A00CFEA2E /* Controller */,
  1367. 275FA1FB27E7356B00CFEA2E /* Model */,
  1368. 275FA1FC27E7356B00CFEA2E /* View */,
  1369. );
  1370. path = Course;
  1371. sourceTree = "<group>";
  1372. };
  1373. 275FA1F827E7356A00CFEA2E /* Controller */ = {
  1374. isa = PBXGroup;
  1375. children = (
  1376. 275FA1F927E7356A00CFEA2E /* CourseViewController.h */,
  1377. 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */,
  1378. );
  1379. path = Controller;
  1380. sourceTree = "<group>";
  1381. };
  1382. 275FA1FB27E7356B00CFEA2E /* Model */ = {
  1383. isa = PBXGroup;
  1384. children = (
  1385. );
  1386. path = Model;
  1387. sourceTree = "<group>";
  1388. };
  1389. 275FA1FC27E7356B00CFEA2E /* View */ = {
  1390. isa = PBXGroup;
  1391. children = (
  1392. );
  1393. path = View;
  1394. sourceTree = "<group>";
  1395. };
  1396. 275FA1FD27E7356B00CFEA2E /* Chat */ = {
  1397. isa = PBXGroup;
  1398. children = (
  1399. 2723B5F327F157D500E0B90B /* Group */,
  1400. 2723B5DE27F157D400E0B90B /* GroupNotice */,
  1401. 2723B5D027F157D300E0B90B /* Search */,
  1402. 275FA1FE27E7356B00CFEA2E /* Controller */,
  1403. 275FA20127E7356B00CFEA2E /* Model */,
  1404. 275FA20227E7356B00CFEA2E /* View */,
  1405. );
  1406. path = Chat;
  1407. sourceTree = "<group>";
  1408. };
  1409. 275FA1FE27E7356B00CFEA2E /* Controller */ = {
  1410. isa = PBXGroup;
  1411. children = (
  1412. 275FA20027E7356B00CFEA2E /* ChatViewController.h */,
  1413. 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */,
  1414. 2723B59D27F1577F00E0B90B /* ChatAddressViewController.h */,
  1415. 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */,
  1416. 2723B59A27F1577E00E0B90B /* CreateFansGroupViewController.h */,
  1417. 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */,
  1418. 2723B5A127F1578200E0B90B /* KSChatConversationViewController.h */,
  1419. 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */,
  1420. 2723B59F27F1578100E0B90B /* KSChatListViewController.h */,
  1421. 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */,
  1422. );
  1423. path = Controller;
  1424. sourceTree = "<group>";
  1425. };
  1426. 275FA20127E7356B00CFEA2E /* Model */ = {
  1427. isa = PBXGroup;
  1428. children = (
  1429. 2723B5C927F157BA00E0B90B /* GroupListModel.h */,
  1430. 2723B5C827F157B900E0B90B /* GroupListModel.m */,
  1431. 2723B5CB27F157BD00E0B90B /* GroupMemberModel.h */,
  1432. 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */,
  1433. 2723B5C727F157B800E0B90B /* KSRCloudMediaManager.h */,
  1434. 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */,
  1435. );
  1436. path = Model;
  1437. sourceTree = "<group>";
  1438. };
  1439. 275FA20227E7356B00CFEA2E /* View */ = {
  1440. isa = PBXGroup;
  1441. children = (
  1442. 2723B5B027F157AB00E0B90B /* ChatAddressBodyView.h */,
  1443. 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */,
  1444. 2723B5B627F157AF00E0B90B /* ChatAddressHeaderView.h */,
  1445. 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */,
  1446. 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */,
  1447. 2723B5B527F157AF00E0B90B /* ChatNavView.h */,
  1448. 2723B5AA27F157A500E0B90B /* ChatNavView.m */,
  1449. 2723B5B227F157AD00E0B90B /* ChatNavView.xib */,
  1450. 2723B5AD27F157A700E0B90B /* ContractListCell.h */,
  1451. 2723B5AF27F157AA00E0B90B /* ContractListCell.m */,
  1452. 2723B5B727F157B000E0B90B /* ContractListCell.xib */,
  1453. 2723B5B827F157B000E0B90B /* GroupCreateView.h */,
  1454. 2723B5A827F157A300E0B90B /* GroupCreateView.m */,
  1455. 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */,
  1456. 2723B5B327F157AE00E0B90B /* GroupListViewCell.h */,
  1457. 2723B5B927F157B100E0B90B /* GroupListViewCell.m */,
  1458. 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */,
  1459. 2723B5AC27F157A600E0B90B /* KSChatListSearchView.h */,
  1460. 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */,
  1461. 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */,
  1462. );
  1463. path = View;
  1464. sourceTree = "<group>";
  1465. };
  1466. 275FA20327E7356B00CFEA2E /* Mine */ = {
  1467. isa = PBXGroup;
  1468. children = (
  1469. 27F9031B27E87C2D00C08A19 /* DeviceCheck */,
  1470. 27F9030F27E87C2C00C08A19 /* Networking */,
  1471. 27F9032327E87C2E00C08A19 /* Setting */,
  1472. 275FA20427E7356B00CFEA2E /* Controller */,
  1473. 275FA20727E7356B00CFEA2E /* Model */,
  1474. 275FA20827E7356B00CFEA2E /* View */,
  1475. );
  1476. path = Mine;
  1477. sourceTree = "<group>";
  1478. };
  1479. 275FA20427E7356B00CFEA2E /* Controller */ = {
  1480. isa = PBXGroup;
  1481. children = (
  1482. 275FA20527E7356B00CFEA2E /* MineViewController.h */,
  1483. 275FA20627E7356B00CFEA2E /* MineViewController.m */,
  1484. );
  1485. path = Controller;
  1486. sourceTree = "<group>";
  1487. };
  1488. 275FA20727E7356B00CFEA2E /* Model */ = {
  1489. isa = PBXGroup;
  1490. children = (
  1491. );
  1492. path = Model;
  1493. sourceTree = "<group>";
  1494. };
  1495. 275FA20827E7356B00CFEA2E /* View */ = {
  1496. isa = PBXGroup;
  1497. children = (
  1498. 27F9033327E87C8A00C08A19 /* MineNavView.h */,
  1499. 27F9033427E87C8A00C08A19 /* MineNavView.m */,
  1500. 27F9033527E87C8B00C08A19 /* MineNavView.xib */,
  1501. 27F9033827E87FD500C08A19 /* MineBodyView.h */,
  1502. 27F9033927E87FD500C08A19 /* MineBodyView.m */,
  1503. 27F9033B27E87FE100C08A19 /* MineBodyView.xib */,
  1504. );
  1505. path = View;
  1506. sourceTree = "<group>";
  1507. };
  1508. 275FA20927E7356B00CFEA2E /* Mall */ = {
  1509. isa = PBXGroup;
  1510. children = (
  1511. 275FA20A27E7356B00CFEA2E /* Controller */,
  1512. 275FA20D27E7356B00CFEA2E /* Model */,
  1513. 275FA20E27E7356B00CFEA2E /* View */,
  1514. );
  1515. path = Mall;
  1516. sourceTree = "<group>";
  1517. };
  1518. 275FA20A27E7356B00CFEA2E /* Controller */ = {
  1519. isa = PBXGroup;
  1520. children = (
  1521. 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */,
  1522. 275FA20C27E7356B00CFEA2E /* ShopMallViewController.h */,
  1523. );
  1524. path = Controller;
  1525. sourceTree = "<group>";
  1526. };
  1527. 275FA20D27E7356B00CFEA2E /* Model */ = {
  1528. isa = PBXGroup;
  1529. children = (
  1530. );
  1531. path = Model;
  1532. sourceTree = "<group>";
  1533. };
  1534. 275FA20E27E7356B00CFEA2E /* View */ = {
  1535. isa = PBXGroup;
  1536. children = (
  1537. );
  1538. path = View;
  1539. sourceTree = "<group>";
  1540. };
  1541. 275FA20F27E7356B00CFEA2E /* Login */ = {
  1542. isa = PBXGroup;
  1543. children = (
  1544. 275FA21027E7356B00CFEA2E /* Controller */,
  1545. 275FA21927E7356B00CFEA2E /* Model */,
  1546. 275FA21E27E7356B00CFEA2E /* View */,
  1547. );
  1548. path = Login;
  1549. sourceTree = "<group>";
  1550. };
  1551. 275FA21027E7356B00CFEA2E /* Controller */ = {
  1552. isa = PBXGroup;
  1553. children = (
  1554. 275FA21727E7356B00CFEA2E /* FirstSettingViewController.h */,
  1555. 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */,
  1556. 275FA21627E7356B00CFEA2E /* LoginViewController.h */,
  1557. 275FA21327E7356B00CFEA2E /* LoginViewController.m */,
  1558. 275FA21527E7356B00CFEA2E /* PasswordLoginController.h */,
  1559. 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */,
  1560. 275FA21827E7356B00CFEA2E /* VefiCodeLoginController.h */,
  1561. 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */,
  1562. 275FA23E27E737EE00CFEA2E /* ChooseInsturmentViewController.h */,
  1563. 275FA23F27E737EE00CFEA2E /* ChooseInsturmentViewController.m */,
  1564. );
  1565. path = Controller;
  1566. sourceTree = "<group>";
  1567. };
  1568. 275FA21927E7356B00CFEA2E /* Model */ = {
  1569. isa = PBXGroup;
  1570. children = (
  1571. 275FA21D27E7356B00CFEA2E /* UserInfo.h */,
  1572. 275FA21A27E7356B00CFEA2E /* UserInfo.m */,
  1573. 275FA21B27E7356B00CFEA2E /* UserInfoManager.h */,
  1574. 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */,
  1575. );
  1576. path = Model;
  1577. sourceTree = "<group>";
  1578. };
  1579. 275FA21E27E7356B00CFEA2E /* View */ = {
  1580. isa = PBXGroup;
  1581. children = (
  1582. 275FA21F27E7356B00CFEA2E /* FirstSettingBodyView.h */,
  1583. 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */,
  1584. 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */,
  1585. 275FA22627E7356B00CFEA2E /* LoginBodyView.h */,
  1586. 275FA22027E7356B00CFEA2E /* LoginBodyView.m */,
  1587. 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */,
  1588. 275FA22427E7356B00CFEA2E /* PasswordBodyView.h */,
  1589. 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */,
  1590. 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */,
  1591. 275FA22327E7356B00CFEA2E /* VefiBodyView.h */,
  1592. 275FA22927E7356B00CFEA2E /* VefiBodyView.m */,
  1593. 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */,
  1594. 275FA24127E73DF600CFEA2E /* InstrumentDescView.h */,
  1595. 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */,
  1596. 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */,
  1597. 275FA24627E7428200CFEA2E /* InstrumentChooseView.h */,
  1598. 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */,
  1599. 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */,
  1600. );
  1601. path = View;
  1602. sourceTree = "<group>";
  1603. };
  1604. 2779336127E3249C0010E277 /* Common */ = {
  1605. isa = PBXGroup;
  1606. children = (
  1607. 2779336227E3249C0010E277 /* Tools */,
  1608. 2779346A27E324A10010E277 /* Define */,
  1609. 2779346E27E324A10010E277 /* ThirdPart */,
  1610. 2779350B27E324A40010E277 /* Base */,
  1611. );
  1612. path = Common;
  1613. sourceTree = "<group>";
  1614. };
  1615. 2779336227E3249C0010E277 /* Tools */ = {
  1616. isa = PBXGroup;
  1617. children = (
  1618. 275FA1AA27E734C500CFEA2E /* KSImageAlert.h */,
  1619. 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */,
  1620. 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */,
  1621. 2779336327E3249C0010E277 /* NetworkingAccessibity */,
  1622. 2779336627E3249C0010E277 /* SafeControl */,
  1623. 2779337627E3249C0010E277 /* Extension */,
  1624. 277933B627E3249E0010E277 /* Category */,
  1625. 277933DB27E3249E0010E277 /* VideoEditor */,
  1626. 277933DE27E3249E0010E277 /* GifRefresh */,
  1627. 277933E327E3249E0010E277 /* AudioSessionManager */,
  1628. 277933E627E3249F0010E277 /* VoNetworking */,
  1629. 277933F427E3249F0010E277 /* DiskSizeManager */,
  1630. 277933F727E3249F0010E277 /* MicAlert */,
  1631. 277933FB27E3249F0010E277 /* Custom */,
  1632. 2779346327E324A10010E277 /* ArchiveTools */,
  1633. );
  1634. path = Tools;
  1635. sourceTree = "<group>";
  1636. };
  1637. 2779336327E3249C0010E277 /* NetworkingAccessibity */ = {
  1638. isa = PBXGroup;
  1639. children = (
  1640. 2779336427E3249C0010E277 /* KSNetworkAccessibleManager.h */,
  1641. 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */,
  1642. );
  1643. path = NetworkingAccessibity;
  1644. sourceTree = "<group>";
  1645. };
  1646. 2779336627E3249C0010E277 /* SafeControl */ = {
  1647. isa = PBXGroup;
  1648. children = (
  1649. 2779336727E3249C0010E277 /* KSSafeObject.h */,
  1650. 2779336827E3249C0010E277 /* NSObject+KSSwizzling.h */,
  1651. 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */,
  1652. 2779336A27E3249C0010E277 /* NSObject+KSImpChangeTool.h */,
  1653. 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */,
  1654. 2779336C27E3249C0010E277 /* NSMutableString+KSSafe.h */,
  1655. 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */,
  1656. 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */,
  1657. 2779336F27E3249C0010E277 /* NSDictionary+KSSafe.h */,
  1658. 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */,
  1659. 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */,
  1660. 2779337227E3249C0010E277 /* NSMutableArray+KSSafe.h */,
  1661. 2779337327E3249C0010E277 /* NSArray+KSSafe.h */,
  1662. 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */,
  1663. 2779337527E3249C0010E277 /* NSMutableDictionary+KSSafe.h */,
  1664. );
  1665. path = SafeControl;
  1666. sourceTree = "<group>";
  1667. };
  1668. 2779337627E3249C0010E277 /* Extension */ = {
  1669. isa = PBXGroup;
  1670. children = (
  1671. 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */,
  1672. 2779337827E3249C0010E277 /* UIView+Hints.h */,
  1673. 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */,
  1674. 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */,
  1675. 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */,
  1676. 2779337C27E3249D0010E277 /* NSDictionary+Extension.h */,
  1677. 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */,
  1678. 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */,
  1679. 2779337F27E3249D0010E277 /* NSString+CZHSizeExtension.h */,
  1680. 2779338027E3249D0010E277 /* CALayer+Color.m */,
  1681. 2779338127E3249D0010E277 /* NSDate+Transform.h */,
  1682. 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */,
  1683. 2779338327E3249D0010E277 /* NSString+Extension.h */,
  1684. 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */,
  1685. 2779338527E3249D0010E277 /* UILabel+Extension.m */,
  1686. 2779338627E3249D0010E277 /* NSDate+Extension.h */,
  1687. 2779338727E3249D0010E277 /* KSUtilities.m */,
  1688. 2779338827E3249D0010E277 /* Pinyin */,
  1689. 2779338B27E3249D0010E277 /* UIImage+Color.h */,
  1690. 2779338C27E3249D0010E277 /* CALayer+Layout.h */,
  1691. 2779338D27E3249D0010E277 /* NSObject+ReadDocument.h */,
  1692. 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */,
  1693. 2779338F27E3249D0010E277 /* UIImageView+CornerRadius.h */,
  1694. 2779339027E3249D0010E277 /* UIScreen+Extend.h */,
  1695. 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */,
  1696. 2779339227E3249D0010E277 /* UIColor+Extend.m */,
  1697. 2779339327E3249D0010E277 /* zhPopupController.m */,
  1698. 2779339427E3249D0010E277 /* UIView+Dealloc.m */,
  1699. 2779339527E3249D0010E277 /* NSObject+Parse.m */,
  1700. 2779339627E3249D0010E277 /* UIView+AddConstraints.m */,
  1701. 2779339727E3249D0010E277 /* UIView+KSExtension.h */,
  1702. 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */,
  1703. 2779339927E3249D0010E277 /* UITextView+ZWPlaceHolder.h */,
  1704. 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */,
  1705. 2779339B27E3249D0010E277 /* UIViewController+zhStatusBarStyle.h */,
  1706. 2779339C27E3249D0010E277 /* NSString+zh_SafeAccess.h */,
  1707. 2779339D27E3249D0010E277 /* UIDevice+zhDeviceType.h */,
  1708. 2779339E27E3249D0010E277 /* UIControl+ButtonAction.h */,
  1709. 2779339F27E3249D0010E277 /* UIView+Hints.m */,
  1710. 277933A027E3249D0010E277 /* NSObject+AssociatedObject.h */,
  1711. 277933A127E3249D0010E277 /* KSUtilities.h */,
  1712. 277933A227E3249D0010E277 /* UILabel+Extension.h */,
  1713. 277933A327E3249D0010E277 /* NSDate+Extension.m */,
  1714. 277933A427E3249D0010E277 /* UITextView+ZWLimitCounter.h */,
  1715. 277933A527E3249D0010E277 /* NSString+Extension.m */,
  1716. 277933A627E3249D0010E277 /* NSDate+Transform.m */,
  1717. 277933A727E3249D0010E277 /* NSMutableAttributedString+CZHExtention.h */,
  1718. 277933A827E3249D0010E277 /* CALayer+Color.h */,
  1719. 277933A927E3249D0010E277 /* UIScreen+Extend.m */,
  1720. 277933AA27E3249D0010E277 /* UIAlertController+Extend.h */,
  1721. 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */,
  1722. 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */,
  1723. 277933AD27E3249E0010E277 /* CALayer+Layout.m */,
  1724. 277933AE27E3249E0010E277 /* UIImage+Color.m */,
  1725. 277933AF27E3249E0010E277 /* UIView+KSExtension.m */,
  1726. 277933B027E3249E0010E277 /* NSObject+Parse.h */,
  1727. 277933B127E3249E0010E277 /* UIView+AddConstraints.h */,
  1728. 277933B227E3249E0010E277 /* UIView+Dealloc.h */,
  1729. 277933B327E3249E0010E277 /* zhPopupController.h */,
  1730. 277933B427E3249E0010E277 /* UIColor+Extend.h */,
  1731. 277933B527E3249E0010E277 /* NSArray+zh_SafeAccess.h */,
  1732. );
  1733. path = Extension;
  1734. sourceTree = "<group>";
  1735. };
  1736. 2779338827E3249D0010E277 /* Pinyin */ = {
  1737. isa = PBXGroup;
  1738. children = (
  1739. 2779338927E3249D0010E277 /* pinyin.h */,
  1740. 2779338A27E3249D0010E277 /* pinyin.c */,
  1741. );
  1742. path = Pinyin;
  1743. sourceTree = "<group>";
  1744. };
  1745. 277933B627E3249E0010E277 /* Category */ = {
  1746. isa = PBXGroup;
  1747. children = (
  1748. 277933BD27E3249E0010E277 /* MBProgressHUD+KSShow.h */,
  1749. 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */,
  1750. 277933D027E3249E0010E277 /* NSObject+AutoProperty.h */,
  1751. 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */,
  1752. 277933C027E3249E0010E277 /* NSObject+ReadDocument.h */,
  1753. 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */,
  1754. 277933C327E3249E0010E277 /* UIButton+EnlargeEdge.h */,
  1755. 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */,
  1756. 277933D227E3249E0010E277 /* UIButton+HasChooseImage.h */,
  1757. 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */,
  1758. 277933CC27E3249E0010E277 /* UIButton+Property.h */,
  1759. 277933BA27E3249E0010E277 /* UIButton+Property.m */,
  1760. 277933CA27E3249E0010E277 /* UIDevice+TFDevice.h */,
  1761. 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */,
  1762. 277933D627E3249E0010E277 /* UIImage+Property.h */,
  1763. 277933BF27E3249E0010E277 /* UIImage+Property.m */,
  1764. 277933C727E3249E0010E277 /* UIImage+Resize.h */,
  1765. 277933DA27E3249E0010E277 /* UIImage+Resize.m */,
  1766. 277933D327E3249E0010E277 /* UIImage+ResizeImage.h */,
  1767. 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */,
  1768. 277933CF27E3249E0010E277 /* UIImage+UIImageScale.h */,
  1769. 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */,
  1770. 277933CE27E3249E0010E277 /* UILabel+QWTopLeftLabel.h */,
  1771. 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */,
  1772. 277933CB27E3249E0010E277 /* UIScrollView+KSTouch.h */,
  1773. 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */,
  1774. 277933D927E3249E0010E277 /* UIView+Animation.h */,
  1775. 277933C827E3249E0010E277 /* UIView+Animation.m */,
  1776. 277933D827E3249E0010E277 /* UIView+KSLayer.h */,
  1777. 277933BE27E3249E0010E277 /* UIView+KSLayer.m */,
  1778. 277933D427E3249E0010E277 /* UIView+ShowProgress.h */,
  1779. 277933C127E3249E0010E277 /* UIView+ShowProgress.m */,
  1780. 277933C927E3249E0010E277 /* UIView+XIBView.h */,
  1781. 277933B727E3249E0010E277 /* UIView+XIBView.m */,
  1782. 277933CD27E3249E0010E277 /* UrlDecode.h */,
  1783. 277933B927E3249E0010E277 /* UrlDecode.m */,
  1784. );
  1785. path = Category;
  1786. sourceTree = "<group>";
  1787. };
  1788. 277933DB27E3249E0010E277 /* VideoEditor */ = {
  1789. isa = PBXGroup;
  1790. children = (
  1791. 277933DC27E3249E0010E277 /* KSVideoEditor.h */,
  1792. 277933DD27E3249E0010E277 /* KSVideoEditor.m */,
  1793. );
  1794. path = VideoEditor;
  1795. sourceTree = "<group>";
  1796. };
  1797. 277933DE27E3249E0010E277 /* GifRefresh */ = {
  1798. isa = PBXGroup;
  1799. children = (
  1800. 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */,
  1801. 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */,
  1802. 277933E127E3249E0010E277 /* KSGifRefreshFooter.h */,
  1803. 277933E227E3249E0010E277 /* KSGifRefreshHeader.h */,
  1804. );
  1805. path = GifRefresh;
  1806. sourceTree = "<group>";
  1807. };
  1808. 277933E327E3249E0010E277 /* AudioSessionManager */ = {
  1809. isa = PBXGroup;
  1810. children = (
  1811. 277933E427E3249E0010E277 /* KSAudioSessionManager.m */,
  1812. 277933E527E3249F0010E277 /* KSAudioSessionManager.h */,
  1813. );
  1814. path = AudioSessionManager;
  1815. sourceTree = "<group>";
  1816. };
  1817. 277933E627E3249F0010E277 /* VoNetworking */ = {
  1818. isa = PBXGroup;
  1819. children = (
  1820. 277933E727E3249F0010E277 /* VoNetWorking.h */,
  1821. 277933E827E3249F0010E277 /* Cache */,
  1822. 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */,
  1823. 277933F227E3249F0010E277 /* VoNetWorking.m */,
  1824. 277933F327E3249F0010E277 /* VoNetworking+RequestManager.h */,
  1825. );
  1826. path = VoNetworking;
  1827. sourceTree = "<group>";
  1828. };
  1829. 277933E827E3249F0010E277 /* Cache */ = {
  1830. isa = PBXGroup;
  1831. children = (
  1832. 277933E927E3249F0010E277 /* VoLRUManager.m */,
  1833. 277933EA27E3249F0010E277 /* VoMemoryCache.h */,
  1834. 277933EB27E3249F0010E277 /* VoDiskCache.m */,
  1835. 277933EC27E3249F0010E277 /* VoCacheManager.m */,
  1836. 277933ED27E3249F0010E277 /* VoLRUManager.h */,
  1837. 277933EE27E3249F0010E277 /* VoMemoryCache.m */,
  1838. 277933EF27E3249F0010E277 /* VoCacheManager.h */,
  1839. 277933F027E3249F0010E277 /* VoDiskCache.h */,
  1840. );
  1841. path = Cache;
  1842. sourceTree = "<group>";
  1843. };
  1844. 277933F427E3249F0010E277 /* DiskSizeManager */ = {
  1845. isa = PBXGroup;
  1846. children = (
  1847. 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */,
  1848. 277933F627E3249F0010E277 /* DiskFreeSpaceManager.h */,
  1849. );
  1850. path = DiskSizeManager;
  1851. sourceTree = "<group>";
  1852. };
  1853. 277933F727E3249F0010E277 /* MicAlert */ = {
  1854. isa = PBXGroup;
  1855. children = (
  1856. 277933F827E3249F0010E277 /* KSPremissionAlert.m */,
  1857. 277933F927E3249F0010E277 /* KSPremissionAlert.xib */,
  1858. 277933FA27E3249F0010E277 /* KSPremissionAlert.h */,
  1859. );
  1860. path = MicAlert;
  1861. sourceTree = "<group>";
  1862. };
  1863. 277933FB27E3249F0010E277 /* Custom */ = {
  1864. isa = PBXGroup;
  1865. children = (
  1866. 277933FC27E3249F0010E277 /* UIImage+Addtions.m */,
  1867. 277933FD27E3249F0010E277 /* GRCreateManager.m */,
  1868. 277933FE27E3249F0010E277 /* GRScanManager.h */,
  1869. 277933FF27E3249F0010E277 /* ShoppCatView.h */,
  1870. 2779340027E3249F0010E277 /* QCCountdownButton */,
  1871. 2779340327E3249F0010E277 /* LifeButton.h */,
  1872. 2779340427E3249F0010E277 /* KSStatusView.m */,
  1873. 2779340527E3249F0010E277 /* prodectButton.h */,
  1874. 2779340627E3249F0010E277 /* StoreButton.h */,
  1875. 2779340727E3249F0010E277 /* KSChoosePicker.m */,
  1876. 2779340827E3249F0010E277 /* PressRecord */,
  1877. 2779341527E3249F0010E277 /* HomeButton.m */,
  1878. 2779341627E3249F0010E277 /* KSImageButton.h */,
  1879. 2779341727E3249F0010E277 /* KSFullDatePicker.m */,
  1880. 2779341827E3249F0010E277 /* NSString+phone.h */,
  1881. 2779341927E3249F0010E277 /* KSMediaManager.m */,
  1882. 2779341A27E3249F0010E277 /* ShopMessBtn.m */,
  1883. 2779341B27E324A00010E277 /* UIColor+Hex.m */,
  1884. 2779341C27E324A00010E277 /* shopview.m */,
  1885. 2779341D27E324A00010E277 /* YKMultiLevelTableView */,
  1886. 2779342227E324A00010E277 /* pickBut.m */,
  1887. 2779342327E324A00010E277 /* KSMessageInputView.h */,
  1888. 2779342427E324A00010E277 /* NSString+MD5.h */,
  1889. 2779342527E324A00010E277 /* ShopButton.h */,
  1890. 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */,
  1891. 2779342727E324A00010E277 /* PIckView.h */,
  1892. 2779342827E324A00010E277 /* StoreShopCaterview.m */,
  1893. 2779342927E324A00010E277 /* KSInputView */,
  1894. 2779343327E324A00010E277 /* NSDate+KSBaseDatePicker.h */,
  1895. 2779343427E324A00010E277 /* SearchView.m */,
  1896. 2779343527E324A00010E277 /* StateView.h */,
  1897. 2779343627E324A00010E277 /* sortButton.h */,
  1898. 2779343727E324A00010E277 /* KSInputView.h */,
  1899. 2779343827E324A00010E277 /* KeyChainTools.h */,
  1900. 2779343927E324A00010E277 /* KSStatusView.h */,
  1901. 2779343A27E324A00010E277 /* prodectButton.m */,
  1902. 2779343B27E324A00010E277 /* StoreButton.m */,
  1903. 2779343C27E324A00010E277 /* LifeButton.m */,
  1904. 2779343D27E324A00010E277 /* ShoppCatView.m */,
  1905. 2779343E27E324A00010E277 /* GRScanManager.m */,
  1906. 2779343F27E324A00010E277 /* GRCreateManager.h */,
  1907. 2779344027E324A00010E277 /* UIImage+Addtions.h */,
  1908. 2779344127E324A00010E277 /* UIColor+Hex.h */,
  1909. 2779344227E324A00010E277 /* ShopMessBtn.h */,
  1910. 2779344327E324A00010E277 /* KSMediaManager.h */,
  1911. 2779344427E324A00010E277 /* NSString+phone.m */,
  1912. 2779344527E324A00010E277 /* KSFullDatePicker.h */,
  1913. 2779344627E324A00010E277 /* KSImageButton.m */,
  1914. 2779344727E324A00010E277 /* HomeButton.h */,
  1915. 2779344827E324A00010E277 /* KSChoosePicker.h */,
  1916. 2779344927E324A00010E277 /* PIckView.m */,
  1917. 2779344A27E324A00010E277 /* MBProgressHUD+NJ.h */,
  1918. 2779344B27E324A00010E277 /* ShopButton.m */,
  1919. 2779344C27E324A00010E277 /* NSString+MD5.m */,
  1920. 2779344D27E324A00010E277 /* KSMessageInputView.m */,
  1921. 2779344E27E324A00010E277 /* pickBut.h */,
  1922. 2779344F27E324A00010E277 /* shopview.h */,
  1923. 2779345027E324A00010E277 /* KSInputView.m */,
  1924. 2779345127E324A00010E277 /* KeyChainTools.m */,
  1925. 2779345227E324A00010E277 /* sortButton.m */,
  1926. 2779345327E324A00010E277 /* StateView.m */,
  1927. 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */,
  1928. 2779345527E324A00010E277 /* SearchView.h */,
  1929. 2779345627E324A00010E277 /* LLPhotoBrowser */,
  1930. 2779346227E324A10010E277 /* StoreShopCaterview.h */,
  1931. );
  1932. path = Custom;
  1933. sourceTree = "<group>";
  1934. };
  1935. 2779340027E3249F0010E277 /* QCCountdownButton */ = {
  1936. isa = PBXGroup;
  1937. children = (
  1938. 2779340127E3249F0010E277 /* QCCountdownButton.m */,
  1939. 2779340227E3249F0010E277 /* QCCountdownButton.h */,
  1940. );
  1941. path = QCCountdownButton;
  1942. sourceTree = "<group>";
  1943. };
  1944. 2779340827E3249F0010E277 /* PressRecord */ = {
  1945. isa = PBXGroup;
  1946. children = (
  1947. 2779340927E3249F0010E277 /* KSAudioRecordManager.h */,
  1948. 2779340A27E3249F0010E277 /* KSRecordStatusView.h */,
  1949. 2779340B27E3249F0010E277 /* KSHoldButton.m */,
  1950. 2779340C27E3249F0010E277 /* KSRecordPowerAnimationView.h */,
  1951. 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */,
  1952. 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */,
  1953. 2779340F27E3249F0010E277 /* KSRecordStatusView.m */,
  1954. 2779341027E3249F0010E277 /* KSAudioRecordManager.m */,
  1955. 2779341127E3249F0010E277 /* KSHoldButton.h */,
  1956. 2779341227E3249F0010E277 /* UIView+ValueAdd.h */,
  1957. 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */,
  1958. 2779341427E3249F0010E277 /* KSAudioRecordFileManager.h */,
  1959. );
  1960. path = PressRecord;
  1961. sourceTree = "<group>";
  1962. };
  1963. 2779341D27E324A00010E277 /* YKMultiLevelTableView */ = {
  1964. isa = PBXGroup;
  1965. children = (
  1966. 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */,
  1967. 2779341F27E324A00010E277 /* YKNodeModel.m */,
  1968. 2779342027E324A00010E277 /* YKNodeModel.h */,
  1969. 2779342127E324A00010E277 /* YKMultiLevelTableView.h */,
  1970. );
  1971. path = YKMultiLevelTableView;
  1972. sourceTree = "<group>";
  1973. };
  1974. 2779342927E324A00010E277 /* KSInputView */ = {
  1975. isa = PBXGroup;
  1976. children = (
  1977. 2779342A27E324A00010E277 /* UITextField_Toolbar.m */,
  1978. 2779342B27E324A00010E277 /* SkipTextField.m */,
  1979. 2779342C27E324A00010E277 /* SkipTextProtocol.h */,
  1980. 2779342D27E324A00010E277 /* SkipTextView.h */,
  1981. 2779342E27E324A00010E277 /* UITextView_Toolbar.m */,
  1982. 2779342F27E324A00010E277 /* UITextField_Toolbar.h */,
  1983. 2779343027E324A00010E277 /* SkipTextField.h */,
  1984. 2779343127E324A00010E277 /* SkipTextView.m */,
  1985. 2779343227E324A00010E277 /* UITextView_Toolbar.h */,
  1986. );
  1987. path = KSInputView;
  1988. sourceTree = "<group>";
  1989. };
  1990. 2779345627E324A00010E277 /* LLPhotoBrowser */ = {
  1991. isa = PBXGroup;
  1992. children = (
  1993. 2779345727E324A10010E277 /* LLPhotoBrowser.m */,
  1994. 2779345827E324A10010E277 /* LLCollectionViewCell.h */,
  1995. 2779345927E324A10010E277 /* LLClasses */,
  1996. 2779345E27E324A10010E277 /* LLPhoto.m */,
  1997. 2779345F27E324A10010E277 /* LLCollectionViewCell.m */,
  1998. 2779346027E324A10010E277 /* LLPhotoBrowser.h */,
  1999. 2779346127E324A10010E277 /* LLPhoto.h */,
  2000. );
  2001. path = LLPhotoBrowser;
  2002. sourceTree = "<group>";
  2003. };
  2004. 2779345927E324A10010E277 /* LLClasses */ = {
  2005. isa = PBXGroup;
  2006. children = (
  2007. 2779345A27E324A10010E277 /* LLImageCache.m */,
  2008. 2779345B27E324A10010E277 /* LLFileManager.m */,
  2009. 2779345C27E324A10010E277 /* LLImageCache.h */,
  2010. 2779345D27E324A10010E277 /* LLFileManager.h */,
  2011. );
  2012. path = LLClasses;
  2013. sourceTree = "<group>";
  2014. };
  2015. 2779346327E324A10010E277 /* ArchiveTools */ = {
  2016. isa = PBXGroup;
  2017. children = (
  2018. 2779346427E324A10010E277 /* CoinModel.h */,
  2019. 2779346527E324A10010E277 /* ArchiveTools.h */,
  2020. 2779346627E324A10010E277 /* NSObject+Archiving.m */,
  2021. 2779346727E324A10010E277 /* CoinModel.m */,
  2022. 2779346827E324A10010E277 /* ArchiveTools.m */,
  2023. 2779346927E324A10010E277 /* NSObject+Archiving.h */,
  2024. );
  2025. path = ArchiveTools;
  2026. sourceTree = "<group>";
  2027. };
  2028. 2779346A27E324A10010E277 /* Define */ = {
  2029. isa = PBXGroup;
  2030. children = (
  2031. 2779346B27E324A10010E277 /* UserKeyHeader.h */,
  2032. 2779346C27E324A10010E277 /* Common.h */,
  2033. 2779346D27E324A10010E277 /* PrefixHeader.pch */,
  2034. );
  2035. path = Define;
  2036. sourceTree = "<group>";
  2037. };
  2038. 2779346E27E324A10010E277 /* ThirdPart */ = {
  2039. isa = PBXGroup;
  2040. children = (
  2041. 2723B63D27F15B5800E0B90B /* SCIndexView */,
  2042. 2779346F27E324A10010E277 /* KLTAnimateNav */,
  2043. 2779347427E324A10010E277 /* DZSegmentCtrl */,
  2044. 2779347727E324A10010E277 /* WMPlayer */,
  2045. 2779348127E324A10010E277 /* TZImagePickerController */,
  2046. 277934A527E324A20010E277 /* MSSBrowse */,
  2047. 277934C127E324A20010E277 /* FSCalendar */,
  2048. 277934E127E324A30010E277 /* SDCycleScrollView */,
  2049. 277934F827E324A30010E277 /* ALCalendarPicker */,
  2050. );
  2051. path = ThirdPart;
  2052. sourceTree = "<group>";
  2053. };
  2054. 2779346F27E324A10010E277 /* KLTAnimateNav */ = {
  2055. isa = PBXGroup;
  2056. children = (
  2057. 2779347027E324A10010E277 /* AnimationContoller.h */,
  2058. 2779347127E324A10010E277 /* KLTNavigationController.m */,
  2059. 2779347227E324A10010E277 /* KLTNavigationController.h */,
  2060. 2779347327E324A10010E277 /* AnimationContoller.m */,
  2061. );
  2062. path = KLTAnimateNav;
  2063. sourceTree = "<group>";
  2064. };
  2065. 2779347427E324A10010E277 /* DZSegmentCtrl */ = {
  2066. isa = PBXGroup;
  2067. children = (
  2068. 2779347527E324A10010E277 /* DZNSegmentedControl.m */,
  2069. 2779347627E324A10010E277 /* DZNSegmentedControl.h */,
  2070. );
  2071. path = DZSegmentCtrl;
  2072. sourceTree = "<group>";
  2073. };
  2074. 2779347727E324A10010E277 /* WMPlayer */ = {
  2075. isa = PBXGroup;
  2076. children = (
  2077. 2779347827E324A10010E277 /* WMLightView.h */,
  2078. 2779347927E324A10010E277 /* WMPlayerModel.m */,
  2079. 2779347A27E324A10010E277 /* FastForwardView.h */,
  2080. 2779347B27E324A10010E277 /* WMPlayer.bundle */,
  2081. 2779347C27E324A10010E277 /* WMPlayer.h */,
  2082. 2779347D27E324A10010E277 /* WMPlayerModel.h */,
  2083. 2779347E27E324A10010E277 /* WMLightView.m */,
  2084. 2779347F27E324A10010E277 /* FastForwardView.m */,
  2085. 2779348027E324A10010E277 /* WMPlayer.m */,
  2086. );
  2087. path = WMPlayer;
  2088. sourceTree = "<group>";
  2089. };
  2090. 2779348127E324A10010E277 /* TZImagePickerController */ = {
  2091. isa = PBXGroup;
  2092. children = (
  2093. 2779348227E324A10010E277 /* TZPhotoPreviewCell.h */,
  2094. 2779348327E324A10010E277 /* TZPhotoPickerController.h */,
  2095. 2779348427E324A10010E277 /* TZImageCropManager.m */,
  2096. 2779348527E324A10010E277 /* TZImageManager.h */,
  2097. 2779348627E324A10010E277 /* TZAssetCell.m */,
  2098. 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */,
  2099. 2779348827E324A10010E277 /* TZVideoCropController.m */,
  2100. 2779348927E324A10010E277 /* TZVideoPlayerController.m */,
  2101. 2779348A27E324A10010E277 /* TZAssetModel.m */,
  2102. 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */,
  2103. 2779348C27E324A10010E277 /* UIView+TZLayout.h */,
  2104. 2779348D27E324A10010E277 /* TZLocationManager.h */,
  2105. 2779348E27E324A10010E277 /* TZImagePickerController.h */,
  2106. 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */,
  2107. 2779349027E324A10010E277 /* TZImagePickerController.bundle */,
  2108. 2779349127E324A10010E277 /* TZProgressView.m */,
  2109. 2779349227E324A10010E277 /* TZGifPhotoPreviewController.h */,
  2110. 2779349327E324A10010E277 /* TZImageRequestOperation.h */,
  2111. 2779349427E324A10010E277 /* TZVideoEditedPreviewController.h */,
  2112. 2779349527E324A10010E277 /* TZAssetCell.h */,
  2113. 2779349627E324A10010E277 /* TZImageManager.m */,
  2114. 2779349727E324A20010E277 /* TZImageCropManager.h */,
  2115. 2779349827E324A20010E277 /* TZPhotoPickerController.m */,
  2116. 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */,
  2117. 2779349A27E324A20010E277 /* NSBundle+TZImagePicker.h */,
  2118. 2779349B27E324A20010E277 /* UIView+TZLayout.m */,
  2119. 2779349C27E324A20010E277 /* TZAssetModel.h */,
  2120. 2779349D27E324A20010E277 /* TZVideoPlayerController.h */,
  2121. 2779349E27E324A20010E277 /* TZVideoCropController.h */,
  2122. 2779349F27E324A20010E277 /* TZPhotoPreviewController.h */,
  2123. 277934A027E324A20010E277 /* TZImagePickerController.m */,
  2124. 277934A127E324A20010E277 /* TZLocationManager.m */,
  2125. 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */,
  2126. 277934A327E324A20010E277 /* TZImageRequestOperation.m */,
  2127. 277934A427E324A20010E277 /* TZProgressView.h */,
  2128. );
  2129. path = TZImagePickerController;
  2130. sourceTree = "<group>";
  2131. };
  2132. 277934A527E324A20010E277 /* MSSBrowse */ = {
  2133. isa = PBXGroup;
  2134. children = (
  2135. 277934A627E324A20010E277 /* MSSBrowseRemindView.h */,
  2136. 277934A727E324A20010E277 /* MSSBrowseZoomScrollView.h */,
  2137. 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */,
  2138. 277934A927E324A20010E277 /* MSSBrowseBaseViewController.h */,
  2139. 277934AA27E324A20010E277 /* UIImage+MSSScale.h */,
  2140. 277934AB27E324A20010E277 /* MSSBrowseNetworkViewController.h */,
  2141. 277934AC27E324A20010E277 /* MSSBrowseActionSheet.h */,
  2142. 277934AD27E324A20010E277 /* MSSBrowseActionSheetCell.h */,
  2143. 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */,
  2144. 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */,
  2145. 277934B027E324A20010E277 /* UIView+MSSLayout.h */,
  2146. 277934B127E324A20010E277 /* MSSBrowseModel.m */,
  2147. 277934B227E324A20010E277 /* MSSBrowseDefine.h */,
  2148. 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */,
  2149. 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */,
  2150. 277934B527E324A20010E277 /* UIImage+MSSScale.m */,
  2151. 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */,
  2152. 277934B727E324A20010E277 /* MSSBrowseLoadingImageView.h */,
  2153. 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */,
  2154. 277934B927E324A20010E277 /* MSSBrowseRemindView.m */,
  2155. 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */,
  2156. 277934BB27E324A20010E277 /* MSSBrowseCollectionViewCell.h */,
  2157. 277934BC27E324A20010E277 /* MSSBrowseLocalViewController.h */,
  2158. 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */,
  2159. 277934BE27E324A20010E277 /* MSSBrowseModel.h */,
  2160. 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */,
  2161. 277934C027E324A20010E277 /* UIView+MSSLayout.m */,
  2162. );
  2163. path = MSSBrowse;
  2164. sourceTree = "<group>";
  2165. };
  2166. 277934C127E324A20010E277 /* FSCalendar */ = {
  2167. isa = PBXGroup;
  2168. children = (
  2169. 277934C227E324A20010E277 /* FSCalendarCollectionView.m */,
  2170. 277934C327E324A20010E277 /* FSCalendarWeekdayView.h */,
  2171. 277934C427E324A20010E277 /* FSCalendarCollectionViewLayout.h */,
  2172. 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */,
  2173. 277934C627E324A20010E277 /* FSCalendarExtensions.h */,
  2174. 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */,
  2175. 277934C827E324A20010E277 /* FSCalendarSeparatorDecorationView.h */,
  2176. 277934C927E324A20010E277 /* FSCalendarCalculator.h */,
  2177. 277934CA27E324A20010E277 /* FSCalendarHeaderView.h */,
  2178. 277934CB27E324A20010E277 /* FSCalendarConstants.h */,
  2179. 277934CC27E324A20010E277 /* FSCalendarAppearance.h */,
  2180. 277934CD27E324A20010E277 /* FSCalendarTransitionCoordinator.h */,
  2181. 277934CE27E324A30010E277 /* FSCalendarCell.m */,
  2182. 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */,
  2183. 277934D027E324A30010E277 /* FSCalendar.m */,
  2184. 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */,
  2185. 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */,
  2186. 277934D327E324A30010E277 /* FSCalendarCollectionView.h */,
  2187. 277934D427E324A30010E277 /* FSCalendarDynamicHeader.h */,
  2188. 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */,
  2189. 277934D627E324A30010E277 /* FSCalendarDelegationFactory.h */,
  2190. 277934D727E324A30010E277 /* FSCalendarExtensions.m */,
  2191. 277934D827E324A30010E277 /* FSCalendarDelegationProxy.h */,
  2192. 277934D927E324A30010E277 /* FSCalendarConstants.m */,
  2193. 277934DA27E324A30010E277 /* FSCalendarCalculator.m */,
  2194. 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */,
  2195. 277934DC27E324A30010E277 /* FSCalendarStickyHeader.h */,
  2196. 277934DD27E324A30010E277 /* FSCalendar.h */,
  2197. 277934DE27E324A30010E277 /* FSCalendarCell.h */,
  2198. 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */,
  2199. 277934E027E324A30010E277 /* FSCalendarAppearance.m */,
  2200. );
  2201. path = FSCalendar;
  2202. sourceTree = "<group>";
  2203. };
  2204. 277934E127E324A30010E277 /* SDCycleScrollView */ = {
  2205. isa = PBXGroup;
  2206. children = (
  2207. 277934E227E324A30010E277 /* QWdynamicModel.m */,
  2208. 277934E327E324A30010E277 /* UIView+SDExtension.h */,
  2209. 277934E427E324A30010E277 /* SDQWMaskCustomModel.h */,
  2210. 277934E527E324A30010E277 /* SDCycleScrollView.h */,
  2211. 277934E627E324A30010E277 /* SDCollectionViewCell.h */,
  2212. 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */,
  2213. 277934E827E324A30010E277 /* SDQWMaskCustomView.h */,
  2214. 277934E927E324A30010E277 /* SDCycleScrollView.m */,
  2215. 277934EA27E324A30010E277 /* UIView+SDExtension.m */,
  2216. 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */,
  2217. 277934EC27E324A30010E277 /* QWdynamicModel.h */,
  2218. 277934ED27E324A30010E277 /* SDCollectionViewCell.m */,
  2219. 277934EE27E324A30010E277 /* PageControl */,
  2220. 277934F727E324A30010E277 /* SDQWMaskCustomView.m */,
  2221. );
  2222. path = SDCycleScrollView;
  2223. sourceTree = "<group>";
  2224. };
  2225. 277934EE27E324A30010E277 /* PageControl */ = {
  2226. isa = PBXGroup;
  2227. children = (
  2228. 277934EF27E324A30010E277 /* TAAbstractDotView.h */,
  2229. 277934F027E324A30010E277 /* TADotView.m */,
  2230. 277934F127E324A30010E277 /* TAPageControl.m */,
  2231. 277934F227E324A30010E277 /* TAAnimatedDotView.m */,
  2232. 277934F327E324A30010E277 /* TAAbstractDotView.m */,
  2233. 277934F427E324A30010E277 /* TADotView.h */,
  2234. 277934F527E324A30010E277 /* TAAnimatedDotView.h */,
  2235. 277934F627E324A30010E277 /* TAPageControl.h */,
  2236. );
  2237. path = PageControl;
  2238. sourceTree = "<group>";
  2239. };
  2240. 277934F827E324A30010E277 /* ALCalendarPicker */ = {
  2241. isa = PBXGroup;
  2242. children = (
  2243. 277934F927E324A30010E277 /* ALCalendarCell.m */,
  2244. 277934FA27E324A30010E277 /* ALCalendarConfig.m */,
  2245. 277934FB27E324A30010E277 /* ALCalendarHeader.m */,
  2246. 277934FC27E324A30010E277 /* ALCalendarDate.m */,
  2247. 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */,
  2248. 277934FE27E324A30010E277 /* ALCalendarHelper.m */,
  2249. 277934FF27E324A30010E277 /* UIView+ALFrame.h */,
  2250. 2779350027E324A30010E277 /* ALCalendarPicker.h */,
  2251. 2779350127E324A30010E277 /* ALCalendarManager.h */,
  2252. 2779350227E324A30010E277 /* ALCalendarCollectionView.h */,
  2253. 2779350327E324A30010E277 /* ALCalendarDate.h */,
  2254. 2779350427E324A30010E277 /* ALCalendarHeader.h */,
  2255. 2779350527E324A30010E277 /* ALCalendarConfig.h */,
  2256. 2779350627E324A30010E277 /* ALCalendarCell.h */,
  2257. 2779350727E324A40010E277 /* ALCalendarHelper.h */,
  2258. 2779350827E324A40010E277 /* ALCalendarPicker.m */,
  2259. 2779350927E324A40010E277 /* UIView+ALFrame.m */,
  2260. 2779350A27E324A40010E277 /* ALCalendarManager.m */,
  2261. );
  2262. path = ALCalendarPicker;
  2263. sourceTree = "<group>";
  2264. };
  2265. 2779350B27E324A40010E277 /* Base */ = {
  2266. isa = PBXGroup;
  2267. children = (
  2268. 2723B64727F15BDB00E0B90B /* KSJXBodyView.h */,
  2269. 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */,
  2270. 2723B63B27F159BA00E0B90B /* KSBaseTableViewController.h */,
  2271. 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */,
  2272. 275FA1BE27E7351600CFEA2E /* BaseViewController.h */,
  2273. 275FA1CF27E7351800CFEA2E /* BaseViewController.m */,
  2274. 275FA1BC27E7351500CFEA2E /* CustomNavViewController.h */,
  2275. 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */,
  2276. 275FA1C327E7351600CFEA2E /* KSAccompanyWebViewController.h */,
  2277. 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */,
  2278. 275FA1B627E7351500CFEA2E /* KSAQRecordManager.h */,
  2279. 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */,
  2280. 275FA1B327E7351400CFEA2E /* KSBaseModel.h */,
  2281. 275FA1B727E7351500CFEA2E /* KSBaseModel.m */,
  2282. 275FA1C527E7351600CFEA2E /* KSBaseViewController.h */,
  2283. 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */,
  2284. 275FA1D527E7351800CFEA2E /* KSBaseWKWebViewController.h */,
  2285. 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */,
  2286. 275FA1C027E7351600CFEA2E /* KSLocalWebViewController.h */,
  2287. 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */,
  2288. 275FA1CA27E7351700CFEA2E /* KSNetTypeManager.h */,
  2289. 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */,
  2290. 275FA1B527E7351400CFEA2E /* KSRCIMDataSource.h */,
  2291. 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */,
  2292. 275FA1D727E7351900CFEA2E /* KSTabBarViewController.h */,
  2293. 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */,
  2294. 275FA1CB27E7351700CFEA2E /* KSUpdateAlert.h */,
  2295. 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */,
  2296. 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */,
  2297. 275FA1B227E7351400CFEA2E /* KSUpdateManager.h */,
  2298. 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */,
  2299. 275FA1D127E7351800CFEA2E /* KSWebBackButton.h */,
  2300. 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */,
  2301. 275FA1B827E7351500CFEA2E /* KSWebNavView.h */,
  2302. 275FA1C227E7351600CFEA2E /* KSWebNavView.m */,
  2303. 275FA1D227E7351800CFEA2E /* KSWebSocketManager.h */,
  2304. 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */,
  2305. 275FA1D327E7351800CFEA2E /* RCConnectionManager.h */,
  2306. 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */,
  2307. 275FA1D827E7351900CFEA2E /* RecordCheckManager.h */,
  2308. 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */,
  2309. 275FA1B427E7351400CFEA2E /* UINavigationController+KSNavigationBar.h */,
  2310. 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */,
  2311. 275FA1CC27E7351700CFEA2E /* WeakWebViewScriptMessageDelegate.h */,
  2312. 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */,
  2313. 275FA1D427E7351800CFEA2E /* KSNetworkingManager.h */,
  2314. 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */,
  2315. );
  2316. path = Base;
  2317. sourceTree = "<group>";
  2318. };
  2319. 27F9030F27E87C2C00C08A19 /* Networking */ = {
  2320. isa = PBXGroup;
  2321. children = (
  2322. 27F9031027E87C2C00C08A19 /* Controller */,
  2323. 27F9031327E87C2C00C08A19 /* Model */,
  2324. 27F9031427E87C2C00C08A19 /* View */,
  2325. );
  2326. path = Networking;
  2327. sourceTree = "<group>";
  2328. };
  2329. 27F9031027E87C2C00C08A19 /* Controller */ = {
  2330. isa = PBXGroup;
  2331. children = (
  2332. 27F9031127E87C2C00C08A19 /* NetworkingCheckController.h */,
  2333. 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */,
  2334. );
  2335. path = Controller;
  2336. sourceTree = "<group>";
  2337. };
  2338. 27F9031327E87C2C00C08A19 /* Model */ = {
  2339. isa = PBXGroup;
  2340. children = (
  2341. );
  2342. path = Model;
  2343. sourceTree = "<group>";
  2344. };
  2345. 27F9031427E87C2C00C08A19 /* View */ = {
  2346. isa = PBXGroup;
  2347. children = (
  2348. 27F9031527E87C2C00C08A19 /* KSNetworkAlert.h */,
  2349. 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */,
  2350. 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */,
  2351. 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */,
  2352. 27F9031927E87C2D00C08A19 /* NetworkBodyView.h */,
  2353. 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */,
  2354. );
  2355. path = View;
  2356. sourceTree = "<group>";
  2357. };
  2358. 27F9031B27E87C2D00C08A19 /* DeviceCheck */ = {
  2359. isa = PBXGroup;
  2360. children = (
  2361. 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */,
  2362. 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */,
  2363. 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */,
  2364. 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */,
  2365. 27F9032027E87C2D00C08A19 /* AudioRecordManager.h */,
  2366. 27F9032127E87C2D00C08A19 /* DeviceCheckView.h */,
  2367. 27F9032227E87C2D00C08A19 /* AudioPlayManager.h */,
  2368. );
  2369. path = DeviceCheck;
  2370. sourceTree = "<group>";
  2371. };
  2372. 27F9032327E87C2E00C08A19 /* Setting */ = {
  2373. isa = PBXGroup;
  2374. children = (
  2375. 27F9032427E87C2E00C08A19 /* Controller */,
  2376. 27F9032727E87C2E00C08A19 /* Model */,
  2377. 27F9032827E87C2E00C08A19 /* View */,
  2378. );
  2379. path = Setting;
  2380. sourceTree = "<group>";
  2381. };
  2382. 27F9032427E87C2E00C08A19 /* Controller */ = {
  2383. isa = PBXGroup;
  2384. children = (
  2385. 27F9032527E87C2E00C08A19 /* SettingViewController.h */,
  2386. 27F9032627E87C2E00C08A19 /* SettingViewController.m */,
  2387. 2723B67427F15D3600E0B90B /* AboutUsViewController.h */,
  2388. 2723B67227F15D3300E0B90B /* AboutUsViewController.m */,
  2389. 2723B67727F15D3900E0B90B /* AddressViewController.h */,
  2390. 2723B67B27F15D3C00E0B90B /* AddressViewController.m */,
  2391. 2723B67627F15D3800E0B90B /* FeedbackViewController.h */,
  2392. 2723B67327F15D3400E0B90B /* FeedbackViewController.m */,
  2393. 2723B67A27F15D3B00E0B90B /* ModifyNameViewController.h */,
  2394. 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */,
  2395. 2723B67C27F15D3D00E0B90B /* ModifyPhoneChangeController.h */,
  2396. 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */,
  2397. 2723B67027F15D3200E0B90B /* ModifyPhoneCheckController.h */,
  2398. 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */,
  2399. 2723B67D27F15D3D00E0B90B /* ModifyViewController.h */,
  2400. 2723B67927F15D3B00E0B90B /* ModifyViewController.m */,
  2401. );
  2402. path = Controller;
  2403. sourceTree = "<group>";
  2404. };
  2405. 27F9032727E87C2E00C08A19 /* Model */ = {
  2406. isa = PBXGroup;
  2407. children = (
  2408. );
  2409. path = Model;
  2410. sourceTree = "<group>";
  2411. };
  2412. 27F9032827E87C2E00C08A19 /* View */ = {
  2413. isa = PBXGroup;
  2414. children = (
  2415. 2723B65027F15CF900E0B90B /* AboutUsBodyView.h */,
  2416. 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */,
  2417. 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */,
  2418. 2723B65227F15CF900E0B90B /* FeedbackBodyView.h */,
  2419. 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */,
  2420. 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */,
  2421. 2723B64F27F15CF900E0B90B /* ModifyBodyView.h */,
  2422. 2723B65427F15CF900E0B90B /* ModifyBodyView.m */,
  2423. 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */,
  2424. 2723B64B27F15CF800E0B90B /* ModifyNameBodyView.h */,
  2425. 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */,
  2426. 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */,
  2427. 2723B65627F15CFA00E0B90B /* PhoneChangeBodyView.h */,
  2428. 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */,
  2429. 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */,
  2430. 2723B65927F15CFA00E0B90B /* PhoneCheckBodyView.h */,
  2431. 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */,
  2432. 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */,
  2433. 2723B65B27F15CFA00E0B90B /* SettingBodyView.h */,
  2434. 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */,
  2435. 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */,
  2436. 2723B65F27F15CFB00E0B90B /* VeriCheckView.h */,
  2437. 2723B64E27F15CF800E0B90B /* VeriCheckView.m */,
  2438. );
  2439. path = View;
  2440. sourceTree = "<group>";
  2441. };
  2442. 9BF683910A95A690331EF86A /* Frameworks */ = {
  2443. isa = PBXGroup;
  2444. children = (
  2445. 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */,
  2446. C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */,
  2447. DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */,
  2448. );
  2449. name = Frameworks;
  2450. sourceTree = "<group>";
  2451. };
  2452. /* End PBXGroup section */
  2453. /* Begin PBXNativeTarget section */
  2454. 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */ = {
  2455. isa = PBXNativeTarget;
  2456. buildConfigurationList = 275E8AD427E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudent" */;
  2457. buildPhases = (
  2458. 517802ACBF7A2D237EC51FBD /* [CP] Check Pods Manifest.lock */,
  2459. 275E8AA127E18F8800DD3F6E /* Sources */,
  2460. 275E8AA227E18F8800DD3F6E /* Frameworks */,
  2461. 275E8AA327E18F8800DD3F6E /* Resources */,
  2462. 7FA65C60616F879A71C69DE3 /* [CP] Embed Pods Frameworks */,
  2463. CAFB9BB2B8A1DEF4AC72C464 /* [CP] Copy Pods Resources */,
  2464. );
  2465. buildRules = (
  2466. );
  2467. dependencies = (
  2468. );
  2469. name = KulexiuForStudent;
  2470. productName = KulexiuForStudent;
  2471. productReference = 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */;
  2472. productType = "com.apple.product-type.application";
  2473. };
  2474. 275E8ABF27E18F8C00DD3F6E /* KulexiuForStudentTests */ = {
  2475. isa = PBXNativeTarget;
  2476. buildConfigurationList = 275E8AD727E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentTests" */;
  2477. buildPhases = (
  2478. AB9225EA49C09055CF4D365E /* [CP] Check Pods Manifest.lock */,
  2479. 275E8ABC27E18F8C00DD3F6E /* Sources */,
  2480. 275E8ABD27E18F8C00DD3F6E /* Frameworks */,
  2481. 275E8ABE27E18F8C00DD3F6E /* Resources */,
  2482. );
  2483. buildRules = (
  2484. );
  2485. dependencies = (
  2486. 275E8AC227E18F8C00DD3F6E /* PBXTargetDependency */,
  2487. );
  2488. name = KulexiuForStudentTests;
  2489. productName = KulexiuForStudentTests;
  2490. productReference = 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */;
  2491. productType = "com.apple.product-type.bundle.unit-test";
  2492. };
  2493. 275E8AC927E18F8C00DD3F6E /* KulexiuForStudentUITests */ = {
  2494. isa = PBXNativeTarget;
  2495. buildConfigurationList = 275E8ADA27E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentUITests" */;
  2496. buildPhases = (
  2497. C466C0F5CFE9161E20B6DAE7 /* [CP] Check Pods Manifest.lock */,
  2498. 275E8AC627E18F8C00DD3F6E /* Sources */,
  2499. 275E8AC727E18F8C00DD3F6E /* Frameworks */,
  2500. 275E8AC827E18F8C00DD3F6E /* Resources */,
  2501. F651308641378409742E5831 /* [CP] Embed Pods Frameworks */,
  2502. 27666DDBA06A252BAC04BBAD /* [CP] Copy Pods Resources */,
  2503. );
  2504. buildRules = (
  2505. );
  2506. dependencies = (
  2507. 275E8ACC27E18F8C00DD3F6E /* PBXTargetDependency */,
  2508. );
  2509. name = KulexiuForStudentUITests;
  2510. productName = KulexiuForStudentUITests;
  2511. productReference = 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */;
  2512. productType = "com.apple.product-type.bundle.ui-testing";
  2513. };
  2514. /* End PBXNativeTarget section */
  2515. /* Begin PBXProject section */
  2516. 275E8A9D27E18F8800DD3F6E /* Project object */ = {
  2517. isa = PBXProject;
  2518. attributes = {
  2519. BuildIndependentTargetsInParallel = 1;
  2520. LastUpgradeCheck = 1320;
  2521. TargetAttributes = {
  2522. 275E8AA427E18F8800DD3F6E = {
  2523. CreatedOnToolsVersion = 13.2.1;
  2524. };
  2525. 275E8ABF27E18F8C00DD3F6E = {
  2526. CreatedOnToolsVersion = 13.2.1;
  2527. TestTargetID = 275E8AA427E18F8800DD3F6E;
  2528. };
  2529. 275E8AC927E18F8C00DD3F6E = {
  2530. CreatedOnToolsVersion = 13.2.1;
  2531. TestTargetID = 275E8AA427E18F8800DD3F6E;
  2532. };
  2533. };
  2534. };
  2535. buildConfigurationList = 275E8AA027E18F8800DD3F6E /* Build configuration list for PBXProject "KulexiuForStudent" */;
  2536. compatibilityVersion = "Xcode 13.0";
  2537. developmentRegion = en;
  2538. hasScannedForEncodings = 0;
  2539. knownRegions = (
  2540. en,
  2541. Base,
  2542. );
  2543. mainGroup = 275E8A9C27E18F8800DD3F6E;
  2544. productRefGroup = 275E8AA627E18F8800DD3F6E /* Products */;
  2545. projectDirPath = "";
  2546. projectRoot = "";
  2547. targets = (
  2548. 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */,
  2549. 275E8ABF27E18F8C00DD3F6E /* KulexiuForStudentTests */,
  2550. 275E8AC927E18F8C00DD3F6E /* KulexiuForStudentUITests */,
  2551. );
  2552. };
  2553. /* End PBXProject section */
  2554. /* Begin PBXResourcesBuildPhase section */
  2555. 275E8AA327E18F8800DD3F6E /* Resources */ = {
  2556. isa = PBXResourcesBuildPhase;
  2557. buildActionMask = 2147483647;
  2558. files = (
  2559. 275E8AB827E18F8B00DD3F6E /* LaunchScreen.storyboard in Resources */,
  2560. 275FA1EF27E7351900CFEA2E /* KSUpdateAlert.xib in Resources */,
  2561. 277935AF27E324A90010E277 /* mss_browseLoading@3x.png in Resources */,
  2562. 2779355727E324A70010E277 /* KSPremissionAlert.xib in Resources */,
  2563. 2723B5C327F157B100E0B90B /* ChatNavView.xib in Resources */,
  2564. 2723B5BA27F157B100E0B90B /* ChatAddressHeaderView.xib in Resources */,
  2565. 2723B62E27F157D500E0B90B /* GroupApplyChooseAllCell.xib in Resources */,
  2566. 275FA23A27E7356B00CFEA2E /* VefiBodyView.xib in Resources */,
  2567. 2723B63227F157D500E0B90B /* GroupSettingBodyView.xib in Resources */,
  2568. 2723B5BF27F157B100E0B90B /* GroupCreateView.xib in Resources */,
  2569. 2723B63727F157D500E0B90B /* ApplyBottomView.xib in Resources */,
  2570. 2723B62F27F157D500E0B90B /* ChatComplainBodyView.xib in Resources */,
  2571. 2723B62127F157D500E0B90B /* NoticeEditBodyView.xib in Resources */,
  2572. 2723B66127F15CFB00E0B90B /* SettingBodyView.xib in Resources */,
  2573. 275E8AB527E18F8B00DD3F6E /* Assets.xcassets in Resources */,
  2574. 2723B63527F157D500E0B90B /* GroupApplyChooseCell.xib in Resources */,
  2575. 2723B5C227F157B100E0B90B /* GroupListViewCell.xib in Resources */,
  2576. 2723B62527F157D500E0B90B /* GroupNoticeCell.xib in Resources */,
  2577. 275FA23D27E7356B00CFEA2E /* PasswordBodyView.xib in Resources */,
  2578. 2723B66227F15CFC00E0B90B /* FeedbackBodyView.xib in Resources */,
  2579. 2723B66527F15CFC00E0B90B /* ModifyBodyView.xib in Resources */,
  2580. 275FA1AD27E734C600CFEA2E /* KSImageAlert.xib in Resources */,
  2581. 2723B5C427F157B100E0B90B /* KSChatListSearchView.xib in Resources */,
  2582. 2779359B27E324A80010E277 /* TZImagePickerController.bundle in Resources */,
  2583. 277935C327E324A90010E277 /* SDQWMaskCustomView.xib in Resources */,
  2584. 275FA24A27E7428D00CFEA2E /* InstrumentChooseView.xib in Resources */,
  2585. 2723B66327F15CFC00E0B90B /* ModifyNameBodyView.xib in Resources */,
  2586. 2723B66A27F15CFC00E0B90B /* PhoneChangeBodyView.xib in Resources */,
  2587. 27F9032D27E87C2E00C08A19 /* KSNetworkAlert.xib in Resources */,
  2588. 275FA24527E73E0100CFEA2E /* InstrumentDescView.xib in Resources */,
  2589. 2723B62D27F157D500E0B90B /* GroupApplyMemberCell.xib in Resources */,
  2590. 27F9032E27E87C2E00C08A19 /* DeviceCheckView.xib in Resources */,
  2591. 275FA23727E7356B00CFEA2E /* LoginBodyView.xib in Resources */,
  2592. 27F9033C27E87FE100C08A19 /* MineBodyView.xib in Resources */,
  2593. 27F9032B27E87C2E00C08A19 /* NetworkBodyView.xib in Resources */,
  2594. 2779358F27E324A80010E277 /* WMPlayer.bundle in Resources */,
  2595. 2723B66F27F15CFC00E0B90B /* AboutUsBodyView.xib in Resources */,
  2596. 275FA23827E7356B00CFEA2E /* FirstSettingBodyView.xib in Resources */,
  2597. 2723B63927F157D500E0B90B /* GroupMemberListCell.xib in Resources */,
  2598. 2723B66E27F15CFC00E0B90B /* PhoneCheckBodyView.xib in Resources */,
  2599. 2723B5C527F157B100E0B90B /* ContractListCell.xib in Resources */,
  2600. 27F9033727E87C8B00C08A19 /* MineNavView.xib in Resources */,
  2601. 275E8AB327E18F8800DD3F6E /* Main.storyboard in Resources */,
  2602. 277935B127E324A90010E277 /* mss_browseLoading@2x.png in Resources */,
  2603. );
  2604. runOnlyForDeploymentPostprocessing = 0;
  2605. };
  2606. 275E8ABE27E18F8C00DD3F6E /* Resources */ = {
  2607. isa = PBXResourcesBuildPhase;
  2608. buildActionMask = 2147483647;
  2609. files = (
  2610. );
  2611. runOnlyForDeploymentPostprocessing = 0;
  2612. };
  2613. 275E8AC827E18F8C00DD3F6E /* Resources */ = {
  2614. isa = PBXResourcesBuildPhase;
  2615. buildActionMask = 2147483647;
  2616. files = (
  2617. );
  2618. runOnlyForDeploymentPostprocessing = 0;
  2619. };
  2620. /* End PBXResourcesBuildPhase section */
  2621. /* Begin PBXShellScriptBuildPhase section */
  2622. 27666DDBA06A252BAC04BBAD /* [CP] Copy Pods Resources */ = {
  2623. isa = PBXShellScriptBuildPhase;
  2624. buildActionMask = 2147483647;
  2625. files = (
  2626. );
  2627. inputFileListPaths = (
  2628. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources-${CONFIGURATION}-input-files.xcfilelist",
  2629. );
  2630. name = "[CP] Copy Pods Resources";
  2631. outputFileListPaths = (
  2632. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources-${CONFIGURATION}-output-files.xcfilelist",
  2633. );
  2634. runOnlyForDeploymentPostprocessing = 0;
  2635. shellPath = /bin/sh;
  2636. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources.sh\"\n";
  2637. showEnvVarsInLog = 0;
  2638. };
  2639. 517802ACBF7A2D237EC51FBD /* [CP] Check Pods Manifest.lock */ = {
  2640. isa = PBXShellScriptBuildPhase;
  2641. buildActionMask = 2147483647;
  2642. files = (
  2643. );
  2644. inputFileListPaths = (
  2645. );
  2646. inputPaths = (
  2647. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2648. "${PODS_ROOT}/Manifest.lock",
  2649. );
  2650. name = "[CP] Check Pods Manifest.lock";
  2651. outputFileListPaths = (
  2652. );
  2653. outputPaths = (
  2654. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudent-checkManifestLockResult.txt",
  2655. );
  2656. runOnlyForDeploymentPostprocessing = 0;
  2657. shellPath = /bin/sh;
  2658. 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";
  2659. showEnvVarsInLog = 0;
  2660. };
  2661. 7FA65C60616F879A71C69DE3 /* [CP] Embed Pods Frameworks */ = {
  2662. isa = PBXShellScriptBuildPhase;
  2663. buildActionMask = 2147483647;
  2664. files = (
  2665. );
  2666. inputFileListPaths = (
  2667. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  2668. );
  2669. name = "[CP] Embed Pods Frameworks";
  2670. outputFileListPaths = (
  2671. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  2672. );
  2673. runOnlyForDeploymentPostprocessing = 0;
  2674. shellPath = /bin/sh;
  2675. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks.sh\"\n";
  2676. showEnvVarsInLog = 0;
  2677. };
  2678. AB9225EA49C09055CF4D365E /* [CP] Check Pods Manifest.lock */ = {
  2679. isa = PBXShellScriptBuildPhase;
  2680. buildActionMask = 2147483647;
  2681. files = (
  2682. );
  2683. inputFileListPaths = (
  2684. );
  2685. inputPaths = (
  2686. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2687. "${PODS_ROOT}/Manifest.lock",
  2688. );
  2689. name = "[CP] Check Pods Manifest.lock";
  2690. outputFileListPaths = (
  2691. );
  2692. outputPaths = (
  2693. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudentTests-checkManifestLockResult.txt",
  2694. );
  2695. runOnlyForDeploymentPostprocessing = 0;
  2696. shellPath = /bin/sh;
  2697. 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";
  2698. showEnvVarsInLog = 0;
  2699. };
  2700. C466C0F5CFE9161E20B6DAE7 /* [CP] Check Pods Manifest.lock */ = {
  2701. isa = PBXShellScriptBuildPhase;
  2702. buildActionMask = 2147483647;
  2703. files = (
  2704. );
  2705. inputFileListPaths = (
  2706. );
  2707. inputPaths = (
  2708. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2709. "${PODS_ROOT}/Manifest.lock",
  2710. );
  2711. name = "[CP] Check Pods Manifest.lock";
  2712. outputFileListPaths = (
  2713. );
  2714. outputPaths = (
  2715. "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudent-KulexiuForStudentUITests-checkManifestLockResult.txt",
  2716. );
  2717. runOnlyForDeploymentPostprocessing = 0;
  2718. shellPath = /bin/sh;
  2719. 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";
  2720. showEnvVarsInLog = 0;
  2721. };
  2722. CAFB9BB2B8A1DEF4AC72C464 /* [CP] Copy Pods Resources */ = {
  2723. isa = PBXShellScriptBuildPhase;
  2724. buildActionMask = 2147483647;
  2725. files = (
  2726. );
  2727. inputFileListPaths = (
  2728. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources-${CONFIGURATION}-input-files.xcfilelist",
  2729. );
  2730. name = "[CP] Copy Pods Resources";
  2731. outputFileListPaths = (
  2732. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources-${CONFIGURATION}-output-files.xcfilelist",
  2733. );
  2734. runOnlyForDeploymentPostprocessing = 0;
  2735. shellPath = /bin/sh;
  2736. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources.sh\"\n";
  2737. showEnvVarsInLog = 0;
  2738. };
  2739. F651308641378409742E5831 /* [CP] Embed Pods Frameworks */ = {
  2740. isa = PBXShellScriptBuildPhase;
  2741. buildActionMask = 2147483647;
  2742. files = (
  2743. );
  2744. inputFileListPaths = (
  2745. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  2746. );
  2747. name = "[CP] Embed Pods Frameworks";
  2748. outputFileListPaths = (
  2749. "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  2750. );
  2751. runOnlyForDeploymentPostprocessing = 0;
  2752. shellPath = /bin/sh;
  2753. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks.sh\"\n";
  2754. showEnvVarsInLog = 0;
  2755. };
  2756. /* End PBXShellScriptBuildPhase section */
  2757. /* Begin PBXSourcesBuildPhase section */
  2758. 275E8AA127E18F8800DD3F6E /* Sources */ = {
  2759. isa = PBXSourcesBuildPhase;
  2760. buildActionMask = 2147483647;
  2761. files = (
  2762. 2779354827E324A60010E277 /* NSObject+ReadDocument.m in Sources */,
  2763. 277935CB27E324A90010E277 /* TAAbstractDotView.m in Sources */,
  2764. 2723B5C627F157B100E0B90B /* GroupListViewCell.m in Sources */,
  2765. 275FA1E927E7351900CFEA2E /* KSNetTypeManager.m in Sources */,
  2766. 2723B66B27F15CFC00E0B90B /* PhoneCheckBodyView.m in Sources */,
  2767. 27F9033027E87C2E00C08A19 /* AudioRecordManager.m in Sources */,
  2768. 2779352527E324A60010E277 /* pinyin.c in Sources */,
  2769. 2779357B27E324A70010E277 /* ShopButton.m in Sources */,
  2770. 2723B61E27F157D500E0B90B /* GroupNoticeEditController.m in Sources */,
  2771. 277935AC27E324A80010E277 /* MSSBrowseBaseViewController.m in Sources */,
  2772. 2779352427E324A60010E277 /* KSUtilities.m in Sources */,
  2773. 2779359627E324A80010E277 /* TZVideoCropController.m in Sources */,
  2774. 277935AB27E324A80010E277 /* UIImage+MSSScale.m in Sources */,
  2775. 2779353427E324A60010E277 /* UIImageView+CornerRadius.m in Sources */,
  2776. 2779357827E324A70010E277 /* NSString+phone.m in Sources */,
  2777. 2779357D27E324A80010E277 /* KSMessageInputView.m in Sources */,
  2778. 277935BE27E324A90010E277 /* FSCalendarCalculator.m in Sources */,
  2779. 275FA1DC27E7351900CFEA2E /* KSAQRecordManager.m in Sources */,
  2780. 2779351427E324A50010E277 /* NSMutableDictionary+KSSafe.m in Sources */,
  2781. 2779356F27E324A70010E277 /* SkipTextField.m in Sources */,
  2782. 2723B67F27F15D3D00E0B90B /* AboutUsViewController.m in Sources */,
  2783. 2779356127E324A70010E277 /* KSAudioRecordManager.m in Sources */,
  2784. 2779359827E324A80010E277 /* TZAssetModel.m in Sources */,
  2785. 277935A027E324A80010E277 /* UIView+TZLayout.m in Sources */,
  2786. 2779351227E324A50010E277 /* KSNetworkAccessibleManager.m in Sources */,
  2787. 2779357227E324A70010E277 /* SearchView.m in Sources */,
  2788. 2723B64927F15BDC00E0B90B /* KSJXBodyView.m in Sources */,
  2789. 2779356527E324A70010E277 /* KSMediaManager.m in Sources */,
  2790. 2779355C27E324A70010E277 /* KSChoosePicker.m in Sources */,
  2791. 2779356C27E324A70010E277 /* MBProgressHUD+NJ.m in Sources */,
  2792. 2779353227E324A60010E277 /* NSDate+Transform.m in Sources */,
  2793. 2779356827E324A70010E277 /* shopview.m in Sources */,
  2794. 2723B64527F15B5900E0B90B /* SCIndexView.m in Sources */,
  2795. 2779359727E324A80010E277 /* TZVideoPlayerController.m in Sources */,
  2796. 275FA22E27E7356B00CFEA2E /* MineViewController.m in Sources */,
  2797. 2779354627E324A60010E277 /* UIView+Animation.m in Sources */,
  2798. 2723B68327F15D3D00E0B90B /* ModifyViewController.m in Sources */,
  2799. 2779356327E324A70010E277 /* HomeButton.m in Sources */,
  2800. 2779358227E324A80010E277 /* NSDate+KSBaseDatePicker.m in Sources */,
  2801. 277935CD27E324A90010E277 /* ALCalendarCell.m in Sources */,
  2802. 275FA1DA27E7351900CFEA2E /* KSNetworkingManager.m in Sources */,
  2803. 2779358A27E324A80010E277 /* ArchiveTools.m in Sources */,
  2804. 2779354527E324A60010E277 /* UIImage+UIImageScale.m in Sources */,
  2805. 2723B66427F15CFC00E0B90B /* VeriCheckView.m in Sources */,
  2806. 2779354C27E324A70010E277 /* KSGifRefreshHeader.m in Sources */,
  2807. 2779358727E324A80010E277 /* LLCollectionViewCell.m in Sources */,
  2808. 2779352627E324A60010E277 /* UIAlertController+Extend.m in Sources */,
  2809. 275FA1EB27E7351900CFEA2E /* KSBaseWKWebViewController.m in Sources */,
  2810. 2779353B27E324A60010E277 /* UrlDecode.m in Sources */,
  2811. 275FA22C27E7356B00CFEA2E /* CourseViewController.m in Sources */,
  2812. 2779358D27E324A80010E277 /* DZNSegmentedControl.m in Sources */,
  2813. 2779352027E324A60010E277 /* CALayer+Color.m in Sources */,
  2814. 2723B62C27F157D500E0B90B /* ApplyBottomView.m in Sources */,
  2815. 277935BA27E324A90010E277 /* FSCalendarWeekdayView.m in Sources */,
  2816. 2723B66C27F15CFC00E0B90B /* SettingBodyView.m in Sources */,
  2817. 2779354727E324A60010E277 /* UIButton+EnlargeEdge.m in Sources */,
  2818. 27F9032A27E87C2E00C08A19 /* NetworkBodyView.m in Sources */,
  2819. 277935A827E324A80010E277 /* MSSBrowseModel.m in Sources */,
  2820. 277935B927E324A90010E277 /* FSCalendarCollectionViewLayout.m in Sources */,
  2821. 2779359427E324A80010E277 /* TZAssetCell.m in Sources */,
  2822. 2723B5CE27F157BE00E0B90B /* KSRCloudMediaManager.m in Sources */,
  2823. 2779357027E324A70010E277 /* UITextView_Toolbar.m in Sources */,
  2824. 2779355327E324A70010E277 /* VoNetworking+RequestManager.m in Sources */,
  2825. 2723B62327F157D500E0B90B /* LFPopupMenuDefaultConfig.m in Sources */,
  2826. 2779351627E324A60010E277 /* NSMutableArray+KSSafe.m in Sources */,
  2827. 2779358927E324A80010E277 /* CoinModel.m in Sources */,
  2828. 275FA1EA27E7351900CFEA2E /* KSRCIMDataSource.m in Sources */,
  2829. 2779359C27E324A80010E277 /* TZProgressView.m in Sources */,
  2830. 27F9033627E87C8B00C08A19 /* MineNavView.m in Sources */,
  2831. 2723B62727F157D500E0B90B /* GroupMemberViewController.m in Sources */,
  2832. 2779353727E324A60010E277 /* UIImage+Color.m in Sources */,
  2833. 2779353127E324A60010E277 /* NSString+Extension.m in Sources */,
  2834. 2779353F27E324A60010E277 /* UIView+KSLayer.m in Sources */,
  2835. 275E8AB027E18F8800DD3F6E /* ViewController.m in Sources */,
  2836. 277935B627E324A90010E277 /* FSCalendarCell.m in Sources */,
  2837. 2779351E27E324A60010E277 /* UIViewController+zhStatusBarStyle.m in Sources */,
  2838. 2779356B27E324A70010E277 /* pickBut.m in Sources */,
  2839. 2779355F27E324A70010E277 /* UIView+ValueAdd.m in Sources */,
  2840. 275FA1E227E7351900CFEA2E /* KSWebBackButton.m in Sources */,
  2841. 277935BF27E324A90010E277 /* FSCalendarHeaderView.m in Sources */,
  2842. 275FA1AE27E734C600CFEA2E /* KSImageAlert.m in Sources */,
  2843. 275FA1DE27E7351900CFEA2E /* KSLocalWebViewController.m in Sources */,
  2844. 2779354227E324A60010E277 /* UIImage+ResizeImage.m in Sources */,
  2845. 277935B327E324A90010E277 /* FSCalendarCollectionView.m in Sources */,
  2846. 2779352727E324A60010E277 /* NSArray+zh_SafeAccess.m in Sources */,
  2847. 2779352227E324A60010E277 /* UITextView+ZWLimitCounter.m in Sources */,
  2848. 27F9032927E87C2E00C08A19 /* NetworkingCheckController.m in Sources */,
  2849. 277935A527E324A80010E277 /* MSSBrowseLoadingImageView.m in Sources */,
  2850. 2779353E27E324A60010E277 /* UIDevice+TFDevice.m in Sources */,
  2851. 2723B5C027F157B100E0B90B /* ChatAddressHeaderView.m in Sources */,
  2852. 2723B68127F15D3D00E0B90B /* ModifyNameViewController.m in Sources */,
  2853. 2779359927E324A80010E277 /* NSBundle+TZImagePicker.m in Sources */,
  2854. 2779358E27E324A80010E277 /* WMPlayerModel.m in Sources */,
  2855. 2779354E27E324A70010E277 /* KSAudioSessionManager.m in Sources */,
  2856. 2779358127E324A80010E277 /* StateView.m in Sources */,
  2857. 2779358C27E324A80010E277 /* AnimationContoller.m in Sources */,
  2858. 2779359027E324A80010E277 /* WMLightView.m in Sources */,
  2859. 2723B5A227F1578300E0B90B /* CreateFansGroupViewController.m in Sources */,
  2860. 277935BD27E324A90010E277 /* FSCalendarConstants.m in Sources */,
  2861. 2779351C27E324A60010E277 /* UIDevice+zhDeviceType.m in Sources */,
  2862. 2723B62927F157D500E0B90B /* KSChatComplainController.m in Sources */,
  2863. 2779351527E324A60010E277 /* NSArray+KSSafe.m in Sources */,
  2864. 2723B61A27F157D500E0B90B /* KSSearchResultViewCell.m in Sources */,
  2865. 277935B827E324A90010E277 /* FSCalendar.m in Sources */,
  2866. 275FA23527E7356B00CFEA2E /* UserInfoManager.m in Sources */,
  2867. 2779353327E324A60010E277 /* UIScreen+Extend.m in Sources */,
  2868. 2723B67E27F15D3D00E0B90B /* ModifyPhoneCheckController.m in Sources */,
  2869. 2779353A27E324A60010E277 /* UILabel+QWTopLeftLabel.m in Sources */,
  2870. 2779359A27E324A80010E277 /* TZPhotoPreviewController.m in Sources */,
  2871. 2779355E27E324A70010E277 /* KSAudioRecordFileManager.m in Sources */,
  2872. 2779357A27E324A70010E277 /* PIckView.m in Sources */,
  2873. 2779354127E324A60010E277 /* UIView+ShowProgress.m in Sources */,
  2874. 277935B427E324A90010E277 /* FSCalendarDelegationProxy.m in Sources */,
  2875. 2723B5BB27F157B100E0B90B /* ChatAddressBodyView.m in Sources */,
  2876. 2779357427E324A70010E277 /* StoreButton.m in Sources */,
  2877. 277935A927E324A80010E277 /* MSSBrowseActionSheet.m in Sources */,
  2878. 275FA1E027E7351900CFEA2E /* RecordCheckManager.m in Sources */,
  2879. 2779355627E324A70010E277 /* KSPremissionAlert.m in Sources */,
  2880. 2779352827E324A60010E277 /* UIColor+Extend.m in Sources */,
  2881. 2779357627E324A70010E277 /* ShoppCatView.m in Sources */,
  2882. 2779357127E324A70010E277 /* SkipTextView.m in Sources */,
  2883. 2723B61D27F157D500E0B90B /* GroupNoticeViewController.m in Sources */,
  2884. 277935D027E324A90010E277 /* ALCalendarDate.m in Sources */,
  2885. 2723B64427F15B5900E0B90B /* SCIndexViewConfiguration.m in Sources */,
  2886. 2779358527E324A80010E277 /* LLFileManager.m in Sources */,
  2887. 2779357327E324A70010E277 /* prodectButton.m in Sources */,
  2888. 2723B5BD27F157B100E0B90B /* KSChatListSearchView.m in Sources */,
  2889. 2723B61827F157D500E0B90B /* KSSearchHistoryMessageController.m in Sources */,
  2890. 2779359327E324A80010E277 /* TZImageCropManager.m in Sources */,
  2891. 2723B66727F15CFC00E0B90B /* ModifyBodyView.m in Sources */,
  2892. 2779357727E324A70010E277 /* GRScanManager.m in Sources */,
  2893. 277935D527E324A90010E277 /* ALCalendarManager.m in Sources */,
  2894. 2779351927E324A60010E277 /* NSMutableString+KSSafe.m in Sources */,
  2895. 2723B5BC27F157B100E0B90B /* GroupCreateView.m in Sources */,
  2896. 2723B64627F15B5900E0B90B /* UITableView+SCIndexView.m in Sources */,
  2897. 2779352327E324A60010E277 /* UILabel+Extension.m in Sources */,
  2898. 2723B63027F157D500E0B90B /* GroupApplyChooseAllCell.m in Sources */,
  2899. 2723B61F27F157D500E0B90B /* GroupNoticeModel.m in Sources */,
  2900. 275FA1E627E7351900CFEA2E /* KSUpdateAlert.m in Sources */,
  2901. 2779355027E324A70010E277 /* VoDiskCache.m in Sources */,
  2902. 2779353927E324A60010E277 /* UIView+XIBView.m in Sources */,
  2903. 2779355827E324A70010E277 /* UIImage+Addtions.m in Sources */,
  2904. 277935D427E324A90010E277 /* UIView+ALFrame.m in Sources */,
  2905. 275FA23C27E7356B00CFEA2E /* VefiBodyView.m in Sources */,
  2906. 2779358027E324A80010E277 /* sortButton.m in Sources */,
  2907. 2779356027E324A70010E277 /* KSRecordStatusView.m in Sources */,
  2908. 2723B62B27F157D500E0B90B /* ApplyMemberModel.m in Sources */,
  2909. 2779354D27E324A70010E277 /* KSGifRefreshFooter.m in Sources */,
  2910. 275FA22F27E7356B00CFEA2E /* ShopMallViewController.m in Sources */,
  2911. 275E8AAA27E18F8800DD3F6E /* AppDelegate.m in Sources */,
  2912. 2779356427E324A70010E277 /* KSFullDatePicker.m in Sources */,
  2913. 2723B5CF27F157BE00E0B90B /* GroupMemberModel.m in Sources */,
  2914. 2723B62A27F157D500E0B90B /* GroupSettingViewController.m in Sources */,
  2915. 2779359127E324A80010E277 /* FastForwardView.m in Sources */,
  2916. 2723B63C27F159BA00E0B90B /* KSBaseTableViewController.m in Sources */,
  2917. 2779358B27E324A80010E277 /* KLTNavigationController.m in Sources */,
  2918. 27F9033127E87C2E00C08A19 /* DeviceCheckView.m in Sources */,
  2919. 2723B62427F157D500E0B90B /* NoticeEditBodyView.m in Sources */,
  2920. 2779352F27E324A60010E277 /* UIView+Hints.m in Sources */,
  2921. 2779351D27E324A60010E277 /* NSString+zh_SafeAccess.m in Sources */,
  2922. 2779351A27E324A60010E277 /* NSObject+AssociatedObject.m in Sources */,
  2923. 2779359227E324A80010E277 /* WMPlayer.m in Sources */,
  2924. 277935CF27E324A90010E277 /* ALCalendarHeader.m in Sources */,
  2925. 275FA24827E7428200CFEA2E /* InstrumentChooseView.m in Sources */,
  2926. 2779358627E324A80010E277 /* LLPhoto.m in Sources */,
  2927. 277935C127E324A90010E277 /* FSCalendarAppearance.m in Sources */,
  2928. 275E8ABB27E18F8B00DD3F6E /* main.m in Sources */,
  2929. 2779359F27E324A80010E277 /* TZPhotoPreviewCell.m in Sources */,
  2930. 277935A227E324A80010E277 /* TZLocationManager.m in Sources */,
  2931. 2723B62827F157D500E0B90B /* KSSelectConversationViewController.m in Sources */,
  2932. 275FA1E827E7351900CFEA2E /* CustomNavViewController.m in Sources */,
  2933. 275FA24327E73DF600CFEA2E /* InstrumentDescView.m in Sources */,
  2934. 2723B68027F15D3D00E0B90B /* FeedbackViewController.m in Sources */,
  2935. 275FA1ED27E7351900CFEA2E /* KSUpdateManager.m in Sources */,
  2936. 277935B227E324A90010E277 /* UIView+MSSLayout.m in Sources */,
  2937. 275FA1E427E7351900CFEA2E /* KSWebNavView.m in Sources */,
  2938. 2779356D27E324A70010E277 /* StoreShopCaterview.m in Sources */,
  2939. 277935D327E324A90010E277 /* ALCalendarPicker.m in Sources */,
  2940. 2779354F27E324A70010E277 /* VoLRUManager.m in Sources */,
  2941. 2779356727E324A70010E277 /* UIColor+Hex.m in Sources */,
  2942. 275FA1E727E7351900CFEA2E /* KSWebSocketManager.m in Sources */,
  2943. 277935AE27E324A80010E277 /* MSSBrowseRemindView.m in Sources */,
  2944. 2779356A27E324A70010E277 /* YKNodeModel.m in Sources */,
  2945. 277935CE27E324A90010E277 /* ALCalendarConfig.m in Sources */,
  2946. 2779354327E324A60010E277 /* UIButton+HasChooseImage.m in Sources */,
  2947. 2779355927E324A70010E277 /* GRCreateManager.m in Sources */,
  2948. 277935A727E324A80010E277 /* MSSBrowseCollectionViewCell.m in Sources */,
  2949. 277935AD27E324A80010E277 /* MSSBrowseZoomScrollView.m in Sources */,
  2950. 2723B68227F15D3D00E0B90B /* ModifyPhoneChangeController.m in Sources */,
  2951. 277935C827E324A90010E277 /* TADotView.m in Sources */,
  2952. 2779353027E324A60010E277 /* NSDate+Extension.m in Sources */,
  2953. 277935D127E324A90010E277 /* ALCalendarCollectionView.m in Sources */,
  2954. 2779355427E324A70010E277 /* VoNetWorking.m in Sources */,
  2955. 275FA1EE27E7351900CFEA2E /* KSBaseViewController.m in Sources */,
  2956. 2723B63827F157D500E0B90B /* GroupApplyChooseCell.m in Sources */,
  2957. 2723B66827F15CFC00E0B90B /* FeedbackBodyView.m in Sources */,
  2958. 2779354927E324A60010E277 /* MBProgressHUD+KSShow.m in Sources */,
  2959. 277935A427E324A80010E277 /* TZImageRequestOperation.m in Sources */,
  2960. 275FA23627E7356B00CFEA2E /* LoginBodyView.m in Sources */,
  2961. 2779355A27E324A70010E277 /* QCCountdownButton.m in Sources */,
  2962. 275FA1E127E7351900CFEA2E /* KSTabBarViewController.m in Sources */,
  2963. 277935BB27E324A90010E277 /* FSCalendarSeparatorDecorationView.m in Sources */,
  2964. 275FA1DF27E7351900CFEA2E /* RCConnectionManager.m in Sources */,
  2965. 275FA22B27E7356B00CFEA2E /* HomeViewController.m in Sources */,
  2966. 277935C027E324A90010E277 /* FSCalendarTransitionCoordinator.m in Sources */,
  2967. 2779355B27E324A70010E277 /* KSStatusView.m in Sources */,
  2968. 2779355227E324A70010E277 /* VoMemoryCache.m in Sources */,
  2969. 2779352A27E324A60010E277 /* UIView+Dealloc.m in Sources */,
  2970. 2779352D27E324A60010E277 /* NSString+CZHSizeExtension.m in Sources */,
  2971. 2779353827E324A60010E277 /* UIView+KSExtension.m in Sources */,
  2972. 2723B5CD27F157BE00E0B90B /* GroupListModel.m in Sources */,
  2973. 2779354B27E324A60010E277 /* KSVideoEditor.m in Sources */,
  2974. 277935A327E324A80010E277 /* TZGifPhotoPreviewController.m in Sources */,
  2975. 277935A127E324A80010E277 /* TZImagePickerController.m in Sources */,
  2976. 2723B63327F157D500E0B90B /* ChatComplainBodyView.m in Sources */,
  2977. 2779357927E324A70010E277 /* KSImageButton.m in Sources */,
  2978. 2779351827E324A60010E277 /* NSObject+KSImpChangeTool.m in Sources */,
  2979. 2779359D27E324A80010E277 /* TZImageManager.m in Sources */,
  2980. 2723B5BE27F157B100E0B90B /* ChatNavView.m in Sources */,
  2981. 2723B66D27F15CFC00E0B90B /* ModifyNameBodyView.m in Sources */,
  2982. 275FA23327E7356B00CFEA2E /* VefiCodeLoginController.m in Sources */,
  2983. 2723B61B27F157D500E0B90B /* KSSearchRCLabel.m in Sources */,
  2984. 275FA23B27E7356B00CFEA2E /* PasswordBodyView.m in Sources */,
  2985. 277935C527E324A90010E277 /* UIView+SDExtension.m in Sources */,
  2986. 2779356E27E324A70010E277 /* UITextField_Toolbar.m in Sources */,
  2987. 277935B027E324A90010E277 /* MSSBrowseActionSheetCell.m in Sources */,
  2988. 2779358827E324A80010E277 /* NSObject+Archiving.m in Sources */,
  2989. 2779354427E324A60010E277 /* NSObject+AutoProperty.m in Sources */,
  2990. 275FA23427E7356B00CFEA2E /* UserInfo.m in Sources */,
  2991. 27F9033A27E87FD500C08A19 /* MineBodyView.m in Sources */,
  2992. 275FA1EC27E7351900CFEA2E /* BaseViewController.m in Sources */,
  2993. 275FA1DB27E7351900CFEA2E /* UINavigationController+KSNavigationBar.m in Sources */,
  2994. 2779352127E324A60010E277 /* NSMutableAttributedString+CZHExtention.m in Sources */,
  2995. 277935C727E324A90010E277 /* SDCollectionViewCell.m in Sources */,
  2996. 2779358427E324A80010E277 /* LLImageCache.m in Sources */,
  2997. 275FA23127E7356B00CFEA2E /* FirstSettingViewController.m in Sources */,
  2998. 275FA1DD27E7351900CFEA2E /* KSBaseModel.m in Sources */,
  2999. 2779354027E324A60010E277 /* UIImage+Property.m in Sources */,
  3000. 2779356627E324A70010E277 /* ShopMessBtn.m in Sources */,
  3001. 277935B727E324A90010E277 /* FSCalendarStickyHeader.m in Sources */,
  3002. 2779356927E324A70010E277 /* YKMultiLevelTableView.m in Sources */,
  3003. 2779351B27E324A60010E277 /* UIControl+ButtonAction.m in Sources */,
  3004. 27F9032F27E87C2E00C08A19 /* AudioPlayManager.m in Sources */,
  3005. 2779357C27E324A70010E277 /* NSString+MD5.m in Sources */,
  3006. 2779355D27E324A70010E277 /* KSHoldButton.m in Sources */,
  3007. 2723B62027F157D500E0B90B /* GroupNoticeCell.m in Sources */,
  3008. 277935A627E324A80010E277 /* MSSBrowseLocalViewController.m in Sources */,
  3009. 277935D227E324A90010E277 /* ALCalendarHelper.m in Sources */,
  3010. 2779353D27E324A60010E277 /* UIScrollView+KSTouch.m in Sources */,
  3011. 275FA23927E7356B00CFEA2E /* FirstSettingBodyView.m in Sources */,
  3012. 277935CA27E324A90010E277 /* TAAnimatedDotView.m in Sources */,
  3013. 2779353527E324A60010E277 /* NSObject+ReadDocument.m in Sources */,
  3014. 277935C227E324A90010E277 /* QWdynamicModel.m in Sources */,
  3015. 2779357E27E324A80010E277 /* KSInputView.m in Sources */,
  3016. 2723B63427F157D500E0B90B /* GroupApplyMemberCell.m in Sources */,
  3017. 2779352927E324A60010E277 /* zhPopupController.m in Sources */,
  3018. 2779359527E324A80010E277 /* TZVideoEditedPreviewController.m in Sources */,
  3019. 2723B63127F157D500E0B90B /* GroupSettingBodyView.m in Sources */,
  3020. 2779358327E324A80010E277 /* LLPhotoBrowser.m in Sources */,
  3021. 275FA23027E7356B00CFEA2E /* PasswordLoginController.m in Sources */,
  3022. 2779351327E324A50010E277 /* NSDictionary+KSSafe.m in Sources */,
  3023. 2779352B27E324A60010E277 /* NSObject+Parse.m in Sources */,
  3024. 275FA23227E7356B00CFEA2E /* LoginViewController.m in Sources */,
  3025. 2723B5C127F157B100E0B90B /* ContractListCell.m in Sources */,
  3026. 275FA1E527E7351900CFEA2E /* KSAccompanyWebViewController.m in Sources */,
  3027. 2779354A27E324A60010E277 /* UIImage+Resize.m in Sources */,
  3028. 2723B5A327F1578300E0B90B /* KSChatListViewController.m in Sources */,
  3029. 2723B68427F15D3D00E0B90B /* AddressViewController.m in Sources */,
  3030. 2779357527E324A70010E277 /* LifeButton.m in Sources */,
  3031. 275FA24027E737EE00CFEA2E /* ChooseInsturmentViewController.m in Sources */,
  3032. 27F9032C27E87C2E00C08A19 /* KSNetworkAlert.m in Sources */,
  3033. 2779353627E324A60010E277 /* CALayer+Layout.m in Sources */,
  3034. 275FA22D27E7356B00CFEA2E /* ChatViewController.m in Sources */,
  3035. 2723B5A427F1578300E0B90B /* KSChatConversationViewController.m in Sources */,
  3036. 2723B62627F157D500E0B90B /* GroupApplyViewController.m in Sources */,
  3037. 277935C427E324A90010E277 /* SDCycleScrollView.m in Sources */,
  3038. 2723B61C27F157D500E0B90B /* KSRCSearchBar.m in Sources */,
  3039. 277935C627E324A90010E277 /* SDQWMaskCustomModel.m in Sources */,
  3040. 2779359E27E324A80010E277 /* TZPhotoPickerController.m in Sources */,
  3041. 277935AA27E324A80010E277 /* MSSBrowseNetworkViewController.m in Sources */,
  3042. 2723B63627F157D500E0B90B /* GroupMemberListCell.m in Sources */,
  3043. 2723B62227F157D500E0B90B /* LFPopupMenu.m in Sources */,
  3044. 2779357F27E324A80010E277 /* KeyChainTools.m in Sources */,
  3045. 2723B61927F157D500E0B90B /* KSSearchResultModel.m in Sources */,
  3046. 275FA1E327E7351900CFEA2E /* WeakWebViewScriptMessageDelegate.m in Sources */,
  3047. 2779351F27E324A60010E277 /* UITextView+ZWPlaceHolder.m in Sources */,
  3048. 2779353C27E324A60010E277 /* UIButton+Property.m in Sources */,
  3049. 277935CC27E324A90010E277 /* SDQWMaskCustomView.m in Sources */,
  3050. 2779351727E324A60010E277 /* NSObject+KSSwizzling.m in Sources */,
  3051. 2779352C27E324A60010E277 /* UIView+AddConstraints.m in Sources */,
  3052. 277935C927E324A90010E277 /* TAPageControl.m in Sources */,
  3053. 2723B5A527F1578300E0B90B /* ChatAddressViewController.m in Sources */,
  3054. 2723B66627F15CFC00E0B90B /* AboutUsBodyView.m in Sources */,
  3055. 277935BC27E324A90010E277 /* FSCalendarExtensions.m in Sources */,
  3056. 2779356227E324A70010E277 /* KSRecordPowerAnimationView.m in Sources */,
  3057. 2779355527E324A70010E277 /* DiskFreeSpaceManager.m in Sources */,
  3058. 2779352E27E324A60010E277 /* NSDictionary+Extension.m in Sources */,
  3059. 2779355127E324A70010E277 /* VoCacheManager.m in Sources */,
  3060. 277935B527E324A90010E277 /* FSCalendarDelegationFactory.m in Sources */,
  3061. 2723B66927F15CFC00E0B90B /* PhoneChangeBodyView.m in Sources */,
  3062. 27F9033227E87C2E00C08A19 /* SettingViewController.m in Sources */,
  3063. );
  3064. runOnlyForDeploymentPostprocessing = 0;
  3065. };
  3066. 275E8ABC27E18F8C00DD3F6E /* Sources */ = {
  3067. isa = PBXSourcesBuildPhase;
  3068. buildActionMask = 2147483647;
  3069. files = (
  3070. 275E8AC527E18F8C00DD3F6E /* KulexiuForStudentTests.m in Sources */,
  3071. );
  3072. runOnlyForDeploymentPostprocessing = 0;
  3073. };
  3074. 275E8AC627E18F8C00DD3F6E /* Sources */ = {
  3075. isa = PBXSourcesBuildPhase;
  3076. buildActionMask = 2147483647;
  3077. files = (
  3078. 275E8AD127E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m in Sources */,
  3079. 275E8ACF27E18F8C00DD3F6E /* KulexiuForStudentUITests.m in Sources */,
  3080. );
  3081. runOnlyForDeploymentPostprocessing = 0;
  3082. };
  3083. /* End PBXSourcesBuildPhase section */
  3084. /* Begin PBXTargetDependency section */
  3085. 275E8AC227E18F8C00DD3F6E /* PBXTargetDependency */ = {
  3086. isa = PBXTargetDependency;
  3087. target = 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */;
  3088. targetProxy = 275E8AC127E18F8C00DD3F6E /* PBXContainerItemProxy */;
  3089. };
  3090. 275E8ACC27E18F8C00DD3F6E /* PBXTargetDependency */ = {
  3091. isa = PBXTargetDependency;
  3092. target = 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */;
  3093. targetProxy = 275E8ACB27E18F8C00DD3F6E /* PBXContainerItemProxy */;
  3094. };
  3095. /* End PBXTargetDependency section */
  3096. /* Begin PBXVariantGroup section */
  3097. 275E8AB127E18F8800DD3F6E /* Main.storyboard */ = {
  3098. isa = PBXVariantGroup;
  3099. children = (
  3100. 275E8AB227E18F8800DD3F6E /* Base */,
  3101. );
  3102. name = Main.storyboard;
  3103. sourceTree = "<group>";
  3104. };
  3105. 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */ = {
  3106. isa = PBXVariantGroup;
  3107. children = (
  3108. 275E8AB727E18F8B00DD3F6E /* Base */,
  3109. );
  3110. name = LaunchScreen.storyboard;
  3111. sourceTree = "<group>";
  3112. };
  3113. /* End PBXVariantGroup section */
  3114. /* Begin XCBuildConfiguration section */
  3115. 275E8AD227E18F8C00DD3F6E /* Debug */ = {
  3116. isa = XCBuildConfiguration;
  3117. buildSettings = {
  3118. ALWAYS_SEARCH_USER_PATHS = NO;
  3119. CLANG_ANALYZER_NONNULL = YES;
  3120. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3121. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3122. CLANG_CXX_LIBRARY = "libc++";
  3123. CLANG_ENABLE_MODULES = YES;
  3124. CLANG_ENABLE_OBJC_ARC = YES;
  3125. CLANG_ENABLE_OBJC_WEAK = YES;
  3126. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3127. CLANG_WARN_BOOL_CONVERSION = YES;
  3128. CLANG_WARN_COMMA = YES;
  3129. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3130. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3131. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3132. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3133. CLANG_WARN_EMPTY_BODY = YES;
  3134. CLANG_WARN_ENUM_CONVERSION = YES;
  3135. CLANG_WARN_INFINITE_RECURSION = YES;
  3136. CLANG_WARN_INT_CONVERSION = YES;
  3137. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3138. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3139. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3140. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3141. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3142. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3143. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3144. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3145. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3146. CLANG_WARN_UNREACHABLE_CODE = YES;
  3147. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3148. COPY_PHASE_STRIP = NO;
  3149. DEBUG_INFORMATION_FORMAT = dwarf;
  3150. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3151. ENABLE_TESTABILITY = YES;
  3152. GCC_C_LANGUAGE_STANDARD = gnu11;
  3153. GCC_DYNAMIC_NO_PIC = NO;
  3154. GCC_NO_COMMON_BLOCKS = YES;
  3155. GCC_OPTIMIZATION_LEVEL = 0;
  3156. GCC_PREPROCESSOR_DEFINITIONS = (
  3157. "DEBUG=1",
  3158. "$(inherited)",
  3159. );
  3160. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3161. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3162. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3163. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3164. GCC_WARN_UNUSED_FUNCTION = YES;
  3165. GCC_WARN_UNUSED_VARIABLE = YES;
  3166. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  3167. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3168. MTL_FAST_MATH = YES;
  3169. ONLY_ACTIVE_ARCH = YES;
  3170. SDKROOT = iphoneos;
  3171. };
  3172. name = Debug;
  3173. };
  3174. 275E8AD327E18F8C00DD3F6E /* Release */ = {
  3175. isa = XCBuildConfiguration;
  3176. buildSettings = {
  3177. ALWAYS_SEARCH_USER_PATHS = NO;
  3178. CLANG_ANALYZER_NONNULL = YES;
  3179. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3180. CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
  3181. CLANG_CXX_LIBRARY = "libc++";
  3182. CLANG_ENABLE_MODULES = YES;
  3183. CLANG_ENABLE_OBJC_ARC = YES;
  3184. CLANG_ENABLE_OBJC_WEAK = YES;
  3185. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3186. CLANG_WARN_BOOL_CONVERSION = YES;
  3187. CLANG_WARN_COMMA = YES;
  3188. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3189. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3190. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3191. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3192. CLANG_WARN_EMPTY_BODY = YES;
  3193. CLANG_WARN_ENUM_CONVERSION = YES;
  3194. CLANG_WARN_INFINITE_RECURSION = YES;
  3195. CLANG_WARN_INT_CONVERSION = YES;
  3196. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3197. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3198. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3199. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3200. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  3201. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3202. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3203. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3204. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3205. CLANG_WARN_UNREACHABLE_CODE = YES;
  3206. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3207. COPY_PHASE_STRIP = NO;
  3208. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3209. ENABLE_NS_ASSERTIONS = NO;
  3210. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3211. GCC_C_LANGUAGE_STANDARD = gnu11;
  3212. GCC_NO_COMMON_BLOCKS = YES;
  3213. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3214. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3215. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3216. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3217. GCC_WARN_UNUSED_FUNCTION = YES;
  3218. GCC_WARN_UNUSED_VARIABLE = YES;
  3219. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  3220. MTL_ENABLE_DEBUG_INFO = NO;
  3221. MTL_FAST_MATH = YES;
  3222. SDKROOT = iphoneos;
  3223. VALIDATE_PRODUCT = YES;
  3224. };
  3225. name = Release;
  3226. };
  3227. 275E8AD527E18F8C00DD3F6E /* Debug */ = {
  3228. isa = XCBuildConfiguration;
  3229. baseConfigurationReference = 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */;
  3230. buildSettings = {
  3231. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3232. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3233. CODE_SIGN_STYLE = Automatic;
  3234. CURRENT_PROJECT_VERSION = 1.0.0;
  3235. DEVELOPMENT_TEAM = P664H7S5LL;
  3236. GCC_PREFIX_HEADER = "$(SRCROOT)/KulexiuForStudent/Common/Define/PrefixHeader.pch";
  3237. GENERATE_INFOPLIST_FILE = YES;
  3238. INFOPLIST_FILE = KulexiuForStudent/Info.plist;
  3239. INFOPLIST_KEY_CFBundleDisplayName = "酷乐秀学生端";
  3240. INFOPLIST_KEY_NSAppleMusicUsageDescription = "App需要您的同意访问媒体资料库权限,用于播放媒体服务";
  3241. INFOPLIST_KEY_NSCameraUsageDescription = "APP需要您的同意,访问您的相机,以便您正常使用上传图片、视频课程等服务";
  3242. INFOPLIST_KEY_NSMicrophoneUsageDescription = "App需要您的同意访问麦克风权限,用于您的语音服务、视频教学";
  3243. INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  3244. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  3245. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3246. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  3247. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  3248. INFOPLIST_KEY_UIRequiresFullScreen = YES;
  3249. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  3250. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  3251. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  3252. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  3253. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3254. LD_RUNPATH_SEARCH_PATHS = (
  3255. "$(inherited)",
  3256. "@executable_path/Frameworks",
  3257. );
  3258. MARKETING_VERSION = 1.0.0;
  3259. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudent;
  3260. PRODUCT_NAME = "$(TARGET_NAME)";
  3261. SWIFT_EMIT_LOC_STRINGS = YES;
  3262. TARGETED_DEVICE_FAMILY = "1,2";
  3263. };
  3264. name = Debug;
  3265. };
  3266. 275E8AD627E18F8C00DD3F6E /* Release */ = {
  3267. isa = XCBuildConfiguration;
  3268. baseConfigurationReference = 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */;
  3269. buildSettings = {
  3270. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3271. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  3272. CODE_SIGN_STYLE = Automatic;
  3273. CURRENT_PROJECT_VERSION = 1.0.0;
  3274. DEVELOPMENT_TEAM = P664H7S5LL;
  3275. GCC_PREFIX_HEADER = "$(SRCROOT)/KulexiuForStudent/Common/Define/PrefixHeader.pch";
  3276. GENERATE_INFOPLIST_FILE = YES;
  3277. INFOPLIST_FILE = KulexiuForStudent/Info.plist;
  3278. INFOPLIST_KEY_CFBundleDisplayName = "酷乐秀学生端";
  3279. INFOPLIST_KEY_NSAppleMusicUsageDescription = "App需要您的同意访问媒体资料库权限,用于播放媒体服务";
  3280. INFOPLIST_KEY_NSCameraUsageDescription = "APP需要您的同意,访问您的相机,以便您正常使用上传图片、视频课程等服务";
  3281. INFOPLIST_KEY_NSMicrophoneUsageDescription = "App需要您的同意访问麦克风权限,用于您的语音服务、视频教学";
  3282. INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  3283. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
  3284. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  3285. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  3286. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  3287. INFOPLIST_KEY_UIRequiresFullScreen = YES;
  3288. INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
  3289. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  3290. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  3291. INFOPLIST_KEY_UIUserInterfaceStyle = Light;
  3292. IPHONEOS_DEPLOYMENT_TARGET = 11.0;
  3293. LD_RUNPATH_SEARCH_PATHS = (
  3294. "$(inherited)",
  3295. "@executable_path/Frameworks",
  3296. );
  3297. MARKETING_VERSION = 1.0.0;
  3298. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudent;
  3299. PRODUCT_NAME = "$(TARGET_NAME)";
  3300. SWIFT_EMIT_LOC_STRINGS = YES;
  3301. TARGETED_DEVICE_FAMILY = "1,2";
  3302. };
  3303. name = Release;
  3304. };
  3305. 275E8AD827E18F8C00DD3F6E /* Debug */ = {
  3306. isa = XCBuildConfiguration;
  3307. baseConfigurationReference = 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */;
  3308. buildSettings = {
  3309. BUNDLE_LOADER = "$(TEST_HOST)";
  3310. CODE_SIGN_STYLE = Automatic;
  3311. CURRENT_PROJECT_VERSION = 1;
  3312. DEVELOPMENT_TEAM = P664H7S5LL;
  3313. GENERATE_INFOPLIST_FILE = YES;
  3314. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  3315. MARKETING_VERSION = 1.0;
  3316. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentTests;
  3317. PRODUCT_NAME = "$(TARGET_NAME)";
  3318. SWIFT_EMIT_LOC_STRINGS = NO;
  3319. TARGETED_DEVICE_FAMILY = "1,2";
  3320. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KulexiuForStudent.app/KulexiuForStudent";
  3321. };
  3322. name = Debug;
  3323. };
  3324. 275E8AD927E18F8C00DD3F6E /* Release */ = {
  3325. isa = XCBuildConfiguration;
  3326. baseConfigurationReference = ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */;
  3327. buildSettings = {
  3328. BUNDLE_LOADER = "$(TEST_HOST)";
  3329. CODE_SIGN_STYLE = Automatic;
  3330. CURRENT_PROJECT_VERSION = 1;
  3331. DEVELOPMENT_TEAM = P664H7S5LL;
  3332. GENERATE_INFOPLIST_FILE = YES;
  3333. IPHONEOS_DEPLOYMENT_TARGET = 15.2;
  3334. MARKETING_VERSION = 1.0;
  3335. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentTests;
  3336. PRODUCT_NAME = "$(TARGET_NAME)";
  3337. SWIFT_EMIT_LOC_STRINGS = NO;
  3338. TARGETED_DEVICE_FAMILY = "1,2";
  3339. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KulexiuForStudent.app/KulexiuForStudent";
  3340. };
  3341. name = Release;
  3342. };
  3343. 275E8ADB27E18F8C00DD3F6E /* Debug */ = {
  3344. isa = XCBuildConfiguration;
  3345. baseConfigurationReference = 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */;
  3346. buildSettings = {
  3347. CODE_SIGN_STYLE = Automatic;
  3348. CURRENT_PROJECT_VERSION = 1;
  3349. DEVELOPMENT_TEAM = P664H7S5LL;
  3350. GENERATE_INFOPLIST_FILE = YES;
  3351. MARKETING_VERSION = 1.0;
  3352. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentUITests;
  3353. PRODUCT_NAME = "$(TARGET_NAME)";
  3354. SWIFT_EMIT_LOC_STRINGS = NO;
  3355. TARGETED_DEVICE_FAMILY = "1,2";
  3356. TEST_TARGET_NAME = KulexiuForStudent;
  3357. };
  3358. name = Debug;
  3359. };
  3360. 275E8ADC27E18F8C00DD3F6E /* Release */ = {
  3361. isa = XCBuildConfiguration;
  3362. baseConfigurationReference = D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */;
  3363. buildSettings = {
  3364. CODE_SIGN_STYLE = Automatic;
  3365. CURRENT_PROJECT_VERSION = 1;
  3366. DEVELOPMENT_TEAM = P664H7S5LL;
  3367. GENERATE_INFOPLIST_FILE = YES;
  3368. MARKETING_VERSION = 1.0;
  3369. PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentUITests;
  3370. PRODUCT_NAME = "$(TARGET_NAME)";
  3371. SWIFT_EMIT_LOC_STRINGS = NO;
  3372. TARGETED_DEVICE_FAMILY = "1,2";
  3373. TEST_TARGET_NAME = KulexiuForStudent;
  3374. };
  3375. name = Release;
  3376. };
  3377. /* End XCBuildConfiguration section */
  3378. /* Begin XCConfigurationList section */
  3379. 275E8AA027E18F8800DD3F6E /* Build configuration list for PBXProject "KulexiuForStudent" */ = {
  3380. isa = XCConfigurationList;
  3381. buildConfigurations = (
  3382. 275E8AD227E18F8C00DD3F6E /* Debug */,
  3383. 275E8AD327E18F8C00DD3F6E /* Release */,
  3384. );
  3385. defaultConfigurationIsVisible = 0;
  3386. defaultConfigurationName = Release;
  3387. };
  3388. 275E8AD427E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudent" */ = {
  3389. isa = XCConfigurationList;
  3390. buildConfigurations = (
  3391. 275E8AD527E18F8C00DD3F6E /* Debug */,
  3392. 275E8AD627E18F8C00DD3F6E /* Release */,
  3393. );
  3394. defaultConfigurationIsVisible = 0;
  3395. defaultConfigurationName = Release;
  3396. };
  3397. 275E8AD727E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentTests" */ = {
  3398. isa = XCConfigurationList;
  3399. buildConfigurations = (
  3400. 275E8AD827E18F8C00DD3F6E /* Debug */,
  3401. 275E8AD927E18F8C00DD3F6E /* Release */,
  3402. );
  3403. defaultConfigurationIsVisible = 0;
  3404. defaultConfigurationName = Release;
  3405. };
  3406. 275E8ADA27E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentUITests" */ = {
  3407. isa = XCConfigurationList;
  3408. buildConfigurations = (
  3409. 275E8ADB27E18F8C00DD3F6E /* Debug */,
  3410. 275E8ADC27E18F8C00DD3F6E /* Release */,
  3411. );
  3412. defaultConfigurationIsVisible = 0;
  3413. defaultConfigurationName = Release;
  3414. };
  3415. /* End XCConfigurationList section */
  3416. };
  3417. rootObject = 275E8A9D27E18F8800DD3F6E /* Project object */;
  3418. }