| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432 |
- // !$*UTF8*$!
- {
- archiveVersion = 1;
- classes = {
- };
- objectVersion = 55;
- objects = {
- /* Begin PBXBuildFile section */
- 2723B5A227F1578300E0B90B /* CreateFansGroupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */; };
- 2723B5A327F1578300E0B90B /* KSChatListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */; };
- 2723B5A427F1578300E0B90B /* KSChatConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */; };
- 2723B5A527F1578300E0B90B /* ChatAddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */; };
- 2723B5BA27F157B100E0B90B /* ChatAddressHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */; };
- 2723B5BB27F157B100E0B90B /* ChatAddressBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */; };
- 2723B5BC27F157B100E0B90B /* GroupCreateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A827F157A300E0B90B /* GroupCreateView.m */; };
- 2723B5BD27F157B100E0B90B /* KSChatListSearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */; };
- 2723B5BE27F157B100E0B90B /* ChatNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AA27F157A500E0B90B /* ChatNavView.m */; };
- 2723B5BF27F157B100E0B90B /* GroupCreateView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */; };
- 2723B5C027F157B100E0B90B /* ChatAddressHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */; };
- 2723B5C127F157B100E0B90B /* ContractListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5AF27F157AA00E0B90B /* ContractListCell.m */; };
- 2723B5C227F157B100E0B90B /* GroupListViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */; };
- 2723B5C327F157B100E0B90B /* ChatNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B227F157AD00E0B90B /* ChatNavView.xib */; };
- 2723B5C427F157B100E0B90B /* KSChatListSearchView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */; };
- 2723B5C527F157B100E0B90B /* ContractListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5B727F157B000E0B90B /* ContractListCell.xib */; };
- 2723B5C627F157B100E0B90B /* GroupListViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5B927F157B100E0B90B /* GroupListViewCell.m */; };
- 2723B5CD27F157BE00E0B90B /* GroupListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5C827F157B900E0B90B /* GroupListModel.m */; };
- 2723B5CE27F157BE00E0B90B /* KSRCloudMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */; };
- 2723B5CF27F157BE00E0B90B /* GroupMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */; };
- 2723B61827F157D500E0B90B /* KSSearchHistoryMessageController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */; };
- 2723B61927F157D500E0B90B /* KSSearchResultModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */; };
- 2723B61A27F157D500E0B90B /* KSSearchResultViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */; };
- 2723B61B27F157D500E0B90B /* KSSearchRCLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */; };
- 2723B61C27F157D500E0B90B /* KSRCSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */; };
- 2723B61D27F157D500E0B90B /* GroupNoticeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */; };
- 2723B61E27F157D500E0B90B /* GroupNoticeEditController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */; };
- 2723B61F27F157D500E0B90B /* GroupNoticeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */; };
- 2723B62027F157D500E0B90B /* GroupNoticeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */; };
- 2723B62127F157D500E0B90B /* NoticeEditBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */; };
- 2723B62227F157D500E0B90B /* LFPopupMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */; };
- 2723B62327F157D500E0B90B /* LFPopupMenuDefaultConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */; };
- 2723B62427F157D500E0B90B /* NoticeEditBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */; };
- 2723B62527F157D500E0B90B /* GroupNoticeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */; };
- 2723B62627F157D500E0B90B /* GroupApplyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */; };
- 2723B62727F157D500E0B90B /* GroupMemberViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */; };
- 2723B62827F157D500E0B90B /* KSSelectConversationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */; };
- 2723B62927F157D500E0B90B /* KSChatComplainController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5F927F157D500E0B90B /* KSChatComplainController.m */; };
- 2723B62A27F157D500E0B90B /* GroupSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */; };
- 2723B62B27F157D500E0B90B /* ApplyMemberModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60027F157D500E0B90B /* ApplyMemberModel.m */; };
- 2723B62C27F157D500E0B90B /* ApplyBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60427F157D500E0B90B /* ApplyBottomView.m */; };
- 2723B62D27F157D500E0B90B /* GroupApplyMemberCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */; };
- 2723B62E27F157D500E0B90B /* GroupApplyChooseAllCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */; };
- 2723B62F27F157D500E0B90B /* ChatComplainBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */; };
- 2723B63027F157D500E0B90B /* GroupApplyChooseAllCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */; };
- 2723B63127F157D500E0B90B /* GroupSettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */; };
- 2723B63227F157D500E0B90B /* GroupSettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */; };
- 2723B63327F157D500E0B90B /* ChatComplainBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */; };
- 2723B63427F157D500E0B90B /* GroupApplyMemberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */; };
- 2723B63527F157D500E0B90B /* GroupApplyChooseCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */; };
- 2723B63627F157D500E0B90B /* GroupMemberListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61327F157D500E0B90B /* GroupMemberListCell.m */; };
- 2723B63727F157D500E0B90B /* ApplyBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61427F157D500E0B90B /* ApplyBottomView.xib */; };
- 2723B63827F157D500E0B90B /* GroupApplyChooseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */; };
- 2723B63927F157D500E0B90B /* GroupMemberListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */; };
- 2723B63C27F159BA00E0B90B /* KSBaseTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */; };
- 2723B64427F15B5900E0B90B /* SCIndexViewConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */; };
- 2723B64527F15B5900E0B90B /* SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64027F15B5800E0B90B /* SCIndexView.m */; };
- 2723B64627F15B5900E0B90B /* UITableView+SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */; };
- 2723B64927F15BDC00E0B90B /* KSJXBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */; };
- 2723B66127F15CFB00E0B90B /* SettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */; };
- 2723B66227F15CFC00E0B90B /* FeedbackBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */; };
- 2723B66327F15CFC00E0B90B /* ModifyNameBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */; };
- 2723B66427F15CFC00E0B90B /* VeriCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B64E27F15CF800E0B90B /* VeriCheckView.m */; };
- 2723B66527F15CFC00E0B90B /* ModifyBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */; };
- 2723B66627F15CFC00E0B90B /* AboutUsBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */; };
- 2723B66727F15CFC00E0B90B /* ModifyBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65427F15CF900E0B90B /* ModifyBodyView.m */; };
- 2723B66827F15CFC00E0B90B /* FeedbackBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */; };
- 2723B66927F15CFC00E0B90B /* PhoneChangeBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */; };
- 2723B66A27F15CFC00E0B90B /* PhoneChangeBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */; };
- 2723B66B27F15CFC00E0B90B /* PhoneCheckBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */; };
- 2723B66C27F15CFC00E0B90B /* SettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */; };
- 2723B66D27F15CFC00E0B90B /* ModifyNameBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */; };
- 2723B66E27F15CFC00E0B90B /* PhoneCheckBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */; };
- 2723B66F27F15CFC00E0B90B /* AboutUsBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */; };
- 2723B67E27F15D3D00E0B90B /* ModifyPhoneCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */; };
- 2723B67F27F15D3D00E0B90B /* AboutUsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67227F15D3300E0B90B /* AboutUsViewController.m */; };
- 2723B68027F15D3D00E0B90B /* FeedbackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67327F15D3400E0B90B /* FeedbackViewController.m */; };
- 2723B68127F15D3D00E0B90B /* ModifyNameViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */; };
- 2723B68227F15D3D00E0B90B /* ModifyPhoneChangeController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */; };
- 2723B68327F15D3D00E0B90B /* ModifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67927F15D3B00E0B90B /* ModifyViewController.m */; };
- 2723B68427F15D3D00E0B90B /* AddressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2723B67B27F15D3C00E0B90B /* AddressViewController.m */; };
- 275E8AAA27E18F8800DD3F6E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AA927E18F8800DD3F6E /* AppDelegate.m */; };
- 275E8AB027E18F8800DD3F6E /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AAF27E18F8800DD3F6E /* ViewController.m */; };
- 275E8AB327E18F8800DD3F6E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB127E18F8800DD3F6E /* Main.storyboard */; };
- 275E8AB527E18F8B00DD3F6E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */; };
- 275E8AB827E18F8B00DD3F6E /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */; };
- 275E8ABB27E18F8B00DD3F6E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8ABA27E18F8B00DD3F6E /* main.m */; };
- 275E8AC527E18F8C00DD3F6E /* KulexiuForStudentTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */; };
- 275E8ACF27E18F8C00DD3F6E /* KulexiuForStudentUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */; };
- 275E8AD127E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */; };
- 275FA1AD27E734C600CFEA2E /* KSImageAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */; };
- 275FA1AE27E734C600CFEA2E /* KSImageAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */; };
- 275FA1DA27E7351900CFEA2E /* KSNetworkingManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */; };
- 275FA1DB27E7351900CFEA2E /* UINavigationController+KSNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */; };
- 275FA1DC27E7351900CFEA2E /* KSAQRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */; };
- 275FA1DD27E7351900CFEA2E /* KSBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B727E7351500CFEA2E /* KSBaseModel.m */; };
- 275FA1DE27E7351900CFEA2E /* KSLocalWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */; };
- 275FA1DF27E7351900CFEA2E /* RCConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */; };
- 275FA1E027E7351900CFEA2E /* RecordCheckManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */; };
- 275FA1E127E7351900CFEA2E /* KSTabBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */; };
- 275FA1E227E7351900CFEA2E /* KSWebBackButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */; };
- 275FA1E327E7351900CFEA2E /* WeakWebViewScriptMessageDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */; };
- 275FA1E427E7351900CFEA2E /* KSWebNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C227E7351600CFEA2E /* KSWebNavView.m */; };
- 275FA1E527E7351900CFEA2E /* KSAccompanyWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */; };
- 275FA1E627E7351900CFEA2E /* KSUpdateAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */; };
- 275FA1E727E7351900CFEA2E /* KSWebSocketManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */; };
- 275FA1E827E7351900CFEA2E /* CustomNavViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */; };
- 275FA1E927E7351900CFEA2E /* KSNetTypeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */; };
- 275FA1EA27E7351900CFEA2E /* KSRCIMDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */; };
- 275FA1EB27E7351900CFEA2E /* KSBaseWKWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */; };
- 275FA1EC27E7351900CFEA2E /* BaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1CF27E7351800CFEA2E /* BaseViewController.m */; };
- 275FA1ED27E7351900CFEA2E /* KSUpdateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */; };
- 275FA1EE27E7351900CFEA2E /* KSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */; };
- 275FA1EF27E7351900CFEA2E /* KSUpdateAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */; };
- 275FA22B27E7356B00CFEA2E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1F327E7356A00CFEA2E /* HomeViewController.m */; };
- 275FA22C27E7356B00CFEA2E /* CourseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */; };
- 275FA22D27E7356B00CFEA2E /* ChatViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */; };
- 275FA22E27E7356B00CFEA2E /* MineViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA20627E7356B00CFEA2E /* MineViewController.m */; };
- 275FA22F27E7356B00CFEA2E /* ShopMallViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */; };
- 275FA23027E7356B00CFEA2E /* PasswordLoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */; };
- 275FA23127E7356B00CFEA2E /* FirstSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */; };
- 275FA23227E7356B00CFEA2E /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21327E7356B00CFEA2E /* LoginViewController.m */; };
- 275FA23327E7356B00CFEA2E /* VefiCodeLoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */; };
- 275FA23427E7356B00CFEA2E /* UserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21A27E7356B00CFEA2E /* UserInfo.m */; };
- 275FA23527E7356B00CFEA2E /* UserInfoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */; };
- 275FA23627E7356B00CFEA2E /* LoginBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22027E7356B00CFEA2E /* LoginBodyView.m */; };
- 275FA23727E7356B00CFEA2E /* LoginBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */; };
- 275FA23827E7356B00CFEA2E /* FirstSettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */; };
- 275FA23927E7356B00CFEA2E /* FirstSettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */; };
- 275FA23A27E7356B00CFEA2E /* VefiBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */; };
- 275FA23B27E7356B00CFEA2E /* PasswordBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */; };
- 275FA23C27E7356B00CFEA2E /* VefiBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA22927E7356B00CFEA2E /* VefiBodyView.m */; };
- 275FA23D27E7356B00CFEA2E /* PasswordBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */; };
- 275FA24027E737EE00CFEA2E /* ChooseInsturmentViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA23F27E737EE00CFEA2E /* ChooseInsturmentViewController.m */; };
- 275FA24327E73DF600CFEA2E /* InstrumentDescView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */; };
- 275FA24527E73E0100CFEA2E /* InstrumentDescView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */; };
- 275FA24827E7428200CFEA2E /* InstrumentChooseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */; };
- 275FA24A27E7428D00CFEA2E /* InstrumentChooseView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */; };
- 2779351227E324A50010E277 /* KSNetworkAccessibleManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */; };
- 2779351327E324A50010E277 /* NSDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */; };
- 2779351427E324A50010E277 /* NSMutableDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */; };
- 2779351527E324A60010E277 /* NSArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */; };
- 2779351627E324A60010E277 /* NSMutableArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */; };
- 2779351727E324A60010E277 /* NSObject+KSSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */; };
- 2779351827E324A60010E277 /* NSObject+KSImpChangeTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */; };
- 2779351927E324A60010E277 /* NSMutableString+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */; };
- 2779351A27E324A60010E277 /* NSObject+AssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */; };
- 2779351B27E324A60010E277 /* UIControl+ButtonAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */; };
- 2779351C27E324A60010E277 /* UIDevice+zhDeviceType.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */; };
- 2779351D27E324A60010E277 /* NSString+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */; };
- 2779351E27E324A60010E277 /* UIViewController+zhStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */; };
- 2779351F27E324A60010E277 /* UITextView+ZWPlaceHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */; };
- 2779352027E324A60010E277 /* CALayer+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338027E3249D0010E277 /* CALayer+Color.m */; };
- 2779352127E324A60010E277 /* NSMutableAttributedString+CZHExtention.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */; };
- 2779352227E324A60010E277 /* UITextView+ZWLimitCounter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */; };
- 2779352327E324A60010E277 /* UILabel+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338527E3249D0010E277 /* UILabel+Extension.m */; };
- 2779352427E324A60010E277 /* KSUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338727E3249D0010E277 /* KSUtilities.m */; };
- 2779352527E324A60010E277 /* pinyin.c in Sources */ = {isa = PBXBuildFile; fileRef = 2779338A27E3249D0010E277 /* pinyin.c */; };
- 2779352627E324A60010E277 /* UIAlertController+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */; };
- 2779352727E324A60010E277 /* NSArray+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */; };
- 2779352827E324A60010E277 /* UIColor+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339227E3249D0010E277 /* UIColor+Extend.m */; };
- 2779352927E324A60010E277 /* zhPopupController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339327E3249D0010E277 /* zhPopupController.m */; };
- 2779352A27E324A60010E277 /* UIView+Dealloc.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339427E3249D0010E277 /* UIView+Dealloc.m */; };
- 2779352B27E324A60010E277 /* NSObject+Parse.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339527E3249D0010E277 /* NSObject+Parse.m */; };
- 2779352C27E324A60010E277 /* UIView+AddConstraints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339627E3249D0010E277 /* UIView+AddConstraints.m */; };
- 2779352D27E324A60010E277 /* NSString+CZHSizeExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */; };
- 2779352E27E324A60010E277 /* NSDictionary+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */; };
- 2779352F27E324A60010E277 /* UIView+Hints.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779339F27E3249D0010E277 /* UIView+Hints.m */; };
- 2779353027E324A60010E277 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A327E3249D0010E277 /* NSDate+Extension.m */; };
- 2779353127E324A60010E277 /* NSString+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A527E3249D0010E277 /* NSString+Extension.m */; };
- 2779353227E324A60010E277 /* NSDate+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A627E3249D0010E277 /* NSDate+Transform.m */; };
- 2779353327E324A60010E277 /* UIScreen+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933A927E3249D0010E277 /* UIScreen+Extend.m */; };
- 2779353427E324A60010E277 /* UIImageView+CornerRadius.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */; };
- 2779353527E324A60010E277 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */; };
- 2779353627E324A60010E277 /* CALayer+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AD27E3249E0010E277 /* CALayer+Layout.m */; };
- 2779353727E324A60010E277 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AE27E3249E0010E277 /* UIImage+Color.m */; };
- 2779353827E324A60010E277 /* UIView+KSExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933AF27E3249E0010E277 /* UIView+KSExtension.m */; };
- 2779353927E324A60010E277 /* UIView+XIBView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B727E3249E0010E277 /* UIView+XIBView.m */; };
- 2779353A27E324A60010E277 /* UILabel+QWTopLeftLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */; };
- 2779353B27E324A60010E277 /* UrlDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933B927E3249E0010E277 /* UrlDecode.m */; };
- 2779353C27E324A60010E277 /* UIButton+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BA27E3249E0010E277 /* UIButton+Property.m */; };
- 2779353D27E324A60010E277 /* UIScrollView+KSTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */; };
- 2779353E27E324A60010E277 /* UIDevice+TFDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */; };
- 2779353F27E324A60010E277 /* UIView+KSLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BE27E3249E0010E277 /* UIView+KSLayer.m */; };
- 2779354027E324A60010E277 /* UIImage+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933BF27E3249E0010E277 /* UIImage+Property.m */; };
- 2779354127E324A60010E277 /* UIView+ShowProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C127E3249E0010E277 /* UIView+ShowProgress.m */; };
- 2779354227E324A60010E277 /* UIImage+ResizeImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */; };
- 2779354327E324A60010E277 /* UIButton+HasChooseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */; };
- 2779354427E324A60010E277 /* NSObject+AutoProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */; };
- 2779354527E324A60010E277 /* UIImage+UIImageScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */; };
- 2779354627E324A60010E277 /* UIView+Animation.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933C827E3249E0010E277 /* UIView+Animation.m */; };
- 2779354727E324A60010E277 /* UIButton+EnlargeEdge.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */; };
- 2779354827E324A60010E277 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */; };
- 2779354927E324A60010E277 /* MBProgressHUD+KSShow.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */; };
- 2779354A27E324A60010E277 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DA27E3249E0010E277 /* UIImage+Resize.m */; };
- 2779354B27E324A60010E277 /* KSVideoEditor.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DD27E3249E0010E277 /* KSVideoEditor.m */; };
- 2779354C27E324A70010E277 /* KSGifRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */; };
- 2779354D27E324A70010E277 /* KSGifRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */; };
- 2779354E27E324A70010E277 /* KSAudioSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E427E3249E0010E277 /* KSAudioSessionManager.m */; };
- 2779354F27E324A70010E277 /* VoLRUManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933E927E3249F0010E277 /* VoLRUManager.m */; };
- 2779355027E324A70010E277 /* VoDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EB27E3249F0010E277 /* VoDiskCache.m */; };
- 2779355127E324A70010E277 /* VoCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EC27E3249F0010E277 /* VoCacheManager.m */; };
- 2779355227E324A70010E277 /* VoMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933EE27E3249F0010E277 /* VoMemoryCache.m */; };
- 2779355327E324A70010E277 /* VoNetworking+RequestManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */; };
- 2779355427E324A70010E277 /* VoNetWorking.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F227E3249F0010E277 /* VoNetWorking.m */; };
- 2779355527E324A70010E277 /* DiskFreeSpaceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */; };
- 2779355627E324A70010E277 /* KSPremissionAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933F827E3249F0010E277 /* KSPremissionAlert.m */; };
- 2779355727E324A70010E277 /* KSPremissionAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 277933F927E3249F0010E277 /* KSPremissionAlert.xib */; };
- 2779355827E324A70010E277 /* UIImage+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933FC27E3249F0010E277 /* UIImage+Addtions.m */; };
- 2779355927E324A70010E277 /* GRCreateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277933FD27E3249F0010E277 /* GRCreateManager.m */; };
- 2779355A27E324A70010E277 /* QCCountdownButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340127E3249F0010E277 /* QCCountdownButton.m */; };
- 2779355B27E324A70010E277 /* KSStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340427E3249F0010E277 /* KSStatusView.m */; };
- 2779355C27E324A70010E277 /* KSChoosePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340727E3249F0010E277 /* KSChoosePicker.m */; };
- 2779355D27E324A70010E277 /* KSHoldButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340B27E3249F0010E277 /* KSHoldButton.m */; };
- 2779355E27E324A70010E277 /* KSAudioRecordFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */; };
- 2779355F27E324A70010E277 /* UIView+ValueAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */; };
- 2779356027E324A70010E277 /* KSRecordStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779340F27E3249F0010E277 /* KSRecordStatusView.m */; };
- 2779356127E324A70010E277 /* KSAudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341027E3249F0010E277 /* KSAudioRecordManager.m */; };
- 2779356227E324A70010E277 /* KSRecordPowerAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */; };
- 2779356327E324A70010E277 /* HomeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341527E3249F0010E277 /* HomeButton.m */; };
- 2779356427E324A70010E277 /* KSFullDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341727E3249F0010E277 /* KSFullDatePicker.m */; };
- 2779356527E324A70010E277 /* KSMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341927E3249F0010E277 /* KSMediaManager.m */; };
- 2779356627E324A70010E277 /* ShopMessBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341A27E3249F0010E277 /* ShopMessBtn.m */; };
- 2779356727E324A70010E277 /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341B27E324A00010E277 /* UIColor+Hex.m */; };
- 2779356827E324A70010E277 /* shopview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341C27E324A00010E277 /* shopview.m */; };
- 2779356927E324A70010E277 /* YKMultiLevelTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */; };
- 2779356A27E324A70010E277 /* YKNodeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779341F27E324A00010E277 /* YKNodeModel.m */; };
- 2779356B27E324A70010E277 /* pickBut.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342227E324A00010E277 /* pickBut.m */; };
- 2779356C27E324A70010E277 /* MBProgressHUD+NJ.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */; };
- 2779356D27E324A70010E277 /* StoreShopCaterview.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342827E324A00010E277 /* StoreShopCaterview.m */; };
- 2779356E27E324A70010E277 /* UITextField_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342A27E324A00010E277 /* UITextField_Toolbar.m */; };
- 2779356F27E324A70010E277 /* SkipTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342B27E324A00010E277 /* SkipTextField.m */; };
- 2779357027E324A70010E277 /* UITextView_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779342E27E324A00010E277 /* UITextView_Toolbar.m */; };
- 2779357127E324A70010E277 /* SkipTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343127E324A00010E277 /* SkipTextView.m */; };
- 2779357227E324A70010E277 /* SearchView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343427E324A00010E277 /* SearchView.m */; };
- 2779357327E324A70010E277 /* prodectButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343A27E324A00010E277 /* prodectButton.m */; };
- 2779357427E324A70010E277 /* StoreButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343B27E324A00010E277 /* StoreButton.m */; };
- 2779357527E324A70010E277 /* LifeButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343C27E324A00010E277 /* LifeButton.m */; };
- 2779357627E324A70010E277 /* ShoppCatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343D27E324A00010E277 /* ShoppCatView.m */; };
- 2779357727E324A70010E277 /* GRScanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779343E27E324A00010E277 /* GRScanManager.m */; };
- 2779357827E324A70010E277 /* NSString+phone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344427E324A00010E277 /* NSString+phone.m */; };
- 2779357927E324A70010E277 /* KSImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344627E324A00010E277 /* KSImageButton.m */; };
- 2779357A27E324A70010E277 /* PIckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344927E324A00010E277 /* PIckView.m */; };
- 2779357B27E324A70010E277 /* ShopButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344B27E324A00010E277 /* ShopButton.m */; };
- 2779357C27E324A70010E277 /* NSString+MD5.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344C27E324A00010E277 /* NSString+MD5.m */; };
- 2779357D27E324A80010E277 /* KSMessageInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779344D27E324A00010E277 /* KSMessageInputView.m */; };
- 2779357E27E324A80010E277 /* KSInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345027E324A00010E277 /* KSInputView.m */; };
- 2779357F27E324A80010E277 /* KeyChainTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345127E324A00010E277 /* KeyChainTools.m */; };
- 2779358027E324A80010E277 /* sortButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345227E324A00010E277 /* sortButton.m */; };
- 2779358127E324A80010E277 /* StateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345327E324A00010E277 /* StateView.m */; };
- 2779358227E324A80010E277 /* NSDate+KSBaseDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */; };
- 2779358327E324A80010E277 /* LLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345727E324A10010E277 /* LLPhotoBrowser.m */; };
- 2779358427E324A80010E277 /* LLImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345A27E324A10010E277 /* LLImageCache.m */; };
- 2779358527E324A80010E277 /* LLFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345B27E324A10010E277 /* LLFileManager.m */; };
- 2779358627E324A80010E277 /* LLPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345E27E324A10010E277 /* LLPhoto.m */; };
- 2779358727E324A80010E277 /* LLCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779345F27E324A10010E277 /* LLCollectionViewCell.m */; };
- 2779358827E324A80010E277 /* NSObject+Archiving.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346627E324A10010E277 /* NSObject+Archiving.m */; };
- 2779358927E324A80010E277 /* CoinModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346727E324A10010E277 /* CoinModel.m */; };
- 2779358A27E324A80010E277 /* ArchiveTools.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779346827E324A10010E277 /* ArchiveTools.m */; };
- 2779358B27E324A80010E277 /* KLTNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347127E324A10010E277 /* KLTNavigationController.m */; };
- 2779358C27E324A80010E277 /* AnimationContoller.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347327E324A10010E277 /* AnimationContoller.m */; };
- 2779358D27E324A80010E277 /* DZNSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347527E324A10010E277 /* DZNSegmentedControl.m */; };
- 2779358E27E324A80010E277 /* WMPlayerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347927E324A10010E277 /* WMPlayerModel.m */; };
- 2779358F27E324A80010E277 /* WMPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2779347B27E324A10010E277 /* WMPlayer.bundle */; };
- 2779359027E324A80010E277 /* WMLightView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347E27E324A10010E277 /* WMLightView.m */; };
- 2779359127E324A80010E277 /* FastForwardView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779347F27E324A10010E277 /* FastForwardView.m */; };
- 2779359227E324A80010E277 /* WMPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348027E324A10010E277 /* WMPlayer.m */; };
- 2779359327E324A80010E277 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348427E324A10010E277 /* TZImageCropManager.m */; };
- 2779359427E324A80010E277 /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348627E324A10010E277 /* TZAssetCell.m */; };
- 2779359527E324A80010E277 /* TZVideoEditedPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */; };
- 2779359627E324A80010E277 /* TZVideoCropController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348827E324A10010E277 /* TZVideoCropController.m */; };
- 2779359727E324A80010E277 /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348927E324A10010E277 /* TZVideoPlayerController.m */; };
- 2779359827E324A80010E277 /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348A27E324A10010E277 /* TZAssetModel.m */; };
- 2779359927E324A80010E277 /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */; };
- 2779359A27E324A80010E277 /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */; };
- 2779359B27E324A80010E277 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2779349027E324A10010E277 /* TZImagePickerController.bundle */; };
- 2779359C27E324A80010E277 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349127E324A10010E277 /* TZProgressView.m */; };
- 2779359D27E324A80010E277 /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349627E324A10010E277 /* TZImageManager.m */; };
- 2779359E27E324A80010E277 /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349827E324A20010E277 /* TZPhotoPickerController.m */; };
- 2779359F27E324A80010E277 /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */; };
- 277935A027E324A80010E277 /* UIView+TZLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779349B27E324A20010E277 /* UIView+TZLayout.m */; };
- 277935A127E324A80010E277 /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A027E324A20010E277 /* TZImagePickerController.m */; };
- 277935A227E324A80010E277 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A127E324A20010E277 /* TZLocationManager.m */; };
- 277935A327E324A80010E277 /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */; };
- 277935A427E324A80010E277 /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A327E324A20010E277 /* TZImageRequestOperation.m */; };
- 277935A527E324A80010E277 /* MSSBrowseLoadingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */; };
- 277935A627E324A80010E277 /* MSSBrowseLocalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */; };
- 277935A727E324A80010E277 /* MSSBrowseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */; };
- 277935A827E324A80010E277 /* MSSBrowseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B127E324A20010E277 /* MSSBrowseModel.m */; };
- 277935A927E324A80010E277 /* MSSBrowseActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */; };
- 277935AA27E324A80010E277 /* MSSBrowseNetworkViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */; };
- 277935AB27E324A80010E277 /* UIImage+MSSScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B527E324A20010E277 /* UIImage+MSSScale.m */; };
- 277935AC27E324A80010E277 /* MSSBrowseBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */; };
- 277935AD27E324A80010E277 /* MSSBrowseZoomScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */; };
- 277935AE27E324A80010E277 /* MSSBrowseRemindView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934B927E324A20010E277 /* MSSBrowseRemindView.m */; };
- 277935AF27E324A90010E277 /* mss_browseLoading@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */; };
- 277935B027E324A90010E277 /* MSSBrowseActionSheetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */; };
- 277935B127E324A90010E277 /* mss_browseLoading@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */; };
- 277935B227E324A90010E277 /* UIView+MSSLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C027E324A20010E277 /* UIView+MSSLayout.m */; };
- 277935B327E324A90010E277 /* FSCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C227E324A20010E277 /* FSCalendarCollectionView.m */; };
- 277935B427E324A90010E277 /* FSCalendarDelegationProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */; };
- 277935B527E324A90010E277 /* FSCalendarDelegationFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */; };
- 277935B627E324A90010E277 /* FSCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934CE27E324A30010E277 /* FSCalendarCell.m */; };
- 277935B727E324A90010E277 /* FSCalendarStickyHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */; };
- 277935B827E324A90010E277 /* FSCalendar.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D027E324A30010E277 /* FSCalendar.m */; };
- 277935B927E324A90010E277 /* FSCalendarCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */; };
- 277935BA27E324A90010E277 /* FSCalendarWeekdayView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */; };
- 277935BB27E324A90010E277 /* FSCalendarSeparatorDecorationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */; };
- 277935BC27E324A90010E277 /* FSCalendarExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D727E324A30010E277 /* FSCalendarExtensions.m */; };
- 277935BD27E324A90010E277 /* FSCalendarConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934D927E324A30010E277 /* FSCalendarConstants.m */; };
- 277935BE27E324A90010E277 /* FSCalendarCalculator.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DA27E324A30010E277 /* FSCalendarCalculator.m */; };
- 277935BF27E324A90010E277 /* FSCalendarHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */; };
- 277935C027E324A90010E277 /* FSCalendarTransitionCoordinator.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */; };
- 277935C127E324A90010E277 /* FSCalendarAppearance.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E027E324A30010E277 /* FSCalendarAppearance.m */; };
- 277935C227E324A90010E277 /* QWdynamicModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E227E324A30010E277 /* QWdynamicModel.m */; };
- 277935C327E324A90010E277 /* SDQWMaskCustomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */; };
- 277935C427E324A90010E277 /* SDCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934E927E324A30010E277 /* SDCycleScrollView.m */; };
- 277935C527E324A90010E277 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934EA27E324A30010E277 /* UIView+SDExtension.m */; };
- 277935C627E324A90010E277 /* SDQWMaskCustomModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */; };
- 277935C727E324A90010E277 /* SDCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934ED27E324A30010E277 /* SDCollectionViewCell.m */; };
- 277935C827E324A90010E277 /* TADotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F027E324A30010E277 /* TADotView.m */; };
- 277935C927E324A90010E277 /* TAPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F127E324A30010E277 /* TAPageControl.m */; };
- 277935CA27E324A90010E277 /* TAAnimatedDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F227E324A30010E277 /* TAAnimatedDotView.m */; };
- 277935CB27E324A90010E277 /* TAAbstractDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F327E324A30010E277 /* TAAbstractDotView.m */; };
- 277935CC27E324A90010E277 /* SDQWMaskCustomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F727E324A30010E277 /* SDQWMaskCustomView.m */; };
- 277935CD27E324A90010E277 /* ALCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934F927E324A30010E277 /* ALCalendarCell.m */; };
- 277935CE27E324A90010E277 /* ALCalendarConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FA27E324A30010E277 /* ALCalendarConfig.m */; };
- 277935CF27E324A90010E277 /* ALCalendarHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FB27E324A30010E277 /* ALCalendarHeader.m */; };
- 277935D027E324A90010E277 /* ALCalendarDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FC27E324A30010E277 /* ALCalendarDate.m */; };
- 277935D127E324A90010E277 /* ALCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */; };
- 277935D227E324A90010E277 /* ALCalendarHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 277934FE27E324A30010E277 /* ALCalendarHelper.m */; };
- 277935D327E324A90010E277 /* ALCalendarPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350827E324A40010E277 /* ALCalendarPicker.m */; };
- 277935D427E324A90010E277 /* UIView+ALFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350927E324A40010E277 /* UIView+ALFrame.m */; };
- 277935D527E324A90010E277 /* ALCalendarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2779350A27E324A40010E277 /* ALCalendarManager.m */; };
- 27F9032927E87C2E00C08A19 /* NetworkingCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */; };
- 27F9032A27E87C2E00C08A19 /* NetworkBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */; };
- 27F9032B27E87C2E00C08A19 /* NetworkBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */; };
- 27F9032C27E87C2E00C08A19 /* KSNetworkAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */; };
- 27F9032D27E87C2E00C08A19 /* KSNetworkAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */; };
- 27F9032E27E87C2E00C08A19 /* DeviceCheckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */; };
- 27F9032F27E87C2E00C08A19 /* AudioPlayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */; };
- 27F9033027E87C2E00C08A19 /* AudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */; };
- 27F9033127E87C2E00C08A19 /* DeviceCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */; };
- 27F9033227E87C2E00C08A19 /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9032627E87C2E00C08A19 /* SettingViewController.m */; };
- 27F9033627E87C8B00C08A19 /* MineNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9033427E87C8A00C08A19 /* MineNavView.m */; };
- 27F9033727E87C8B00C08A19 /* MineNavView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9033527E87C8B00C08A19 /* MineNavView.xib */; };
- 27F9033A27E87FD500C08A19 /* MineBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F9033927E87FD500C08A19 /* MineBodyView.m */; };
- 27F9033C27E87FE100C08A19 /* MineBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27F9033B27E87FE100C08A19 /* MineBodyView.xib */; };
- 82EE25CEB2BB5A0E1BB8D54B /* Pods_KulexiuForStudent.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */; };
- 93F0FA52C8A72F83D07C15A6 /* Pods_KulexiuForStudentTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */; };
- C56C141D9D9D478077F14C1E /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */; };
- /* End PBXBuildFile section */
- /* Begin PBXContainerItemProxy section */
- 275E8AC127E18F8C00DD3F6E /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 275E8A9D27E18F8800DD3F6E /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 275E8AA427E18F8800DD3F6E;
- remoteInfo = KulexiuForStudent;
- };
- 275E8ACB27E18F8C00DD3F6E /* PBXContainerItemProxy */ = {
- isa = PBXContainerItemProxy;
- containerPortal = 275E8A9D27E18F8800DD3F6E /* Project object */;
- proxyType = 1;
- remoteGlobalIDString = 275E8AA427E18F8800DD3F6E;
- remoteInfo = KulexiuForStudent;
- };
- /* End PBXContainerItemProxy section */
- /* Begin PBXFileReference section */
- 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>"; };
- 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudent.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 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>"; };
- 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>"; };
- 2723B59A27F1577E00E0B90B /* CreateFansGroupViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CreateFansGroupViewController.h; sourceTree = "<group>"; };
- 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CreateFansGroupViewController.m; sourceTree = "<group>"; };
- 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatListViewController.m; sourceTree = "<group>"; };
- 2723B59D27F1577F00E0B90B /* ChatAddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressViewController.h; sourceTree = "<group>"; };
- 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatConversationViewController.m; sourceTree = "<group>"; };
- 2723B59F27F1578100E0B90B /* KSChatListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatListViewController.h; sourceTree = "<group>"; };
- 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressViewController.m; sourceTree = "<group>"; };
- 2723B5A127F1578200E0B90B /* KSChatConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatConversationViewController.h; sourceTree = "<group>"; };
- 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatAddressHeaderView.xib; sourceTree = "<group>"; };
- 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressBodyView.m; sourceTree = "<group>"; };
- 2723B5A827F157A300E0B90B /* GroupCreateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupCreateView.m; sourceTree = "<group>"; };
- 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatListSearchView.m; sourceTree = "<group>"; };
- 2723B5AA27F157A500E0B90B /* ChatNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatNavView.m; sourceTree = "<group>"; };
- 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupCreateView.xib; sourceTree = "<group>"; };
- 2723B5AC27F157A600E0B90B /* KSChatListSearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatListSearchView.h; sourceTree = "<group>"; };
- 2723B5AD27F157A700E0B90B /* ContractListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ContractListCell.h; sourceTree = "<group>"; };
- 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatAddressHeaderView.m; sourceTree = "<group>"; };
- 2723B5AF27F157AA00E0B90B /* ContractListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ContractListCell.m; sourceTree = "<group>"; };
- 2723B5B027F157AB00E0B90B /* ChatAddressBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressBodyView.h; sourceTree = "<group>"; };
- 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupListViewCell.xib; sourceTree = "<group>"; };
- 2723B5B227F157AD00E0B90B /* ChatNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatNavView.xib; sourceTree = "<group>"; };
- 2723B5B327F157AE00E0B90B /* GroupListViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListViewCell.h; sourceTree = "<group>"; };
- 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSChatListSearchView.xib; sourceTree = "<group>"; };
- 2723B5B527F157AF00E0B90B /* ChatNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatNavView.h; sourceTree = "<group>"; };
- 2723B5B627F157AF00E0B90B /* ChatAddressHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatAddressHeaderView.h; sourceTree = "<group>"; };
- 2723B5B727F157B000E0B90B /* ContractListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ContractListCell.xib; sourceTree = "<group>"; };
- 2723B5B827F157B000E0B90B /* GroupCreateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupCreateView.h; sourceTree = "<group>"; };
- 2723B5B927F157B100E0B90B /* GroupListViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListViewCell.m; sourceTree = "<group>"; };
- 2723B5C727F157B800E0B90B /* KSRCloudMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCloudMediaManager.h; sourceTree = "<group>"; };
- 2723B5C827F157B900E0B90B /* GroupListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupListModel.m; sourceTree = "<group>"; };
- 2723B5C927F157BA00E0B90B /* GroupListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupListModel.h; sourceTree = "<group>"; };
- 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCloudMediaManager.m; sourceTree = "<group>"; };
- 2723B5CB27F157BD00E0B90B /* GroupMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberModel.h; sourceTree = "<group>"; };
- 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberModel.m; sourceTree = "<group>"; };
- 2723B5D227F157D300E0B90B /* KSSearchHistoryMessageController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchHistoryMessageController.h; sourceTree = "<group>"; };
- 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchHistoryMessageController.m; sourceTree = "<group>"; };
- 2723B5D527F157D300E0B90B /* KSSearchResultModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchResultModel.h; sourceTree = "<group>"; };
- 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchResultModel.m; sourceTree = "<group>"; };
- 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchResultViewCell.m; sourceTree = "<group>"; };
- 2723B5D927F157D300E0B90B /* KSRCSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCSearchBar.h; sourceTree = "<group>"; };
- 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSearchRCLabel.m; sourceTree = "<group>"; };
- 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCSearchBar.m; sourceTree = "<group>"; };
- 2723B5DC27F157D300E0B90B /* KSSearchResultViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchResultViewCell.h; sourceTree = "<group>"; };
- 2723B5DD27F157D300E0B90B /* KSSearchRCLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSearchRCLabel.h; sourceTree = "<group>"; };
- 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeViewController.m; sourceTree = "<group>"; };
- 2723B5E127F157D400E0B90B /* GroupNoticeEditController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeEditController.h; sourceTree = "<group>"; };
- 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeEditController.m; sourceTree = "<group>"; };
- 2723B5E327F157D400E0B90B /* GroupNoticeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeViewController.h; sourceTree = "<group>"; };
- 2723B5E527F157D400E0B90B /* GroupNoticeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeModel.h; sourceTree = "<group>"; };
- 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeModel.m; sourceTree = "<group>"; };
- 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupNoticeCell.m; sourceTree = "<group>"; };
- 2723B5E927F157D400E0B90B /* NoticeEditBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NoticeEditBodyView.h; sourceTree = "<group>"; };
- 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NoticeEditBodyView.xib; sourceTree = "<group>"; };
- 2723B5EC27F157D400E0B90B /* LFPopupMenuDefaultConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFPopupMenuDefaultConfig.h; sourceTree = "<group>"; };
- 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFPopupMenu.m; sourceTree = "<group>"; };
- 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFPopupMenuDefaultConfig.m; sourceTree = "<group>"; };
- 2723B5EF27F157D400E0B90B /* LFPopupMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFPopupMenu.h; sourceTree = "<group>"; };
- 2723B5F027F157D400E0B90B /* GroupNoticeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupNoticeCell.h; sourceTree = "<group>"; };
- 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NoticeEditBodyView.m; sourceTree = "<group>"; };
- 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupNoticeCell.xib; sourceTree = "<group>"; };
- 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyViewController.m; sourceTree = "<group>"; };
- 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberViewController.m; sourceTree = "<group>"; };
- 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSSelectConversationViewController.m; sourceTree = "<group>"; };
- 2723B5F827F157D500E0B90B /* GroupSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSettingViewController.h; sourceTree = "<group>"; };
- 2723B5F927F157D500E0B90B /* KSChatComplainController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChatComplainController.m; sourceTree = "<group>"; };
- 2723B5FA27F157D500E0B90B /* GroupMemberViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberViewController.h; sourceTree = "<group>"; };
- 2723B5FB27F157D500E0B90B /* GroupApplyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyViewController.h; sourceTree = "<group>"; };
- 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSettingViewController.m; sourceTree = "<group>"; };
- 2723B5FD27F157D500E0B90B /* KSSelectConversationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSelectConversationViewController.h; sourceTree = "<group>"; };
- 2723B5FE27F157D500E0B90B /* KSChatComplainController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChatComplainController.h; sourceTree = "<group>"; };
- 2723B60027F157D500E0B90B /* ApplyMemberModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplyMemberModel.m; sourceTree = "<group>"; };
- 2723B60127F157D500E0B90B /* ApplyMemberModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyMemberModel.h; sourceTree = "<group>"; };
- 2723B60327F157D500E0B90B /* ChatComplainBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatComplainBodyView.h; sourceTree = "<group>"; };
- 2723B60427F157D500E0B90B /* ApplyBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplyBottomView.m; sourceTree = "<group>"; };
- 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyMemberCell.xib; sourceTree = "<group>"; };
- 2723B60627F157D500E0B90B /* GroupMemberListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberListCell.h; sourceTree = "<group>"; };
- 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyChooseAllCell.xib; sourceTree = "<group>"; };
- 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ChatComplainBodyView.xib; sourceTree = "<group>"; };
- 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyChooseAllCell.m; sourceTree = "<group>"; };
- 2723B60A27F157D500E0B90B /* GroupApplyMemberCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyMemberCell.h; sourceTree = "<group>"; };
- 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupSettingBodyView.m; sourceTree = "<group>"; };
- 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupSettingBodyView.xib; sourceTree = "<group>"; };
- 2723B60D27F157D500E0B90B /* GroupApplyChooseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyChooseCell.h; sourceTree = "<group>"; };
- 2723B60E27F157D500E0B90B /* ApplyBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplyBottomView.h; sourceTree = "<group>"; };
- 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatComplainBodyView.m; sourceTree = "<group>"; };
- 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyMemberCell.m; sourceTree = "<group>"; };
- 2723B61127F157D500E0B90B /* GroupApplyChooseAllCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupApplyChooseAllCell.h; sourceTree = "<group>"; };
- 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupApplyChooseCell.xib; sourceTree = "<group>"; };
- 2723B61327F157D500E0B90B /* GroupMemberListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberListCell.m; sourceTree = "<group>"; };
- 2723B61427F157D500E0B90B /* ApplyBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ApplyBottomView.xib; sourceTree = "<group>"; };
- 2723B61527F157D500E0B90B /* GroupSettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupSettingBodyView.h; sourceTree = "<group>"; };
- 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupApplyChooseCell.m; sourceTree = "<group>"; };
- 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = GroupMemberListCell.xib; sourceTree = "<group>"; };
- 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseTableViewController.m; sourceTree = "<group>"; };
- 2723B63B27F159BA00E0B90B /* KSBaseTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseTableViewController.h; sourceTree = "<group>"; };
- 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexViewConfiguration.m; sourceTree = "<group>"; };
- 2723B63F27F15B5800E0B90B /* UITableView+SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SCIndexView.h"; sourceTree = "<group>"; };
- 2723B64027F15B5800E0B90B /* SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexView.m; sourceTree = "<group>"; };
- 2723B64127F15B5800E0B90B /* SCIndexViewConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexViewConfiguration.h; sourceTree = "<group>"; };
- 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SCIndexView.m"; sourceTree = "<group>"; };
- 2723B64327F15B5800E0B90B /* SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexView.h; sourceTree = "<group>"; };
- 2723B64727F15BDB00E0B90B /* KSJXBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSJXBodyView.h; sourceTree = "<group>"; };
- 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSJXBodyView.m; sourceTree = "<group>"; };
- 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = SettingBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/SettingBodyView.xib; sourceTree = SOURCE_ROOT; };
- 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; };
- 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = FeedbackBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/FeedbackBodyView.xib; sourceTree = SOURCE_ROOT; };
- 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = ModifyNameBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyNameBodyView.xib; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 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; };
- 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = ModifyBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/ModifyBodyView.xib; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = PhoneChangeBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneChangeBodyView.xib; sourceTree = SOURCE_ROOT; };
- 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; };
- 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; };
- 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; };
- 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; };
- 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; };
- 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = PhoneCheckBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/PhoneCheckBodyView.xib; sourceTree = SOURCE_ROOT; };
- 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; };
- 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = AboutUsBodyView.xib; path = KulexiuForStudent/Module/Mine/Setting/View/AboutUsBodyView.xib; sourceTree = SOURCE_ROOT; };
- 2723B67027F15D3200E0B90B /* ModifyPhoneCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneCheckController.h; sourceTree = "<group>"; };
- 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneCheckController.m; sourceTree = "<group>"; };
- 2723B67227F15D3300E0B90B /* AboutUsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutUsViewController.m; sourceTree = "<group>"; };
- 2723B67327F15D3400E0B90B /* FeedbackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
- 2723B67427F15D3600E0B90B /* AboutUsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutUsViewController.h; sourceTree = "<group>"; };
- 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyNameViewController.m; sourceTree = "<group>"; };
- 2723B67627F15D3800E0B90B /* FeedbackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
- 2723B67727F15D3900E0B90B /* AddressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressViewController.h; sourceTree = "<group>"; };
- 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneChangeController.m; sourceTree = "<group>"; };
- 2723B67927F15D3B00E0B90B /* ModifyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyViewController.m; sourceTree = "<group>"; };
- 2723B67A27F15D3B00E0B90B /* ModifyNameViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyNameViewController.h; sourceTree = "<group>"; };
- 2723B67B27F15D3C00E0B90B /* AddressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressViewController.m; sourceTree = "<group>"; };
- 2723B67C27F15D3D00E0B90B /* ModifyPhoneChangeController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneChangeController.h; sourceTree = "<group>"; };
- 2723B67D27F15D3D00E0B90B /* ModifyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyViewController.h; sourceTree = "<group>"; };
- 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = KulexiuForStudent.app; sourceTree = BUILT_PRODUCTS_DIR; };
- 275E8AA827E18F8800DD3F6E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
- 275E8AA927E18F8800DD3F6E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
- 275E8AAE27E18F8800DD3F6E /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
- 275E8AAF27E18F8800DD3F6E /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
- 275E8AB227E18F8800DD3F6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
- 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
- 275E8AB727E18F8B00DD3F6E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
- 275E8AB927E18F8B00DD3F6E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
- 275E8ABA27E18F8B00DD3F6E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
- 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KulexiuForStudentTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentTests.m; sourceTree = "<group>"; };
- 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = KulexiuForStudentUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
- 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentUITests.m; sourceTree = "<group>"; };
- 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = KulexiuForStudentUITestsLaunchTests.m; sourceTree = "<group>"; };
- 275FA1AA27E734C500CFEA2E /* KSImageAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageAlert.h; sourceTree = "<group>"; };
- 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSImageAlert.xib; sourceTree = "<group>"; };
- 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageAlert.m; sourceTree = "<group>"; };
- 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkingManager.m; sourceTree = "<group>"; };
- 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+KSNavigationBar.m"; sourceTree = "<group>"; };
- 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAQRecordManager.m; sourceTree = "<group>"; };
- 275FA1B227E7351400CFEA2E /* KSUpdateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateManager.h; sourceTree = "<group>"; };
- 275FA1B327E7351400CFEA2E /* KSBaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseModel.h; sourceTree = "<group>"; };
- 275FA1B427E7351400CFEA2E /* UINavigationController+KSNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+KSNavigationBar.h"; sourceTree = "<group>"; };
- 275FA1B527E7351400CFEA2E /* KSRCIMDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCIMDataSource.h; sourceTree = "<group>"; };
- 275FA1B627E7351500CFEA2E /* KSAQRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAQRecordManager.h; sourceTree = "<group>"; };
- 275FA1B727E7351500CFEA2E /* KSBaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseModel.m; sourceTree = "<group>"; };
- 275FA1B827E7351500CFEA2E /* KSWebNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebNavView.h; sourceTree = "<group>"; };
- 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLocalWebViewController.m; sourceTree = "<group>"; };
- 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCConnectionManager.m; sourceTree = "<group>"; };
- 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordCheckManager.m; sourceTree = "<group>"; };
- 275FA1BC27E7351500CFEA2E /* CustomNavViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNavViewController.h; sourceTree = "<group>"; };
- 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTabBarViewController.m; sourceTree = "<group>"; };
- 275FA1BE27E7351600CFEA2E /* BaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseViewController.h; sourceTree = "<group>"; };
- 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebBackButton.m; sourceTree = "<group>"; };
- 275FA1C027E7351600CFEA2E /* KSLocalWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLocalWebViewController.h; sourceTree = "<group>"; };
- 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WeakWebViewScriptMessageDelegate.m; sourceTree = "<group>"; };
- 275FA1C227E7351600CFEA2E /* KSWebNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebNavView.m; sourceTree = "<group>"; };
- 275FA1C327E7351600CFEA2E /* KSAccompanyWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAccompanyWebViewController.h; sourceTree = "<group>"; };
- 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAccompanyWebViewController.m; sourceTree = "<group>"; };
- 275FA1C527E7351600CFEA2E /* KSBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseViewController.h; sourceTree = "<group>"; };
- 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateAlert.m; sourceTree = "<group>"; };
- 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSWebSocketManager.m; sourceTree = "<group>"; };
- 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNavViewController.m; sourceTree = "<group>"; };
- 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetTypeManager.m; sourceTree = "<group>"; };
- 275FA1CA27E7351700CFEA2E /* KSNetTypeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetTypeManager.h; sourceTree = "<group>"; };
- 275FA1CB27E7351700CFEA2E /* KSUpdateAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateAlert.h; sourceTree = "<group>"; };
- 275FA1CC27E7351700CFEA2E /* WeakWebViewScriptMessageDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WeakWebViewScriptMessageDelegate.h; sourceTree = "<group>"; };
- 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCIMDataSource.m; sourceTree = "<group>"; };
- 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseWKWebViewController.m; sourceTree = "<group>"; };
- 275FA1CF27E7351800CFEA2E /* BaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseViewController.m; sourceTree = "<group>"; };
- 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateManager.m; sourceTree = "<group>"; };
- 275FA1D127E7351800CFEA2E /* KSWebBackButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebBackButton.h; sourceTree = "<group>"; };
- 275FA1D227E7351800CFEA2E /* KSWebSocketManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSWebSocketManager.h; sourceTree = "<group>"; };
- 275FA1D327E7351800CFEA2E /* RCConnectionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCConnectionManager.h; sourceTree = "<group>"; };
- 275FA1D427E7351800CFEA2E /* KSNetworkingManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkingManager.h; sourceTree = "<group>"; };
- 275FA1D527E7351800CFEA2E /* KSBaseWKWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseWKWebViewController.h; sourceTree = "<group>"; };
- 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseViewController.m; sourceTree = "<group>"; };
- 275FA1D727E7351900CFEA2E /* KSTabBarViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTabBarViewController.h; sourceTree = "<group>"; };
- 275FA1D827E7351900CFEA2E /* RecordCheckManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordCheckManager.h; sourceTree = "<group>"; };
- 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSUpdateAlert.xib; sourceTree = "<group>"; };
- 275FA1F327E7356A00CFEA2E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
- 275FA1F427E7356A00CFEA2E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
- 275FA1F927E7356A00CFEA2E /* CourseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CourseViewController.h; sourceTree = "<group>"; };
- 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CourseViewController.m; sourceTree = "<group>"; };
- 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChatViewController.m; sourceTree = "<group>"; };
- 275FA20027E7356B00CFEA2E /* ChatViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChatViewController.h; sourceTree = "<group>"; };
- 275FA20527E7356B00CFEA2E /* MineViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineViewController.h; sourceTree = "<group>"; };
- 275FA20627E7356B00CFEA2E /* MineViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineViewController.m; sourceTree = "<group>"; };
- 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopMallViewController.m; sourceTree = "<group>"; };
- 275FA20C27E7356B00CFEA2E /* ShopMallViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopMallViewController.h; sourceTree = "<group>"; };
- 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordLoginController.m; sourceTree = "<group>"; };
- 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingViewController.m; sourceTree = "<group>"; };
- 275FA21327E7356B00CFEA2E /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
- 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiCodeLoginController.m; sourceTree = "<group>"; };
- 275FA21527E7356B00CFEA2E /* PasswordLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordLoginController.h; sourceTree = "<group>"; };
- 275FA21627E7356B00CFEA2E /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
- 275FA21727E7356B00CFEA2E /* FirstSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingViewController.h; sourceTree = "<group>"; };
- 275FA21827E7356B00CFEA2E /* VefiCodeLoginController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiCodeLoginController.h; sourceTree = "<group>"; };
- 275FA21A27E7356B00CFEA2E /* UserInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfo.m; sourceTree = "<group>"; };
- 275FA21B27E7356B00CFEA2E /* UserInfoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoManager.h; sourceTree = "<group>"; };
- 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoManager.m; sourceTree = "<group>"; };
- 275FA21D27E7356B00CFEA2E /* UserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfo.h; sourceTree = "<group>"; };
- 275FA21F27E7356B00CFEA2E /* FirstSettingBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingBodyView.h; sourceTree = "<group>"; };
- 275FA22027E7356B00CFEA2E /* LoginBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginBodyView.m; sourceTree = "<group>"; };
- 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginBodyView.xib; sourceTree = "<group>"; };
- 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FirstSettingBodyView.xib; sourceTree = "<group>"; };
- 275FA22327E7356B00CFEA2E /* VefiBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiBodyView.h; sourceTree = "<group>"; };
- 275FA22427E7356B00CFEA2E /* PasswordBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PasswordBodyView.h; sourceTree = "<group>"; };
- 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingBodyView.m; sourceTree = "<group>"; };
- 275FA22627E7356B00CFEA2E /* LoginBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginBodyView.h; sourceTree = "<group>"; };
- 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = VefiBodyView.xib; sourceTree = "<group>"; };
- 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PasswordBodyView.m; sourceTree = "<group>"; };
- 275FA22927E7356B00CFEA2E /* VefiBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiBodyView.m; sourceTree = "<group>"; };
- 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PasswordBodyView.xib; sourceTree = "<group>"; };
- 275FA23E27E737EE00CFEA2E /* ChooseInsturmentViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ChooseInsturmentViewController.h; sourceTree = "<group>"; };
- 275FA23F27E737EE00CFEA2E /* ChooseInsturmentViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ChooseInsturmentViewController.m; sourceTree = "<group>"; };
- 275FA24127E73DF600CFEA2E /* InstrumentDescView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstrumentDescView.h; sourceTree = "<group>"; };
- 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstrumentDescView.m; sourceTree = "<group>"; };
- 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InstrumentDescView.xib; sourceTree = "<group>"; };
- 275FA24627E7428200CFEA2E /* InstrumentChooseView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InstrumentChooseView.h; sourceTree = "<group>"; };
- 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InstrumentChooseView.m; sourceTree = "<group>"; };
- 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = InstrumentChooseView.xib; sourceTree = "<group>"; };
- 2779336427E3249C0010E277 /* KSNetworkAccessibleManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAccessibleManager.h; sourceTree = "<group>"; };
- 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAccessibleManager.m; sourceTree = "<group>"; };
- 2779336727E3249C0010E277 /* KSSafeObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSafeObject.h; sourceTree = "<group>"; };
- 2779336827E3249C0010E277 /* NSObject+KSSwizzling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSSwizzling.h"; sourceTree = "<group>"; };
- 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+KSSafe.m"; sourceTree = "<group>"; };
- 2779336A27E3249C0010E277 /* NSObject+KSImpChangeTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSImpChangeTool.h"; sourceTree = "<group>"; };
- 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+KSSafe.m"; sourceTree = "<group>"; };
- 2779336C27E3249C0010E277 /* NSMutableString+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableString+KSSafe.h"; sourceTree = "<group>"; };
- 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+KSSafe.m"; sourceTree = "<group>"; };
- 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+KSSafe.m"; sourceTree = "<group>"; };
- 2779336F27E3249C0010E277 /* NSDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+KSSafe.h"; sourceTree = "<group>"; };
- 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSSwizzling.m"; sourceTree = "<group>"; };
- 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSImpChangeTool.m"; sourceTree = "<group>"; };
- 2779337227E3249C0010E277 /* NSMutableArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+KSSafe.h"; sourceTree = "<group>"; };
- 2779337327E3249C0010E277 /* NSArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+KSSafe.h"; sourceTree = "<group>"; };
- 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableString+KSSafe.m"; sourceTree = "<group>"; };
- 2779337527E3249C0010E277 /* NSMutableDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+KSSafe.h"; sourceTree = "<group>"; };
- 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AssociatedObject.m"; sourceTree = "<group>"; };
- 2779337827E3249C0010E277 /* UIView+Hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hints.h"; sourceTree = "<group>"; };
- 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+ButtonAction.m"; sourceTree = "<group>"; };
- 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+zhDeviceType.m"; sourceTree = "<group>"; };
- 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+zh_SafeAccess.m"; sourceTree = "<group>"; };
- 2779337C27E3249D0010E277 /* NSDictionary+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Extension.h"; sourceTree = "<group>"; };
- 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+zhStatusBarStyle.m"; sourceTree = "<group>"; };
- 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWPlaceHolder.m"; sourceTree = "<group>"; };
- 2779337F27E3249D0010E277 /* NSString+CZHSizeExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+CZHSizeExtension.h"; sourceTree = "<group>"; };
- 2779338027E3249D0010E277 /* CALayer+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Color.m"; sourceTree = "<group>"; };
- 2779338127E3249D0010E277 /* NSDate+Transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Transform.h"; sourceTree = "<group>"; };
- 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+CZHExtention.m"; sourceTree = "<group>"; };
- 2779338327E3249D0010E277 /* NSString+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extension.h"; sourceTree = "<group>"; };
- 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWLimitCounter.m"; sourceTree = "<group>"; };
- 2779338527E3249D0010E277 /* UILabel+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extension.m"; sourceTree = "<group>"; };
- 2779338627E3249D0010E277 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
- 2779338727E3249D0010E277 /* KSUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUtilities.m; sourceTree = "<group>"; };
- 2779338927E3249D0010E277 /* pinyin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pinyin.h; sourceTree = "<group>"; };
- 2779338A27E3249D0010E277 /* pinyin.c */ = {isa = PBXFileReference; explicitFileType = sourcecode.c.objc; fileEncoding = 4; path = pinyin.c; sourceTree = "<group>"; };
- 2779338B27E3249D0010E277 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
- 2779338C27E3249D0010E277 /* CALayer+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Layout.h"; sourceTree = "<group>"; };
- 2779338D27E3249D0010E277 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
- 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+Extend.m"; sourceTree = "<group>"; };
- 2779338F27E3249D0010E277 /* UIImageView+CornerRadius.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+CornerRadius.h"; sourceTree = "<group>"; };
- 2779339027E3249D0010E277 /* UIScreen+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+Extend.h"; sourceTree = "<group>"; };
- 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+zh_SafeAccess.m"; sourceTree = "<group>"; };
- 2779339227E3249D0010E277 /* UIColor+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extend.m"; sourceTree = "<group>"; };
- 2779339327E3249D0010E277 /* zhPopupController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = zhPopupController.m; sourceTree = "<group>"; };
- 2779339427E3249D0010E277 /* UIView+Dealloc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Dealloc.m"; sourceTree = "<group>"; };
- 2779339527E3249D0010E277 /* NSObject+Parse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Parse.m"; sourceTree = "<group>"; };
- 2779339627E3249D0010E277 /* UIView+AddConstraints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AddConstraints.m"; sourceTree = "<group>"; };
- 2779339727E3249D0010E277 /* UIView+KSExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSExtension.h"; sourceTree = "<group>"; };
- 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+CZHSizeExtension.m"; sourceTree = "<group>"; };
- 2779339927E3249D0010E277 /* UITextView+ZWPlaceHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWPlaceHolder.h"; sourceTree = "<group>"; };
- 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Extension.m"; sourceTree = "<group>"; };
- 2779339B27E3249D0010E277 /* UIViewController+zhStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+zhStatusBarStyle.h"; sourceTree = "<group>"; };
- 2779339C27E3249D0010E277 /* NSString+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+zh_SafeAccess.h"; sourceTree = "<group>"; };
- 2779339D27E3249D0010E277 /* UIDevice+zhDeviceType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+zhDeviceType.h"; sourceTree = "<group>"; };
- 2779339E27E3249D0010E277 /* UIControl+ButtonAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+ButtonAction.h"; sourceTree = "<group>"; };
- 2779339F27E3249D0010E277 /* UIView+Hints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hints.m"; sourceTree = "<group>"; };
- 277933A027E3249D0010E277 /* NSObject+AssociatedObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AssociatedObject.h"; sourceTree = "<group>"; };
- 277933A127E3249D0010E277 /* KSUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUtilities.h; sourceTree = "<group>"; };
- 277933A227E3249D0010E277 /* UILabel+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extension.h"; sourceTree = "<group>"; };
- 277933A327E3249D0010E277 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
- 277933A427E3249D0010E277 /* UITextView+ZWLimitCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWLimitCounter.h"; sourceTree = "<group>"; };
- 277933A527E3249D0010E277 /* NSString+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extension.m"; sourceTree = "<group>"; };
- 277933A627E3249D0010E277 /* NSDate+Transform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Transform.m"; sourceTree = "<group>"; };
- 277933A727E3249D0010E277 /* NSMutableAttributedString+CZHExtention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+CZHExtention.h"; sourceTree = "<group>"; };
- 277933A827E3249D0010E277 /* CALayer+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Color.h"; sourceTree = "<group>"; };
- 277933A927E3249D0010E277 /* UIScreen+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+Extend.m"; sourceTree = "<group>"; };
- 277933AA27E3249D0010E277 /* UIAlertController+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+Extend.h"; sourceTree = "<group>"; };
- 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+CornerRadius.m"; sourceTree = "<group>"; };
- 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
- 277933AD27E3249E0010E277 /* CALayer+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Layout.m"; sourceTree = "<group>"; };
- 277933AE27E3249E0010E277 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
- 277933AF27E3249E0010E277 /* UIView+KSExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSExtension.m"; sourceTree = "<group>"; };
- 277933B027E3249E0010E277 /* NSObject+Parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Parse.h"; sourceTree = "<group>"; };
- 277933B127E3249E0010E277 /* UIView+AddConstraints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AddConstraints.h"; sourceTree = "<group>"; };
- 277933B227E3249E0010E277 /* UIView+Dealloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Dealloc.h"; sourceTree = "<group>"; };
- 277933B327E3249E0010E277 /* zhPopupController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = zhPopupController.h; sourceTree = "<group>"; };
- 277933B427E3249E0010E277 /* UIColor+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extend.h"; sourceTree = "<group>"; };
- 277933B527E3249E0010E277 /* NSArray+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+zh_SafeAccess.h"; sourceTree = "<group>"; };
- 277933B727E3249E0010E277 /* UIView+XIBView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIBView.m"; sourceTree = "<group>"; };
- 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+QWTopLeftLabel.m"; sourceTree = "<group>"; };
- 277933B927E3249E0010E277 /* UrlDecode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UrlDecode.m; sourceTree = "<group>"; };
- 277933BA27E3249E0010E277 /* UIButton+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Property.m"; sourceTree = "<group>"; };
- 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+KSTouch.m"; sourceTree = "<group>"; };
- 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+TFDevice.m"; sourceTree = "<group>"; };
- 277933BD27E3249E0010E277 /* MBProgressHUD+KSShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+KSShow.h"; sourceTree = "<group>"; };
- 277933BE27E3249E0010E277 /* UIView+KSLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSLayer.m"; sourceTree = "<group>"; };
- 277933BF27E3249E0010E277 /* UIImage+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Property.m"; sourceTree = "<group>"; };
- 277933C027E3249E0010E277 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
- 277933C127E3249E0010E277 /* UIView+ShowProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ShowProgress.m"; sourceTree = "<group>"; };
- 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ResizeImage.m"; sourceTree = "<group>"; };
- 277933C327E3249E0010E277 /* UIButton+EnlargeEdge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+EnlargeEdge.h"; sourceTree = "<group>"; };
- 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+HasChooseImage.m"; sourceTree = "<group>"; };
- 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AutoProperty.m"; sourceTree = "<group>"; };
- 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+UIImageScale.m"; sourceTree = "<group>"; };
- 277933C727E3249E0010E277 /* UIImage+Resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resize.h"; sourceTree = "<group>"; };
- 277933C827E3249E0010E277 /* UIView+Animation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Animation.m"; sourceTree = "<group>"; };
- 277933C927E3249E0010E277 /* UIView+XIBView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIBView.h"; sourceTree = "<group>"; };
- 277933CA27E3249E0010E277 /* UIDevice+TFDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+TFDevice.h"; sourceTree = "<group>"; };
- 277933CB27E3249E0010E277 /* UIScrollView+KSTouch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+KSTouch.h"; sourceTree = "<group>"; };
- 277933CC27E3249E0010E277 /* UIButton+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Property.h"; sourceTree = "<group>"; };
- 277933CD27E3249E0010E277 /* UrlDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UrlDecode.h; sourceTree = "<group>"; };
- 277933CE27E3249E0010E277 /* UILabel+QWTopLeftLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+QWTopLeftLabel.h"; sourceTree = "<group>"; };
- 277933CF27E3249E0010E277 /* UIImage+UIImageScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+UIImageScale.h"; sourceTree = "<group>"; };
- 277933D027E3249E0010E277 /* NSObject+AutoProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AutoProperty.h"; sourceTree = "<group>"; };
- 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+EnlargeEdge.m"; sourceTree = "<group>"; };
- 277933D227E3249E0010E277 /* UIButton+HasChooseImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+HasChooseImage.h"; sourceTree = "<group>"; };
- 277933D327E3249E0010E277 /* UIImage+ResizeImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ResizeImage.h"; sourceTree = "<group>"; };
- 277933D427E3249E0010E277 /* UIView+ShowProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ShowProgress.h"; sourceTree = "<group>"; };
- 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
- 277933D627E3249E0010E277 /* UIImage+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Property.h"; sourceTree = "<group>"; };
- 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+KSShow.m"; sourceTree = "<group>"; };
- 277933D827E3249E0010E277 /* UIView+KSLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSLayer.h"; sourceTree = "<group>"; };
- 277933D927E3249E0010E277 /* UIView+Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Animation.h"; sourceTree = "<group>"; };
- 277933DA27E3249E0010E277 /* UIImage+Resize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resize.m"; sourceTree = "<group>"; };
- 277933DC27E3249E0010E277 /* KSVideoEditor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSVideoEditor.h; sourceTree = "<group>"; };
- 277933DD27E3249E0010E277 /* KSVideoEditor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSVideoEditor.m; sourceTree = "<group>"; };
- 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSGifRefreshHeader.m; sourceTree = "<group>"; };
- 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSGifRefreshFooter.m; sourceTree = "<group>"; };
- 277933E127E3249E0010E277 /* KSGifRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSGifRefreshFooter.h; sourceTree = "<group>"; };
- 277933E227E3249E0010E277 /* KSGifRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSGifRefreshHeader.h; sourceTree = "<group>"; };
- 277933E427E3249E0010E277 /* KSAudioSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioSessionManager.m; sourceTree = "<group>"; };
- 277933E527E3249F0010E277 /* KSAudioSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioSessionManager.h; sourceTree = "<group>"; };
- 277933E727E3249F0010E277 /* VoNetWorking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoNetWorking.h; sourceTree = "<group>"; };
- 277933E927E3249F0010E277 /* VoLRUManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoLRUManager.m; sourceTree = "<group>"; };
- 277933EA27E3249F0010E277 /* VoMemoryCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoMemoryCache.h; sourceTree = "<group>"; };
- 277933EB27E3249F0010E277 /* VoDiskCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoDiskCache.m; sourceTree = "<group>"; };
- 277933EC27E3249F0010E277 /* VoCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoCacheManager.m; sourceTree = "<group>"; };
- 277933ED27E3249F0010E277 /* VoLRUManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoLRUManager.h; sourceTree = "<group>"; };
- 277933EE27E3249F0010E277 /* VoMemoryCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoMemoryCache.m; sourceTree = "<group>"; };
- 277933EF27E3249F0010E277 /* VoCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoCacheManager.h; sourceTree = "<group>"; };
- 277933F027E3249F0010E277 /* VoDiskCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VoDiskCache.h; sourceTree = "<group>"; };
- 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "VoNetworking+RequestManager.m"; sourceTree = "<group>"; };
- 277933F227E3249F0010E277 /* VoNetWorking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VoNetWorking.m; sourceTree = "<group>"; };
- 277933F327E3249F0010E277 /* VoNetworking+RequestManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "VoNetworking+RequestManager.h"; sourceTree = "<group>"; };
- 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DiskFreeSpaceManager.m; sourceTree = "<group>"; };
- 277933F627E3249F0010E277 /* DiskFreeSpaceManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DiskFreeSpaceManager.h; sourceTree = "<group>"; };
- 277933F827E3249F0010E277 /* KSPremissionAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSPremissionAlert.m; sourceTree = "<group>"; };
- 277933F927E3249F0010E277 /* KSPremissionAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSPremissionAlert.xib; sourceTree = "<group>"; };
- 277933FA27E3249F0010E277 /* KSPremissionAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSPremissionAlert.h; sourceTree = "<group>"; };
- 277933FC27E3249F0010E277 /* UIImage+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
- 277933FD27E3249F0010E277 /* GRCreateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRCreateManager.m; sourceTree = "<group>"; };
- 277933FE27E3249F0010E277 /* GRScanManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRScanManager.h; sourceTree = "<group>"; };
- 277933FF27E3249F0010E277 /* ShoppCatView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShoppCatView.h; sourceTree = "<group>"; };
- 2779340127E3249F0010E277 /* QCCountdownButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QCCountdownButton.m; sourceTree = "<group>"; };
- 2779340227E3249F0010E277 /* QCCountdownButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QCCountdownButton.h; sourceTree = "<group>"; };
- 2779340327E3249F0010E277 /* LifeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LifeButton.h; sourceTree = "<group>"; };
- 2779340427E3249F0010E277 /* KSStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSStatusView.m; sourceTree = "<group>"; };
- 2779340527E3249F0010E277 /* prodectButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prodectButton.h; sourceTree = "<group>"; };
- 2779340627E3249F0010E277 /* StoreButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreButton.h; sourceTree = "<group>"; };
- 2779340727E3249F0010E277 /* KSChoosePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChoosePicker.m; sourceTree = "<group>"; };
- 2779340927E3249F0010E277 /* KSAudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordManager.h; sourceTree = "<group>"; };
- 2779340A27E3249F0010E277 /* KSRecordStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordStatusView.h; sourceTree = "<group>"; };
- 2779340B27E3249F0010E277 /* KSHoldButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHoldButton.m; sourceTree = "<group>"; };
- 2779340C27E3249F0010E277 /* KSRecordPowerAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordPowerAnimationView.h; sourceTree = "<group>"; };
- 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordFileManager.m; sourceTree = "<group>"; };
- 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ValueAdd.m"; sourceTree = "<group>"; };
- 2779340F27E3249F0010E277 /* KSRecordStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordStatusView.m; sourceTree = "<group>"; };
- 2779341027E3249F0010E277 /* KSAudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordManager.m; sourceTree = "<group>"; };
- 2779341127E3249F0010E277 /* KSHoldButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHoldButton.h; sourceTree = "<group>"; };
- 2779341227E3249F0010E277 /* UIView+ValueAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ValueAdd.h"; sourceTree = "<group>"; };
- 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordPowerAnimationView.m; sourceTree = "<group>"; };
- 2779341427E3249F0010E277 /* KSAudioRecordFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordFileManager.h; sourceTree = "<group>"; };
- 2779341527E3249F0010E277 /* HomeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeButton.m; sourceTree = "<group>"; };
- 2779341627E3249F0010E277 /* KSImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageButton.h; sourceTree = "<group>"; };
- 2779341727E3249F0010E277 /* KSFullDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSFullDatePicker.m; sourceTree = "<group>"; };
- 2779341827E3249F0010E277 /* NSString+phone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+phone.h"; sourceTree = "<group>"; };
- 2779341927E3249F0010E277 /* KSMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaManager.m; sourceTree = "<group>"; };
- 2779341A27E3249F0010E277 /* ShopMessBtn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopMessBtn.m; sourceTree = "<group>"; };
- 2779341B27E324A00010E277 /* UIColor+Hex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
- 2779341C27E324A00010E277 /* shopview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = shopview.m; sourceTree = "<group>"; };
- 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YKMultiLevelTableView.m; sourceTree = "<group>"; };
- 2779341F27E324A00010E277 /* YKNodeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YKNodeModel.m; sourceTree = "<group>"; };
- 2779342027E324A00010E277 /* YKNodeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YKNodeModel.h; sourceTree = "<group>"; };
- 2779342127E324A00010E277 /* YKMultiLevelTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YKMultiLevelTableView.h; sourceTree = "<group>"; };
- 2779342227E324A00010E277 /* pickBut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = pickBut.m; sourceTree = "<group>"; };
- 2779342327E324A00010E277 /* KSMessageInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMessageInputView.h; sourceTree = "<group>"; };
- 2779342427E324A00010E277 /* NSString+MD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MD5.h"; sourceTree = "<group>"; };
- 2779342527E324A00010E277 /* ShopButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopButton.h; sourceTree = "<group>"; };
- 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+NJ.m"; sourceTree = "<group>"; };
- 2779342727E324A00010E277 /* PIckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PIckView.h; sourceTree = "<group>"; };
- 2779342827E324A00010E277 /* StoreShopCaterview.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreShopCaterview.m; sourceTree = "<group>"; };
- 2779342A27E324A00010E277 /* UITextField_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextField_Toolbar.m; sourceTree = "<group>"; };
- 2779342B27E324A00010E277 /* SkipTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextField.m; sourceTree = "<group>"; };
- 2779342C27E324A00010E277 /* SkipTextProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextProtocol.h; sourceTree = "<group>"; };
- 2779342D27E324A00010E277 /* SkipTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextView.h; sourceTree = "<group>"; };
- 2779342E27E324A00010E277 /* UITextView_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextView_Toolbar.m; sourceTree = "<group>"; };
- 2779342F27E324A00010E277 /* UITextField_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField_Toolbar.h; sourceTree = "<group>"; };
- 2779343027E324A00010E277 /* SkipTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextField.h; sourceTree = "<group>"; };
- 2779343127E324A00010E277 /* SkipTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextView.m; sourceTree = "<group>"; };
- 2779343227E324A00010E277 /* UITextView_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextView_Toolbar.h; sourceTree = "<group>"; };
- 2779343327E324A00010E277 /* NSDate+KSBaseDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+KSBaseDatePicker.h"; sourceTree = "<group>"; };
- 2779343427E324A00010E277 /* SearchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SearchView.m; sourceTree = "<group>"; };
- 2779343527E324A00010E277 /* StateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateView.h; sourceTree = "<group>"; };
- 2779343627E324A00010E277 /* sortButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sortButton.h; sourceTree = "<group>"; };
- 2779343727E324A00010E277 /* KSInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSInputView.h; sourceTree = "<group>"; };
- 2779343827E324A00010E277 /* KeyChainTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeyChainTools.h; sourceTree = "<group>"; };
- 2779343927E324A00010E277 /* KSStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSStatusView.h; sourceTree = "<group>"; };
- 2779343A27E324A00010E277 /* prodectButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = prodectButton.m; sourceTree = "<group>"; };
- 2779343B27E324A00010E277 /* StoreButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StoreButton.m; sourceTree = "<group>"; };
- 2779343C27E324A00010E277 /* LifeButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LifeButton.m; sourceTree = "<group>"; };
- 2779343D27E324A00010E277 /* ShoppCatView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShoppCatView.m; sourceTree = "<group>"; };
- 2779343E27E324A00010E277 /* GRScanManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRScanManager.m; sourceTree = "<group>"; };
- 2779343F27E324A00010E277 /* GRCreateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRCreateManager.h; sourceTree = "<group>"; };
- 2779344027E324A00010E277 /* UIImage+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
- 2779344127E324A00010E277 /* UIColor+Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
- 2779344227E324A00010E277 /* ShopMessBtn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShopMessBtn.h; sourceTree = "<group>"; };
- 2779344327E324A00010E277 /* KSMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaManager.h; sourceTree = "<group>"; };
- 2779344427E324A00010E277 /* NSString+phone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+phone.m"; sourceTree = "<group>"; };
- 2779344527E324A00010E277 /* KSFullDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSFullDatePicker.h; sourceTree = "<group>"; };
- 2779344627E324A00010E277 /* KSImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageButton.m; sourceTree = "<group>"; };
- 2779344727E324A00010E277 /* HomeButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeButton.h; sourceTree = "<group>"; };
- 2779344827E324A00010E277 /* KSChoosePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChoosePicker.h; sourceTree = "<group>"; };
- 2779344927E324A00010E277 /* PIckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PIckView.m; sourceTree = "<group>"; };
- 2779344A27E324A00010E277 /* MBProgressHUD+NJ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+NJ.h"; sourceTree = "<group>"; };
- 2779344B27E324A00010E277 /* ShopButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShopButton.m; sourceTree = "<group>"; };
- 2779344C27E324A00010E277 /* NSString+MD5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MD5.m"; sourceTree = "<group>"; };
- 2779344D27E324A00010E277 /* KSMessageInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMessageInputView.m; sourceTree = "<group>"; };
- 2779344E27E324A00010E277 /* pickBut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pickBut.h; sourceTree = "<group>"; };
- 2779344F27E324A00010E277 /* shopview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = shopview.h; sourceTree = "<group>"; };
- 2779345027E324A00010E277 /* KSInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSInputView.m; sourceTree = "<group>"; };
- 2779345127E324A00010E277 /* KeyChainTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KeyChainTools.m; sourceTree = "<group>"; };
- 2779345227E324A00010E277 /* sortButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = sortButton.m; sourceTree = "<group>"; };
- 2779345327E324A00010E277 /* StateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateView.m; sourceTree = "<group>"; };
- 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+KSBaseDatePicker.m"; sourceTree = "<group>"; };
- 2779345527E324A00010E277 /* SearchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SearchView.h; sourceTree = "<group>"; };
- 2779345727E324A10010E277 /* LLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhotoBrowser.m; sourceTree = "<group>"; };
- 2779345827E324A10010E277 /* LLCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLCollectionViewCell.h; sourceTree = "<group>"; };
- 2779345A27E324A10010E277 /* LLImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLImageCache.m; sourceTree = "<group>"; };
- 2779345B27E324A10010E277 /* LLFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLFileManager.m; sourceTree = "<group>"; };
- 2779345C27E324A10010E277 /* LLImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLImageCache.h; sourceTree = "<group>"; };
- 2779345D27E324A10010E277 /* LLFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLFileManager.h; sourceTree = "<group>"; };
- 2779345E27E324A10010E277 /* LLPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhoto.m; sourceTree = "<group>"; };
- 2779345F27E324A10010E277 /* LLCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLCollectionViewCell.m; sourceTree = "<group>"; };
- 2779346027E324A10010E277 /* LLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhotoBrowser.h; sourceTree = "<group>"; };
- 2779346127E324A10010E277 /* LLPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhoto.h; sourceTree = "<group>"; };
- 2779346227E324A10010E277 /* StoreShopCaterview.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StoreShopCaterview.h; sourceTree = "<group>"; };
- 2779346427E324A10010E277 /* CoinModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoinModel.h; sourceTree = "<group>"; };
- 2779346527E324A10010E277 /* ArchiveTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArchiveTools.h; sourceTree = "<group>"; };
- 2779346627E324A10010E277 /* NSObject+Archiving.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Archiving.m"; sourceTree = "<group>"; };
- 2779346727E324A10010E277 /* CoinModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CoinModel.m; sourceTree = "<group>"; };
- 2779346827E324A10010E277 /* ArchiveTools.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArchiveTools.m; sourceTree = "<group>"; };
- 2779346927E324A10010E277 /* NSObject+Archiving.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Archiving.h"; sourceTree = "<group>"; };
- 2779346B27E324A10010E277 /* UserKeyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserKeyHeader.h; sourceTree = "<group>"; };
- 2779346C27E324A10010E277 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
- 2779346D27E324A10010E277 /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
- 2779347027E324A10010E277 /* AnimationContoller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnimationContoller.h; sourceTree = "<group>"; };
- 2779347127E324A10010E277 /* KLTNavigationController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KLTNavigationController.m; sourceTree = "<group>"; };
- 2779347227E324A10010E277 /* KLTNavigationController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KLTNavigationController.h; sourceTree = "<group>"; };
- 2779347327E324A10010E277 /* AnimationContoller.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnimationContoller.m; sourceTree = "<group>"; };
- 2779347527E324A10010E277 /* DZNSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DZNSegmentedControl.m; sourceTree = "<group>"; };
- 2779347627E324A10010E277 /* DZNSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DZNSegmentedControl.h; sourceTree = "<group>"; };
- 2779347827E324A10010E277 /* WMLightView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMLightView.h; sourceTree = "<group>"; };
- 2779347927E324A10010E277 /* WMPlayerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayerModel.m; sourceTree = "<group>"; };
- 2779347A27E324A10010E277 /* FastForwardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FastForwardView.h; sourceTree = "<group>"; };
- 2779347B27E324A10010E277 /* WMPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WMPlayer.bundle; sourceTree = "<group>"; };
- 2779347C27E324A10010E277 /* WMPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayer.h; sourceTree = "<group>"; };
- 2779347D27E324A10010E277 /* WMPlayerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayerModel.h; sourceTree = "<group>"; };
- 2779347E27E324A10010E277 /* WMLightView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMLightView.m; sourceTree = "<group>"; };
- 2779347F27E324A10010E277 /* FastForwardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FastForwardView.m; sourceTree = "<group>"; };
- 2779348027E324A10010E277 /* WMPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayer.m; sourceTree = "<group>"; };
- 2779348227E324A10010E277 /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewCell.h; sourceTree = "<group>"; };
- 2779348327E324A10010E277 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPickerController.h; sourceTree = "<group>"; };
- 2779348427E324A10010E277 /* TZImageCropManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageCropManager.m; sourceTree = "<group>"; };
- 2779348527E324A10010E277 /* TZImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageManager.h; sourceTree = "<group>"; };
- 2779348627E324A10010E277 /* TZAssetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetCell.m; sourceTree = "<group>"; };
- 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoEditedPreviewController.m; sourceTree = "<group>"; };
- 2779348827E324A10010E277 /* TZVideoCropController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoCropController.m; sourceTree = "<group>"; };
- 2779348927E324A10010E277 /* TZVideoPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoPlayerController.m; sourceTree = "<group>"; };
- 2779348A27E324A10010E277 /* TZAssetModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetModel.m; sourceTree = "<group>"; };
- 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+TZImagePicker.m"; sourceTree = "<group>"; };
- 2779348C27E324A10010E277 /* UIView+TZLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+TZLayout.h"; sourceTree = "<group>"; };
- 2779348D27E324A10010E277 /* TZLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZLocationManager.h; sourceTree = "<group>"; };
- 2779348E27E324A10010E277 /* TZImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImagePickerController.h; sourceTree = "<group>"; };
- 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewController.m; sourceTree = "<group>"; };
- 2779349027E324A10010E277 /* TZImagePickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TZImagePickerController.bundle; sourceTree = "<group>"; };
- 2779349127E324A10010E277 /* TZProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZProgressView.m; sourceTree = "<group>"; };
- 2779349227E324A10010E277 /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZGifPhotoPreviewController.h; sourceTree = "<group>"; };
- 2779349327E324A10010E277 /* TZImageRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageRequestOperation.h; sourceTree = "<group>"; };
- 2779349427E324A10010E277 /* TZVideoEditedPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoEditedPreviewController.h; sourceTree = "<group>"; };
- 2779349527E324A10010E277 /* TZAssetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetCell.h; sourceTree = "<group>"; };
- 2779349627E324A10010E277 /* TZImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageManager.m; sourceTree = "<group>"; };
- 2779349727E324A20010E277 /* TZImageCropManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageCropManager.h; sourceTree = "<group>"; };
- 2779349827E324A20010E277 /* TZPhotoPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPickerController.m; sourceTree = "<group>"; };
- 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewCell.m; sourceTree = "<group>"; };
- 2779349A27E324A20010E277 /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+TZImagePicker.h"; sourceTree = "<group>"; };
- 2779349B27E324A20010E277 /* UIView+TZLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+TZLayout.m"; sourceTree = "<group>"; };
- 2779349C27E324A20010E277 /* TZAssetModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetModel.h; sourceTree = "<group>"; };
- 2779349D27E324A20010E277 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoPlayerController.h; sourceTree = "<group>"; };
- 2779349E27E324A20010E277 /* TZVideoCropController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoCropController.h; sourceTree = "<group>"; };
- 2779349F27E324A20010E277 /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewController.h; sourceTree = "<group>"; };
- 277934A027E324A20010E277 /* TZImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImagePickerController.m; sourceTree = "<group>"; };
- 277934A127E324A20010E277 /* TZLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZLocationManager.m; sourceTree = "<group>"; };
- 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZGifPhotoPreviewController.m; sourceTree = "<group>"; };
- 277934A327E324A20010E277 /* TZImageRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageRequestOperation.m; sourceTree = "<group>"; };
- 277934A427E324A20010E277 /* TZProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZProgressView.h; sourceTree = "<group>"; };
- 277934A627E324A20010E277 /* MSSBrowseRemindView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseRemindView.h; sourceTree = "<group>"; };
- 277934A727E324A20010E277 /* MSSBrowseZoomScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseZoomScrollView.h; sourceTree = "<group>"; };
- 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLoadingImageView.m; sourceTree = "<group>"; };
- 277934A927E324A20010E277 /* MSSBrowseBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseBaseViewController.h; sourceTree = "<group>"; };
- 277934AA27E324A20010E277 /* UIImage+MSSScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MSSScale.h"; sourceTree = "<group>"; };
- 277934AB27E324A20010E277 /* MSSBrowseNetworkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseNetworkViewController.h; sourceTree = "<group>"; };
- 277934AC27E324A20010E277 /* MSSBrowseActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheet.h; sourceTree = "<group>"; };
- 277934AD27E324A20010E277 /* MSSBrowseActionSheetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheetCell.h; sourceTree = "<group>"; };
- 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLocalViewController.m; sourceTree = "<group>"; };
- 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseCollectionViewCell.m; sourceTree = "<group>"; };
- 277934B027E324A20010E277 /* UIView+MSSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MSSLayout.h"; sourceTree = "<group>"; };
- 277934B127E324A20010E277 /* MSSBrowseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseModel.m; sourceTree = "<group>"; };
- 277934B227E324A20010E277 /* MSSBrowseDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseDefine.h; sourceTree = "<group>"; };
- 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheet.m; sourceTree = "<group>"; };
- 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseNetworkViewController.m; sourceTree = "<group>"; };
- 277934B527E324A20010E277 /* UIImage+MSSScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MSSScale.m"; sourceTree = "<group>"; };
- 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseBaseViewController.m; sourceTree = "<group>"; };
- 277934B727E324A20010E277 /* MSSBrowseLoadingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLoadingImageView.h; sourceTree = "<group>"; };
- 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseZoomScrollView.m; sourceTree = "<group>"; };
- 277934B927E324A20010E277 /* MSSBrowseRemindView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseRemindView.m; sourceTree = "<group>"; };
- 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@3x.png"; sourceTree = "<group>"; };
- 277934BB27E324A20010E277 /* MSSBrowseCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseCollectionViewCell.h; sourceTree = "<group>"; };
- 277934BC27E324A20010E277 /* MSSBrowseLocalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLocalViewController.h; sourceTree = "<group>"; };
- 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheetCell.m; sourceTree = "<group>"; };
- 277934BE27E324A20010E277 /* MSSBrowseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseModel.h; sourceTree = "<group>"; };
- 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@2x.png"; sourceTree = "<group>"; };
- 277934C027E324A20010E277 /* UIView+MSSLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MSSLayout.m"; sourceTree = "<group>"; };
- 277934C227E324A20010E277 /* FSCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCollectionView.m; sourceTree = "<group>"; };
- 277934C327E324A20010E277 /* FSCalendarWeekdayView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarWeekdayView.h; sourceTree = "<group>"; };
- 277934C427E324A20010E277 /* FSCalendarCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCollectionViewLayout.h; sourceTree = "<group>"; };
- 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarDelegationProxy.m; sourceTree = "<group>"; };
- 277934C627E324A20010E277 /* FSCalendarExtensions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarExtensions.h; sourceTree = "<group>"; };
- 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarDelegationFactory.m; sourceTree = "<group>"; };
- 277934C827E324A20010E277 /* FSCalendarSeparatorDecorationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarSeparatorDecorationView.h; sourceTree = "<group>"; };
- 277934C927E324A20010E277 /* FSCalendarCalculator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCalculator.h; sourceTree = "<group>"; };
- 277934CA27E324A20010E277 /* FSCalendarHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarHeaderView.h; sourceTree = "<group>"; };
- 277934CB27E324A20010E277 /* FSCalendarConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarConstants.h; sourceTree = "<group>"; };
- 277934CC27E324A20010E277 /* FSCalendarAppearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarAppearance.h; sourceTree = "<group>"; };
- 277934CD27E324A20010E277 /* FSCalendarTransitionCoordinator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarTransitionCoordinator.h; sourceTree = "<group>"; };
- 277934CE27E324A30010E277 /* FSCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCell.m; sourceTree = "<group>"; };
- 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarStickyHeader.m; sourceTree = "<group>"; };
- 277934D027E324A30010E277 /* FSCalendar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendar.m; sourceTree = "<group>"; };
- 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCollectionViewLayout.m; sourceTree = "<group>"; };
- 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarWeekdayView.m; sourceTree = "<group>"; };
- 277934D327E324A30010E277 /* FSCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCollectionView.h; sourceTree = "<group>"; };
- 277934D427E324A30010E277 /* FSCalendarDynamicHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDynamicHeader.h; sourceTree = "<group>"; };
- 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarSeparatorDecorationView.m; sourceTree = "<group>"; };
- 277934D627E324A30010E277 /* FSCalendarDelegationFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDelegationFactory.h; sourceTree = "<group>"; };
- 277934D727E324A30010E277 /* FSCalendarExtensions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarExtensions.m; sourceTree = "<group>"; };
- 277934D827E324A30010E277 /* FSCalendarDelegationProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarDelegationProxy.h; sourceTree = "<group>"; };
- 277934D927E324A30010E277 /* FSCalendarConstants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarConstants.m; sourceTree = "<group>"; };
- 277934DA27E324A30010E277 /* FSCalendarCalculator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarCalculator.m; sourceTree = "<group>"; };
- 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarHeaderView.m; sourceTree = "<group>"; };
- 277934DC27E324A30010E277 /* FSCalendarStickyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarStickyHeader.h; sourceTree = "<group>"; };
- 277934DD27E324A30010E277 /* FSCalendar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendar.h; sourceTree = "<group>"; };
- 277934DE27E324A30010E277 /* FSCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FSCalendarCell.h; sourceTree = "<group>"; };
- 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarTransitionCoordinator.m; sourceTree = "<group>"; };
- 277934E027E324A30010E277 /* FSCalendarAppearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FSCalendarAppearance.m; sourceTree = "<group>"; };
- 277934E227E324A30010E277 /* QWdynamicModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QWdynamicModel.m; sourceTree = "<group>"; };
- 277934E327E324A30010E277 /* UIView+SDExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SDExtension.h"; sourceTree = "<group>"; };
- 277934E427E324A30010E277 /* SDQWMaskCustomModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDQWMaskCustomModel.h; sourceTree = "<group>"; };
- 277934E527E324A30010E277 /* SDCycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCycleScrollView.h; sourceTree = "<group>"; };
- 277934E627E324A30010E277 /* SDCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDCollectionViewCell.h; sourceTree = "<group>"; };
- 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = SDQWMaskCustomView.xib; sourceTree = "<group>"; };
- 277934E827E324A30010E277 /* SDQWMaskCustomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDQWMaskCustomView.h; sourceTree = "<group>"; };
- 277934E927E324A30010E277 /* SDCycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCycleScrollView.m; sourceTree = "<group>"; };
- 277934EA27E324A30010E277 /* UIView+SDExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SDExtension.m"; sourceTree = "<group>"; };
- 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDQWMaskCustomModel.m; sourceTree = "<group>"; };
- 277934EC27E324A30010E277 /* QWdynamicModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QWdynamicModel.h; sourceTree = "<group>"; };
- 277934ED27E324A30010E277 /* SDCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDCollectionViewCell.m; sourceTree = "<group>"; };
- 277934EF27E324A30010E277 /* TAAbstractDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAbstractDotView.h; sourceTree = "<group>"; };
- 277934F027E324A30010E277 /* TADotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TADotView.m; sourceTree = "<group>"; };
- 277934F127E324A30010E277 /* TAPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAPageControl.m; sourceTree = "<group>"; };
- 277934F227E324A30010E277 /* TAAnimatedDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAnimatedDotView.m; sourceTree = "<group>"; };
- 277934F327E324A30010E277 /* TAAbstractDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TAAbstractDotView.m; sourceTree = "<group>"; };
- 277934F427E324A30010E277 /* TADotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TADotView.h; sourceTree = "<group>"; };
- 277934F527E324A30010E277 /* TAAnimatedDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAAnimatedDotView.h; sourceTree = "<group>"; };
- 277934F627E324A30010E277 /* TAPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TAPageControl.h; sourceTree = "<group>"; };
- 277934F727E324A30010E277 /* SDQWMaskCustomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDQWMaskCustomView.m; sourceTree = "<group>"; };
- 277934F927E324A30010E277 /* ALCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCell.m; sourceTree = "<group>"; };
- 277934FA27E324A30010E277 /* ALCalendarConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarConfig.m; sourceTree = "<group>"; };
- 277934FB27E324A30010E277 /* ALCalendarHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHeader.m; sourceTree = "<group>"; };
- 277934FC27E324A30010E277 /* ALCalendarDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarDate.m; sourceTree = "<group>"; };
- 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCollectionView.m; sourceTree = "<group>"; };
- 277934FE27E324A30010E277 /* ALCalendarHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHelper.m; sourceTree = "<group>"; };
- 277934FF27E324A30010E277 /* UIView+ALFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ALFrame.h"; sourceTree = "<group>"; };
- 2779350027E324A30010E277 /* ALCalendarPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarPicker.h; sourceTree = "<group>"; };
- 2779350127E324A30010E277 /* ALCalendarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarManager.h; sourceTree = "<group>"; };
- 2779350227E324A30010E277 /* ALCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCollectionView.h; sourceTree = "<group>"; };
- 2779350327E324A30010E277 /* ALCalendarDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarDate.h; sourceTree = "<group>"; };
- 2779350427E324A30010E277 /* ALCalendarHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHeader.h; sourceTree = "<group>"; };
- 2779350527E324A30010E277 /* ALCalendarConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarConfig.h; sourceTree = "<group>"; };
- 2779350627E324A30010E277 /* ALCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCell.h; sourceTree = "<group>"; };
- 2779350727E324A40010E277 /* ALCalendarHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHelper.h; sourceTree = "<group>"; };
- 2779350827E324A40010E277 /* ALCalendarPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarPicker.m; sourceTree = "<group>"; };
- 2779350927E324A40010E277 /* UIView+ALFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ALFrame.m"; sourceTree = "<group>"; };
- 2779350A27E324A40010E277 /* ALCalendarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarManager.m; sourceTree = "<group>"; };
- 27F9031127E87C2C00C08A19 /* NetworkingCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkingCheckController.h; sourceTree = "<group>"; };
- 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkingCheckController.m; sourceTree = "<group>"; };
- 27F9031527E87C2C00C08A19 /* KSNetworkAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAlert.h; sourceTree = "<group>"; };
- 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkBodyView.m; sourceTree = "<group>"; };
- 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetworkBodyView.xib; sourceTree = "<group>"; };
- 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAlert.m; sourceTree = "<group>"; };
- 27F9031927E87C2D00C08A19 /* NetworkBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkBodyView.h; sourceTree = "<group>"; };
- 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSNetworkAlert.xib; sourceTree = "<group>"; };
- 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceCheckView.xib; sourceTree = "<group>"; };
- 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioPlayManager.m; sourceTree = "<group>"; };
- 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioRecordManager.m; sourceTree = "<group>"; };
- 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceCheckView.m; sourceTree = "<group>"; };
- 27F9032027E87C2D00C08A19 /* AudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioRecordManager.h; sourceTree = "<group>"; };
- 27F9032127E87C2D00C08A19 /* DeviceCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceCheckView.h; sourceTree = "<group>"; };
- 27F9032227E87C2D00C08A19 /* AudioPlayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioPlayManager.h; sourceTree = "<group>"; };
- 27F9032527E87C2E00C08A19 /* SettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SettingViewController.h; sourceTree = "<group>"; };
- 27F9032627E87C2E00C08A19 /* SettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SettingViewController.m; sourceTree = "<group>"; };
- 27F9033327E87C8A00C08A19 /* MineNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MineNavView.h; sourceTree = "<group>"; };
- 27F9033427E87C8A00C08A19 /* MineNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MineNavView.m; sourceTree = "<group>"; };
- 27F9033527E87C8B00C08A19 /* MineNavView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = MineNavView.xib; sourceTree = "<group>"; };
- 27F9033827E87FD500C08A19 /* MineBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MineBodyView.h; sourceTree = "<group>"; };
- 27F9033927E87FD500C08A19 /* MineBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MineBodyView.m; sourceTree = "<group>"; };
- 27F9033B27E87FE100C08A19 /* MineBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MineBodyView.xib; sourceTree = "<group>"; };
- 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>"; };
- C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudent_KulexiuForStudentUITests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 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>"; };
- DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_KulexiuForStudentTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
- 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>"; };
- /* End PBXFileReference section */
- /* Begin PBXFrameworksBuildPhase section */
- 275E8AA227E18F8800DD3F6E /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 82EE25CEB2BB5A0E1BB8D54B /* Pods_KulexiuForStudent.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 275E8ABD27E18F8C00DD3F6E /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 93F0FA52C8A72F83D07C15A6 /* Pods_KulexiuForStudentTests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 275E8AC727E18F8C00DD3F6E /* Frameworks */ = {
- isa = PBXFrameworksBuildPhase;
- buildActionMask = 2147483647;
- files = (
- C56C141D9D9D478077F14C1E /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework in Frameworks */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXFrameworksBuildPhase section */
- /* Begin PBXGroup section */
- 0C35B95085341A122CBEF122 /* Pods */ = {
- isa = PBXGroup;
- children = (
- 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */,
- 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */,
- 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */,
- D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */,
- 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */,
- ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */,
- );
- path = Pods;
- sourceTree = "<group>";
- };
- 2723B5D027F157D300E0B90B /* Search */ = {
- isa = PBXGroup;
- children = (
- 2723B5D127F157D300E0B90B /* Controller */,
- 2723B5D427F157D300E0B90B /* Model */,
- 2723B5D727F157D300E0B90B /* View */,
- );
- path = Search;
- sourceTree = "<group>";
- };
- 2723B5D127F157D300E0B90B /* Controller */ = {
- isa = PBXGroup;
- children = (
- 2723B5D227F157D300E0B90B /* KSSearchHistoryMessageController.h */,
- 2723B5D327F157D300E0B90B /* KSSearchHistoryMessageController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2723B5D427F157D300E0B90B /* Model */ = {
- isa = PBXGroup;
- children = (
- 2723B5D527F157D300E0B90B /* KSSearchResultModel.h */,
- 2723B5D627F157D300E0B90B /* KSSearchResultModel.m */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2723B5D727F157D300E0B90B /* View */ = {
- isa = PBXGroup;
- children = (
- 2723B5D827F157D300E0B90B /* KSSearchResultViewCell.m */,
- 2723B5D927F157D300E0B90B /* KSRCSearchBar.h */,
- 2723B5DA27F157D300E0B90B /* KSSearchRCLabel.m */,
- 2723B5DB27F157D300E0B90B /* KSRCSearchBar.m */,
- 2723B5DC27F157D300E0B90B /* KSSearchResultViewCell.h */,
- 2723B5DD27F157D300E0B90B /* KSSearchRCLabel.h */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2723B5DE27F157D400E0B90B /* GroupNotice */ = {
- isa = PBXGroup;
- children = (
- 2723B5DF27F157D400E0B90B /* Controller */,
- 2723B5E427F157D400E0B90B /* Model */,
- 2723B5E727F157D400E0B90B /* View */,
- );
- path = GroupNotice;
- sourceTree = "<group>";
- };
- 2723B5DF27F157D400E0B90B /* Controller */ = {
- isa = PBXGroup;
- children = (
- 2723B5E127F157D400E0B90B /* GroupNoticeEditController.h */,
- 2723B5E227F157D400E0B90B /* GroupNoticeEditController.m */,
- 2723B5E327F157D400E0B90B /* GroupNoticeViewController.h */,
- 2723B5E027F157D400E0B90B /* GroupNoticeViewController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2723B5E427F157D400E0B90B /* Model */ = {
- isa = PBXGroup;
- children = (
- 2723B5E527F157D400E0B90B /* GroupNoticeModel.h */,
- 2723B5E627F157D400E0B90B /* GroupNoticeModel.m */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2723B5E727F157D400E0B90B /* View */ = {
- isa = PBXGroup;
- children = (
- 2723B5E827F157D400E0B90B /* GroupNoticeCell.m */,
- 2723B5E927F157D400E0B90B /* NoticeEditBodyView.h */,
- 2723B5EA27F157D400E0B90B /* NoticeEditBodyView.xib */,
- 2723B5EB27F157D400E0B90B /* LFPopupMenu */,
- 2723B5F027F157D400E0B90B /* GroupNoticeCell.h */,
- 2723B5F127F157D400E0B90B /* NoticeEditBodyView.m */,
- 2723B5F227F157D400E0B90B /* GroupNoticeCell.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2723B5EB27F157D400E0B90B /* LFPopupMenu */ = {
- isa = PBXGroup;
- children = (
- 2723B5EC27F157D400E0B90B /* LFPopupMenuDefaultConfig.h */,
- 2723B5ED27F157D400E0B90B /* LFPopupMenu.m */,
- 2723B5EE27F157D400E0B90B /* LFPopupMenuDefaultConfig.m */,
- 2723B5EF27F157D400E0B90B /* LFPopupMenu.h */,
- );
- path = LFPopupMenu;
- sourceTree = "<group>";
- };
- 2723B5F327F157D500E0B90B /* Group */ = {
- isa = PBXGroup;
- children = (
- 2723B5F427F157D500E0B90B /* Controller */,
- 2723B5FF27F157D500E0B90B /* Model */,
- 2723B60227F157D500E0B90B /* View */,
- );
- path = Group;
- sourceTree = "<group>";
- };
- 2723B5F427F157D500E0B90B /* Controller */ = {
- isa = PBXGroup;
- children = (
- 2723B5FB27F157D500E0B90B /* GroupApplyViewController.h */,
- 2723B5F527F157D500E0B90B /* GroupApplyViewController.m */,
- 2723B5FA27F157D500E0B90B /* GroupMemberViewController.h */,
- 2723B5F627F157D500E0B90B /* GroupMemberViewController.m */,
- 2723B5F827F157D500E0B90B /* GroupSettingViewController.h */,
- 2723B5FC27F157D500E0B90B /* GroupSettingViewController.m */,
- 2723B5FE27F157D500E0B90B /* KSChatComplainController.h */,
- 2723B5F927F157D500E0B90B /* KSChatComplainController.m */,
- 2723B5FD27F157D500E0B90B /* KSSelectConversationViewController.h */,
- 2723B5F727F157D500E0B90B /* KSSelectConversationViewController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 2723B5FF27F157D500E0B90B /* Model */ = {
- isa = PBXGroup;
- children = (
- 2723B60027F157D500E0B90B /* ApplyMemberModel.m */,
- 2723B60127F157D500E0B90B /* ApplyMemberModel.h */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 2723B60227F157D500E0B90B /* View */ = {
- isa = PBXGroup;
- children = (
- 2723B60E27F157D500E0B90B /* ApplyBottomView.h */,
- 2723B60427F157D500E0B90B /* ApplyBottomView.m */,
- 2723B61427F157D500E0B90B /* ApplyBottomView.xib */,
- 2723B60327F157D500E0B90B /* ChatComplainBodyView.h */,
- 2723B60F27F157D500E0B90B /* ChatComplainBodyView.m */,
- 2723B60827F157D500E0B90B /* ChatComplainBodyView.xib */,
- 2723B61127F157D500E0B90B /* GroupApplyChooseAllCell.h */,
- 2723B60927F157D500E0B90B /* GroupApplyChooseAllCell.m */,
- 2723B60727F157D500E0B90B /* GroupApplyChooseAllCell.xib */,
- 2723B60D27F157D500E0B90B /* GroupApplyChooseCell.h */,
- 2723B61627F157D500E0B90B /* GroupApplyChooseCell.m */,
- 2723B61227F157D500E0B90B /* GroupApplyChooseCell.xib */,
- 2723B60A27F157D500E0B90B /* GroupApplyMemberCell.h */,
- 2723B61027F157D500E0B90B /* GroupApplyMemberCell.m */,
- 2723B60527F157D500E0B90B /* GroupApplyMemberCell.xib */,
- 2723B60627F157D500E0B90B /* GroupMemberListCell.h */,
- 2723B61327F157D500E0B90B /* GroupMemberListCell.m */,
- 2723B61727F157D500E0B90B /* GroupMemberListCell.xib */,
- 2723B61527F157D500E0B90B /* GroupSettingBodyView.h */,
- 2723B60B27F157D500E0B90B /* GroupSettingBodyView.m */,
- 2723B60C27F157D500E0B90B /* GroupSettingBodyView.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2723B63D27F15B5800E0B90B /* SCIndexView */ = {
- isa = PBXGroup;
- children = (
- 2723B63E27F15B5800E0B90B /* SCIndexViewConfiguration.m */,
- 2723B63F27F15B5800E0B90B /* UITableView+SCIndexView.h */,
- 2723B64027F15B5800E0B90B /* SCIndexView.m */,
- 2723B64127F15B5800E0B90B /* SCIndexViewConfiguration.h */,
- 2723B64227F15B5800E0B90B /* UITableView+SCIndexView.m */,
- 2723B64327F15B5800E0B90B /* SCIndexView.h */,
- );
- path = SCIndexView;
- sourceTree = "<group>";
- };
- 275E8A9C27E18F8800DD3F6E = {
- isa = PBXGroup;
- children = (
- 275E8AA727E18F8800DD3F6E /* KulexiuForStudent */,
- 275E8AC327E18F8C00DD3F6E /* KulexiuForStudentTests */,
- 275E8ACD27E18F8C00DD3F6E /* KulexiuForStudentUITests */,
- 275E8AA627E18F8800DD3F6E /* Products */,
- 0C35B95085341A122CBEF122 /* Pods */,
- 9BF683910A95A690331EF86A /* Frameworks */,
- );
- sourceTree = "<group>";
- };
- 275E8AA627E18F8800DD3F6E /* Products */ = {
- isa = PBXGroup;
- children = (
- 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */,
- 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */,
- 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */,
- );
- name = Products;
- sourceTree = "<group>";
- };
- 275E8AA727E18F8800DD3F6E /* KulexiuForStudent */ = {
- isa = PBXGroup;
- children = (
- 275FA1F027E7356A00CFEA2E /* Module */,
- 2779336127E3249C0010E277 /* Common */,
- 275E8AA827E18F8800DD3F6E /* AppDelegate.h */,
- 275E8AA927E18F8800DD3F6E /* AppDelegate.m */,
- 275E8AAE27E18F8800DD3F6E /* ViewController.h */,
- 275E8AAF27E18F8800DD3F6E /* ViewController.m */,
- 275E8AB127E18F8800DD3F6E /* Main.storyboard */,
- 275E8AB427E18F8B00DD3F6E /* Assets.xcassets */,
- 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */,
- 275E8AB927E18F8B00DD3F6E /* Info.plist */,
- 275E8ABA27E18F8B00DD3F6E /* main.m */,
- );
- path = KulexiuForStudent;
- sourceTree = "<group>";
- };
- 275E8AC327E18F8C00DD3F6E /* KulexiuForStudentTests */ = {
- isa = PBXGroup;
- children = (
- 275E8AC427E18F8C00DD3F6E /* KulexiuForStudentTests.m */,
- );
- path = KulexiuForStudentTests;
- sourceTree = "<group>";
- };
- 275E8ACD27E18F8C00DD3F6E /* KulexiuForStudentUITests */ = {
- isa = PBXGroup;
- children = (
- 275E8ACE27E18F8C00DD3F6E /* KulexiuForStudentUITests.m */,
- 275E8AD027E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m */,
- );
- path = KulexiuForStudentUITests;
- sourceTree = "<group>";
- };
- 275FA1F027E7356A00CFEA2E /* Module */ = {
- isa = PBXGroup;
- children = (
- 275FA1F127E7356A00CFEA2E /* Home */,
- 275FA1F727E7356A00CFEA2E /* Course */,
- 275FA1FD27E7356B00CFEA2E /* Chat */,
- 275FA20327E7356B00CFEA2E /* Mine */,
- 275FA20927E7356B00CFEA2E /* Mall */,
- 275FA20F27E7356B00CFEA2E /* Login */,
- );
- path = Module;
- sourceTree = "<group>";
- };
- 275FA1F127E7356A00CFEA2E /* Home */ = {
- isa = PBXGroup;
- children = (
- 275FA1F227E7356A00CFEA2E /* Controller */,
- 275FA1F527E7356A00CFEA2E /* Model */,
- 275FA1F627E7356A00CFEA2E /* View */,
- );
- path = Home;
- sourceTree = "<group>";
- };
- 275FA1F227E7356A00CFEA2E /* Controller */ = {
- isa = PBXGroup;
- children = (
- 275FA1F327E7356A00CFEA2E /* HomeViewController.m */,
- 275FA1F427E7356A00CFEA2E /* HomeViewController.h */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 275FA1F527E7356A00CFEA2E /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 275FA1F627E7356A00CFEA2E /* View */ = {
- isa = PBXGroup;
- children = (
- );
- path = View;
- sourceTree = "<group>";
- };
- 275FA1F727E7356A00CFEA2E /* Course */ = {
- isa = PBXGroup;
- children = (
- 275FA1F827E7356A00CFEA2E /* Controller */,
- 275FA1FB27E7356B00CFEA2E /* Model */,
- 275FA1FC27E7356B00CFEA2E /* View */,
- );
- path = Course;
- sourceTree = "<group>";
- };
- 275FA1F827E7356A00CFEA2E /* Controller */ = {
- isa = PBXGroup;
- children = (
- 275FA1F927E7356A00CFEA2E /* CourseViewController.h */,
- 275FA1FA27E7356B00CFEA2E /* CourseViewController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 275FA1FB27E7356B00CFEA2E /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 275FA1FC27E7356B00CFEA2E /* View */ = {
- isa = PBXGroup;
- children = (
- );
- path = View;
- sourceTree = "<group>";
- };
- 275FA1FD27E7356B00CFEA2E /* Chat */ = {
- isa = PBXGroup;
- children = (
- 2723B5F327F157D500E0B90B /* Group */,
- 2723B5DE27F157D400E0B90B /* GroupNotice */,
- 2723B5D027F157D300E0B90B /* Search */,
- 275FA1FE27E7356B00CFEA2E /* Controller */,
- 275FA20127E7356B00CFEA2E /* Model */,
- 275FA20227E7356B00CFEA2E /* View */,
- );
- path = Chat;
- sourceTree = "<group>";
- };
- 275FA1FE27E7356B00CFEA2E /* Controller */ = {
- isa = PBXGroup;
- children = (
- 275FA20027E7356B00CFEA2E /* ChatViewController.h */,
- 275FA1FF27E7356B00CFEA2E /* ChatViewController.m */,
- 2723B59D27F1577F00E0B90B /* ChatAddressViewController.h */,
- 2723B5A027F1578100E0B90B /* ChatAddressViewController.m */,
- 2723B59A27F1577E00E0B90B /* CreateFansGroupViewController.h */,
- 2723B59B27F1577E00E0B90B /* CreateFansGroupViewController.m */,
- 2723B5A127F1578200E0B90B /* KSChatConversationViewController.h */,
- 2723B59E27F1578000E0B90B /* KSChatConversationViewController.m */,
- 2723B59F27F1578100E0B90B /* KSChatListViewController.h */,
- 2723B59C27F1577F00E0B90B /* KSChatListViewController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 275FA20127E7356B00CFEA2E /* Model */ = {
- isa = PBXGroup;
- children = (
- 2723B5C927F157BA00E0B90B /* GroupListModel.h */,
- 2723B5C827F157B900E0B90B /* GroupListModel.m */,
- 2723B5CB27F157BD00E0B90B /* GroupMemberModel.h */,
- 2723B5CC27F157BE00E0B90B /* GroupMemberModel.m */,
- 2723B5C727F157B800E0B90B /* KSRCloudMediaManager.h */,
- 2723B5CA27F157BB00E0B90B /* KSRCloudMediaManager.m */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 275FA20227E7356B00CFEA2E /* View */ = {
- isa = PBXGroup;
- children = (
- 2723B5B027F157AB00E0B90B /* ChatAddressBodyView.h */,
- 2723B5A727F157A300E0B90B /* ChatAddressBodyView.m */,
- 2723B5B627F157AF00E0B90B /* ChatAddressHeaderView.h */,
- 2723B5AE27F157A900E0B90B /* ChatAddressHeaderView.m */,
- 2723B5A627F157A200E0B90B /* ChatAddressHeaderView.xib */,
- 2723B5B527F157AF00E0B90B /* ChatNavView.h */,
- 2723B5AA27F157A500E0B90B /* ChatNavView.m */,
- 2723B5B227F157AD00E0B90B /* ChatNavView.xib */,
- 2723B5AD27F157A700E0B90B /* ContractListCell.h */,
- 2723B5AF27F157AA00E0B90B /* ContractListCell.m */,
- 2723B5B727F157B000E0B90B /* ContractListCell.xib */,
- 2723B5B827F157B000E0B90B /* GroupCreateView.h */,
- 2723B5A827F157A300E0B90B /* GroupCreateView.m */,
- 2723B5AB27F157A500E0B90B /* GroupCreateView.xib */,
- 2723B5B327F157AE00E0B90B /* GroupListViewCell.h */,
- 2723B5B927F157B100E0B90B /* GroupListViewCell.m */,
- 2723B5B127F157AD00E0B90B /* GroupListViewCell.xib */,
- 2723B5AC27F157A600E0B90B /* KSChatListSearchView.h */,
- 2723B5A927F157A400E0B90B /* KSChatListSearchView.m */,
- 2723B5B427F157AE00E0B90B /* KSChatListSearchView.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 275FA20327E7356B00CFEA2E /* Mine */ = {
- isa = PBXGroup;
- children = (
- 27F9031B27E87C2D00C08A19 /* DeviceCheck */,
- 27F9030F27E87C2C00C08A19 /* Networking */,
- 27F9032327E87C2E00C08A19 /* Setting */,
- 275FA20427E7356B00CFEA2E /* Controller */,
- 275FA20727E7356B00CFEA2E /* Model */,
- 275FA20827E7356B00CFEA2E /* View */,
- );
- path = Mine;
- sourceTree = "<group>";
- };
- 275FA20427E7356B00CFEA2E /* Controller */ = {
- isa = PBXGroup;
- children = (
- 275FA20527E7356B00CFEA2E /* MineViewController.h */,
- 275FA20627E7356B00CFEA2E /* MineViewController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 275FA20727E7356B00CFEA2E /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 275FA20827E7356B00CFEA2E /* View */ = {
- isa = PBXGroup;
- children = (
- 27F9033327E87C8A00C08A19 /* MineNavView.h */,
- 27F9033427E87C8A00C08A19 /* MineNavView.m */,
- 27F9033527E87C8B00C08A19 /* MineNavView.xib */,
- 27F9033827E87FD500C08A19 /* MineBodyView.h */,
- 27F9033927E87FD500C08A19 /* MineBodyView.m */,
- 27F9033B27E87FE100C08A19 /* MineBodyView.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 275FA20927E7356B00CFEA2E /* Mall */ = {
- isa = PBXGroup;
- children = (
- 275FA20A27E7356B00CFEA2E /* Controller */,
- 275FA20D27E7356B00CFEA2E /* Model */,
- 275FA20E27E7356B00CFEA2E /* View */,
- );
- path = Mall;
- sourceTree = "<group>";
- };
- 275FA20A27E7356B00CFEA2E /* Controller */ = {
- isa = PBXGroup;
- children = (
- 275FA20B27E7356B00CFEA2E /* ShopMallViewController.m */,
- 275FA20C27E7356B00CFEA2E /* ShopMallViewController.h */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 275FA20D27E7356B00CFEA2E /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 275FA20E27E7356B00CFEA2E /* View */ = {
- isa = PBXGroup;
- children = (
- );
- path = View;
- sourceTree = "<group>";
- };
- 275FA20F27E7356B00CFEA2E /* Login */ = {
- isa = PBXGroup;
- children = (
- 275FA21027E7356B00CFEA2E /* Controller */,
- 275FA21927E7356B00CFEA2E /* Model */,
- 275FA21E27E7356B00CFEA2E /* View */,
- );
- path = Login;
- sourceTree = "<group>";
- };
- 275FA21027E7356B00CFEA2E /* Controller */ = {
- isa = PBXGroup;
- children = (
- 275FA21727E7356B00CFEA2E /* FirstSettingViewController.h */,
- 275FA21227E7356B00CFEA2E /* FirstSettingViewController.m */,
- 275FA21627E7356B00CFEA2E /* LoginViewController.h */,
- 275FA21327E7356B00CFEA2E /* LoginViewController.m */,
- 275FA21527E7356B00CFEA2E /* PasswordLoginController.h */,
- 275FA21127E7356B00CFEA2E /* PasswordLoginController.m */,
- 275FA21827E7356B00CFEA2E /* VefiCodeLoginController.h */,
- 275FA21427E7356B00CFEA2E /* VefiCodeLoginController.m */,
- 275FA23E27E737EE00CFEA2E /* ChooseInsturmentViewController.h */,
- 275FA23F27E737EE00CFEA2E /* ChooseInsturmentViewController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 275FA21927E7356B00CFEA2E /* Model */ = {
- isa = PBXGroup;
- children = (
- 275FA21D27E7356B00CFEA2E /* UserInfo.h */,
- 275FA21A27E7356B00CFEA2E /* UserInfo.m */,
- 275FA21B27E7356B00CFEA2E /* UserInfoManager.h */,
- 275FA21C27E7356B00CFEA2E /* UserInfoManager.m */,
- );
- path = Model;
- sourceTree = "<group>";
- };
- 275FA21E27E7356B00CFEA2E /* View */ = {
- isa = PBXGroup;
- children = (
- 275FA21F27E7356B00CFEA2E /* FirstSettingBodyView.h */,
- 275FA22527E7356B00CFEA2E /* FirstSettingBodyView.m */,
- 275FA22227E7356B00CFEA2E /* FirstSettingBodyView.xib */,
- 275FA22627E7356B00CFEA2E /* LoginBodyView.h */,
- 275FA22027E7356B00CFEA2E /* LoginBodyView.m */,
- 275FA22127E7356B00CFEA2E /* LoginBodyView.xib */,
- 275FA22427E7356B00CFEA2E /* PasswordBodyView.h */,
- 275FA22827E7356B00CFEA2E /* PasswordBodyView.m */,
- 275FA22A27E7356B00CFEA2E /* PasswordBodyView.xib */,
- 275FA22327E7356B00CFEA2E /* VefiBodyView.h */,
- 275FA22927E7356B00CFEA2E /* VefiBodyView.m */,
- 275FA22727E7356B00CFEA2E /* VefiBodyView.xib */,
- 275FA24127E73DF600CFEA2E /* InstrumentDescView.h */,
- 275FA24227E73DF600CFEA2E /* InstrumentDescView.m */,
- 275FA24427E73E0000CFEA2E /* InstrumentDescView.xib */,
- 275FA24627E7428200CFEA2E /* InstrumentChooseView.h */,
- 275FA24727E7428200CFEA2E /* InstrumentChooseView.m */,
- 275FA24927E7428D00CFEA2E /* InstrumentChooseView.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 2779336127E3249C0010E277 /* Common */ = {
- isa = PBXGroup;
- children = (
- 2779336227E3249C0010E277 /* Tools */,
- 2779346A27E324A10010E277 /* Define */,
- 2779346E27E324A10010E277 /* ThirdPart */,
- 2779350B27E324A40010E277 /* Base */,
- );
- path = Common;
- sourceTree = "<group>";
- };
- 2779336227E3249C0010E277 /* Tools */ = {
- isa = PBXGroup;
- children = (
- 275FA1AA27E734C500CFEA2E /* KSImageAlert.h */,
- 275FA1AC27E734C600CFEA2E /* KSImageAlert.m */,
- 275FA1AB27E734C600CFEA2E /* KSImageAlert.xib */,
- 2779336327E3249C0010E277 /* NetworkingAccessibity */,
- 2779336627E3249C0010E277 /* SafeControl */,
- 2779337627E3249C0010E277 /* Extension */,
- 277933B627E3249E0010E277 /* Category */,
- 277933DB27E3249E0010E277 /* VideoEditor */,
- 277933DE27E3249E0010E277 /* GifRefresh */,
- 277933E327E3249E0010E277 /* AudioSessionManager */,
- 277933E627E3249F0010E277 /* VoNetworking */,
- 277933F427E3249F0010E277 /* DiskSizeManager */,
- 277933F727E3249F0010E277 /* MicAlert */,
- 277933FB27E3249F0010E277 /* Custom */,
- 2779346327E324A10010E277 /* ArchiveTools */,
- );
- path = Tools;
- sourceTree = "<group>";
- };
- 2779336327E3249C0010E277 /* NetworkingAccessibity */ = {
- isa = PBXGroup;
- children = (
- 2779336427E3249C0010E277 /* KSNetworkAccessibleManager.h */,
- 2779336527E3249C0010E277 /* KSNetworkAccessibleManager.m */,
- );
- path = NetworkingAccessibity;
- sourceTree = "<group>";
- };
- 2779336627E3249C0010E277 /* SafeControl */ = {
- isa = PBXGroup;
- children = (
- 2779336727E3249C0010E277 /* KSSafeObject.h */,
- 2779336827E3249C0010E277 /* NSObject+KSSwizzling.h */,
- 2779336927E3249C0010E277 /* NSDictionary+KSSafe.m */,
- 2779336A27E3249C0010E277 /* NSObject+KSImpChangeTool.h */,
- 2779336B27E3249C0010E277 /* NSMutableDictionary+KSSafe.m */,
- 2779336C27E3249C0010E277 /* NSMutableString+KSSafe.h */,
- 2779336D27E3249C0010E277 /* NSArray+KSSafe.m */,
- 2779336E27E3249C0010E277 /* NSMutableArray+KSSafe.m */,
- 2779336F27E3249C0010E277 /* NSDictionary+KSSafe.h */,
- 2779337027E3249C0010E277 /* NSObject+KSSwizzling.m */,
- 2779337127E3249C0010E277 /* NSObject+KSImpChangeTool.m */,
- 2779337227E3249C0010E277 /* NSMutableArray+KSSafe.h */,
- 2779337327E3249C0010E277 /* NSArray+KSSafe.h */,
- 2779337427E3249C0010E277 /* NSMutableString+KSSafe.m */,
- 2779337527E3249C0010E277 /* NSMutableDictionary+KSSafe.h */,
- );
- path = SafeControl;
- sourceTree = "<group>";
- };
- 2779337627E3249C0010E277 /* Extension */ = {
- isa = PBXGroup;
- children = (
- 2779337727E3249C0010E277 /* NSObject+AssociatedObject.m */,
- 2779337827E3249C0010E277 /* UIView+Hints.h */,
- 2779337927E3249C0010E277 /* UIControl+ButtonAction.m */,
- 2779337A27E3249D0010E277 /* UIDevice+zhDeviceType.m */,
- 2779337B27E3249D0010E277 /* NSString+zh_SafeAccess.m */,
- 2779337C27E3249D0010E277 /* NSDictionary+Extension.h */,
- 2779337D27E3249D0010E277 /* UIViewController+zhStatusBarStyle.m */,
- 2779337E27E3249D0010E277 /* UITextView+ZWPlaceHolder.m */,
- 2779337F27E3249D0010E277 /* NSString+CZHSizeExtension.h */,
- 2779338027E3249D0010E277 /* CALayer+Color.m */,
- 2779338127E3249D0010E277 /* NSDate+Transform.h */,
- 2779338227E3249D0010E277 /* NSMutableAttributedString+CZHExtention.m */,
- 2779338327E3249D0010E277 /* NSString+Extension.h */,
- 2779338427E3249D0010E277 /* UITextView+ZWLimitCounter.m */,
- 2779338527E3249D0010E277 /* UILabel+Extension.m */,
- 2779338627E3249D0010E277 /* NSDate+Extension.h */,
- 2779338727E3249D0010E277 /* KSUtilities.m */,
- 2779338827E3249D0010E277 /* Pinyin */,
- 2779338B27E3249D0010E277 /* UIImage+Color.h */,
- 2779338C27E3249D0010E277 /* CALayer+Layout.h */,
- 2779338D27E3249D0010E277 /* NSObject+ReadDocument.h */,
- 2779338E27E3249D0010E277 /* UIAlertController+Extend.m */,
- 2779338F27E3249D0010E277 /* UIImageView+CornerRadius.h */,
- 2779339027E3249D0010E277 /* UIScreen+Extend.h */,
- 2779339127E3249D0010E277 /* NSArray+zh_SafeAccess.m */,
- 2779339227E3249D0010E277 /* UIColor+Extend.m */,
- 2779339327E3249D0010E277 /* zhPopupController.m */,
- 2779339427E3249D0010E277 /* UIView+Dealloc.m */,
- 2779339527E3249D0010E277 /* NSObject+Parse.m */,
- 2779339627E3249D0010E277 /* UIView+AddConstraints.m */,
- 2779339727E3249D0010E277 /* UIView+KSExtension.h */,
- 2779339827E3249D0010E277 /* NSString+CZHSizeExtension.m */,
- 2779339927E3249D0010E277 /* UITextView+ZWPlaceHolder.h */,
- 2779339A27E3249D0010E277 /* NSDictionary+Extension.m */,
- 2779339B27E3249D0010E277 /* UIViewController+zhStatusBarStyle.h */,
- 2779339C27E3249D0010E277 /* NSString+zh_SafeAccess.h */,
- 2779339D27E3249D0010E277 /* UIDevice+zhDeviceType.h */,
- 2779339E27E3249D0010E277 /* UIControl+ButtonAction.h */,
- 2779339F27E3249D0010E277 /* UIView+Hints.m */,
- 277933A027E3249D0010E277 /* NSObject+AssociatedObject.h */,
- 277933A127E3249D0010E277 /* KSUtilities.h */,
- 277933A227E3249D0010E277 /* UILabel+Extension.h */,
- 277933A327E3249D0010E277 /* NSDate+Extension.m */,
- 277933A427E3249D0010E277 /* UITextView+ZWLimitCounter.h */,
- 277933A527E3249D0010E277 /* NSString+Extension.m */,
- 277933A627E3249D0010E277 /* NSDate+Transform.m */,
- 277933A727E3249D0010E277 /* NSMutableAttributedString+CZHExtention.h */,
- 277933A827E3249D0010E277 /* CALayer+Color.h */,
- 277933A927E3249D0010E277 /* UIScreen+Extend.m */,
- 277933AA27E3249D0010E277 /* UIAlertController+Extend.h */,
- 277933AB27E3249D0010E277 /* UIImageView+CornerRadius.m */,
- 277933AC27E3249E0010E277 /* NSObject+ReadDocument.m */,
- 277933AD27E3249E0010E277 /* CALayer+Layout.m */,
- 277933AE27E3249E0010E277 /* UIImage+Color.m */,
- 277933AF27E3249E0010E277 /* UIView+KSExtension.m */,
- 277933B027E3249E0010E277 /* NSObject+Parse.h */,
- 277933B127E3249E0010E277 /* UIView+AddConstraints.h */,
- 277933B227E3249E0010E277 /* UIView+Dealloc.h */,
- 277933B327E3249E0010E277 /* zhPopupController.h */,
- 277933B427E3249E0010E277 /* UIColor+Extend.h */,
- 277933B527E3249E0010E277 /* NSArray+zh_SafeAccess.h */,
- );
- path = Extension;
- sourceTree = "<group>";
- };
- 2779338827E3249D0010E277 /* Pinyin */ = {
- isa = PBXGroup;
- children = (
- 2779338927E3249D0010E277 /* pinyin.h */,
- 2779338A27E3249D0010E277 /* pinyin.c */,
- );
- path = Pinyin;
- sourceTree = "<group>";
- };
- 277933B627E3249E0010E277 /* Category */ = {
- isa = PBXGroup;
- children = (
- 277933BD27E3249E0010E277 /* MBProgressHUD+KSShow.h */,
- 277933D727E3249E0010E277 /* MBProgressHUD+KSShow.m */,
- 277933D027E3249E0010E277 /* NSObject+AutoProperty.h */,
- 277933C527E3249E0010E277 /* NSObject+AutoProperty.m */,
- 277933C027E3249E0010E277 /* NSObject+ReadDocument.h */,
- 277933D527E3249E0010E277 /* NSObject+ReadDocument.m */,
- 277933C327E3249E0010E277 /* UIButton+EnlargeEdge.h */,
- 277933D127E3249E0010E277 /* UIButton+EnlargeEdge.m */,
- 277933D227E3249E0010E277 /* UIButton+HasChooseImage.h */,
- 277933C427E3249E0010E277 /* UIButton+HasChooseImage.m */,
- 277933CC27E3249E0010E277 /* UIButton+Property.h */,
- 277933BA27E3249E0010E277 /* UIButton+Property.m */,
- 277933CA27E3249E0010E277 /* UIDevice+TFDevice.h */,
- 277933BC27E3249E0010E277 /* UIDevice+TFDevice.m */,
- 277933D627E3249E0010E277 /* UIImage+Property.h */,
- 277933BF27E3249E0010E277 /* UIImage+Property.m */,
- 277933C727E3249E0010E277 /* UIImage+Resize.h */,
- 277933DA27E3249E0010E277 /* UIImage+Resize.m */,
- 277933D327E3249E0010E277 /* UIImage+ResizeImage.h */,
- 277933C227E3249E0010E277 /* UIImage+ResizeImage.m */,
- 277933CF27E3249E0010E277 /* UIImage+UIImageScale.h */,
- 277933C627E3249E0010E277 /* UIImage+UIImageScale.m */,
- 277933CE27E3249E0010E277 /* UILabel+QWTopLeftLabel.h */,
- 277933B827E3249E0010E277 /* UILabel+QWTopLeftLabel.m */,
- 277933CB27E3249E0010E277 /* UIScrollView+KSTouch.h */,
- 277933BB27E3249E0010E277 /* UIScrollView+KSTouch.m */,
- 277933D927E3249E0010E277 /* UIView+Animation.h */,
- 277933C827E3249E0010E277 /* UIView+Animation.m */,
- 277933D827E3249E0010E277 /* UIView+KSLayer.h */,
- 277933BE27E3249E0010E277 /* UIView+KSLayer.m */,
- 277933D427E3249E0010E277 /* UIView+ShowProgress.h */,
- 277933C127E3249E0010E277 /* UIView+ShowProgress.m */,
- 277933C927E3249E0010E277 /* UIView+XIBView.h */,
- 277933B727E3249E0010E277 /* UIView+XIBView.m */,
- 277933CD27E3249E0010E277 /* UrlDecode.h */,
- 277933B927E3249E0010E277 /* UrlDecode.m */,
- );
- path = Category;
- sourceTree = "<group>";
- };
- 277933DB27E3249E0010E277 /* VideoEditor */ = {
- isa = PBXGroup;
- children = (
- 277933DC27E3249E0010E277 /* KSVideoEditor.h */,
- 277933DD27E3249E0010E277 /* KSVideoEditor.m */,
- );
- path = VideoEditor;
- sourceTree = "<group>";
- };
- 277933DE27E3249E0010E277 /* GifRefresh */ = {
- isa = PBXGroup;
- children = (
- 277933DF27E3249E0010E277 /* KSGifRefreshHeader.m */,
- 277933E027E3249E0010E277 /* KSGifRefreshFooter.m */,
- 277933E127E3249E0010E277 /* KSGifRefreshFooter.h */,
- 277933E227E3249E0010E277 /* KSGifRefreshHeader.h */,
- );
- path = GifRefresh;
- sourceTree = "<group>";
- };
- 277933E327E3249E0010E277 /* AudioSessionManager */ = {
- isa = PBXGroup;
- children = (
- 277933E427E3249E0010E277 /* KSAudioSessionManager.m */,
- 277933E527E3249F0010E277 /* KSAudioSessionManager.h */,
- );
- path = AudioSessionManager;
- sourceTree = "<group>";
- };
- 277933E627E3249F0010E277 /* VoNetworking */ = {
- isa = PBXGroup;
- children = (
- 277933E727E3249F0010E277 /* VoNetWorking.h */,
- 277933E827E3249F0010E277 /* Cache */,
- 277933F127E3249F0010E277 /* VoNetworking+RequestManager.m */,
- 277933F227E3249F0010E277 /* VoNetWorking.m */,
- 277933F327E3249F0010E277 /* VoNetworking+RequestManager.h */,
- );
- path = VoNetworking;
- sourceTree = "<group>";
- };
- 277933E827E3249F0010E277 /* Cache */ = {
- isa = PBXGroup;
- children = (
- 277933E927E3249F0010E277 /* VoLRUManager.m */,
- 277933EA27E3249F0010E277 /* VoMemoryCache.h */,
- 277933EB27E3249F0010E277 /* VoDiskCache.m */,
- 277933EC27E3249F0010E277 /* VoCacheManager.m */,
- 277933ED27E3249F0010E277 /* VoLRUManager.h */,
- 277933EE27E3249F0010E277 /* VoMemoryCache.m */,
- 277933EF27E3249F0010E277 /* VoCacheManager.h */,
- 277933F027E3249F0010E277 /* VoDiskCache.h */,
- );
- path = Cache;
- sourceTree = "<group>";
- };
- 277933F427E3249F0010E277 /* DiskSizeManager */ = {
- isa = PBXGroup;
- children = (
- 277933F527E3249F0010E277 /* DiskFreeSpaceManager.m */,
- 277933F627E3249F0010E277 /* DiskFreeSpaceManager.h */,
- );
- path = DiskSizeManager;
- sourceTree = "<group>";
- };
- 277933F727E3249F0010E277 /* MicAlert */ = {
- isa = PBXGroup;
- children = (
- 277933F827E3249F0010E277 /* KSPremissionAlert.m */,
- 277933F927E3249F0010E277 /* KSPremissionAlert.xib */,
- 277933FA27E3249F0010E277 /* KSPremissionAlert.h */,
- );
- path = MicAlert;
- sourceTree = "<group>";
- };
- 277933FB27E3249F0010E277 /* Custom */ = {
- isa = PBXGroup;
- children = (
- 277933FC27E3249F0010E277 /* UIImage+Addtions.m */,
- 277933FD27E3249F0010E277 /* GRCreateManager.m */,
- 277933FE27E3249F0010E277 /* GRScanManager.h */,
- 277933FF27E3249F0010E277 /* ShoppCatView.h */,
- 2779340027E3249F0010E277 /* QCCountdownButton */,
- 2779340327E3249F0010E277 /* LifeButton.h */,
- 2779340427E3249F0010E277 /* KSStatusView.m */,
- 2779340527E3249F0010E277 /* prodectButton.h */,
- 2779340627E3249F0010E277 /* StoreButton.h */,
- 2779340727E3249F0010E277 /* KSChoosePicker.m */,
- 2779340827E3249F0010E277 /* PressRecord */,
- 2779341527E3249F0010E277 /* HomeButton.m */,
- 2779341627E3249F0010E277 /* KSImageButton.h */,
- 2779341727E3249F0010E277 /* KSFullDatePicker.m */,
- 2779341827E3249F0010E277 /* NSString+phone.h */,
- 2779341927E3249F0010E277 /* KSMediaManager.m */,
- 2779341A27E3249F0010E277 /* ShopMessBtn.m */,
- 2779341B27E324A00010E277 /* UIColor+Hex.m */,
- 2779341C27E324A00010E277 /* shopview.m */,
- 2779341D27E324A00010E277 /* YKMultiLevelTableView */,
- 2779342227E324A00010E277 /* pickBut.m */,
- 2779342327E324A00010E277 /* KSMessageInputView.h */,
- 2779342427E324A00010E277 /* NSString+MD5.h */,
- 2779342527E324A00010E277 /* ShopButton.h */,
- 2779342627E324A00010E277 /* MBProgressHUD+NJ.m */,
- 2779342727E324A00010E277 /* PIckView.h */,
- 2779342827E324A00010E277 /* StoreShopCaterview.m */,
- 2779342927E324A00010E277 /* KSInputView */,
- 2779343327E324A00010E277 /* NSDate+KSBaseDatePicker.h */,
- 2779343427E324A00010E277 /* SearchView.m */,
- 2779343527E324A00010E277 /* StateView.h */,
- 2779343627E324A00010E277 /* sortButton.h */,
- 2779343727E324A00010E277 /* KSInputView.h */,
- 2779343827E324A00010E277 /* KeyChainTools.h */,
- 2779343927E324A00010E277 /* KSStatusView.h */,
- 2779343A27E324A00010E277 /* prodectButton.m */,
- 2779343B27E324A00010E277 /* StoreButton.m */,
- 2779343C27E324A00010E277 /* LifeButton.m */,
- 2779343D27E324A00010E277 /* ShoppCatView.m */,
- 2779343E27E324A00010E277 /* GRScanManager.m */,
- 2779343F27E324A00010E277 /* GRCreateManager.h */,
- 2779344027E324A00010E277 /* UIImage+Addtions.h */,
- 2779344127E324A00010E277 /* UIColor+Hex.h */,
- 2779344227E324A00010E277 /* ShopMessBtn.h */,
- 2779344327E324A00010E277 /* KSMediaManager.h */,
- 2779344427E324A00010E277 /* NSString+phone.m */,
- 2779344527E324A00010E277 /* KSFullDatePicker.h */,
- 2779344627E324A00010E277 /* KSImageButton.m */,
- 2779344727E324A00010E277 /* HomeButton.h */,
- 2779344827E324A00010E277 /* KSChoosePicker.h */,
- 2779344927E324A00010E277 /* PIckView.m */,
- 2779344A27E324A00010E277 /* MBProgressHUD+NJ.h */,
- 2779344B27E324A00010E277 /* ShopButton.m */,
- 2779344C27E324A00010E277 /* NSString+MD5.m */,
- 2779344D27E324A00010E277 /* KSMessageInputView.m */,
- 2779344E27E324A00010E277 /* pickBut.h */,
- 2779344F27E324A00010E277 /* shopview.h */,
- 2779345027E324A00010E277 /* KSInputView.m */,
- 2779345127E324A00010E277 /* KeyChainTools.m */,
- 2779345227E324A00010E277 /* sortButton.m */,
- 2779345327E324A00010E277 /* StateView.m */,
- 2779345427E324A00010E277 /* NSDate+KSBaseDatePicker.m */,
- 2779345527E324A00010E277 /* SearchView.h */,
- 2779345627E324A00010E277 /* LLPhotoBrowser */,
- 2779346227E324A10010E277 /* StoreShopCaterview.h */,
- );
- path = Custom;
- sourceTree = "<group>";
- };
- 2779340027E3249F0010E277 /* QCCountdownButton */ = {
- isa = PBXGroup;
- children = (
- 2779340127E3249F0010E277 /* QCCountdownButton.m */,
- 2779340227E3249F0010E277 /* QCCountdownButton.h */,
- );
- path = QCCountdownButton;
- sourceTree = "<group>";
- };
- 2779340827E3249F0010E277 /* PressRecord */ = {
- isa = PBXGroup;
- children = (
- 2779340927E3249F0010E277 /* KSAudioRecordManager.h */,
- 2779340A27E3249F0010E277 /* KSRecordStatusView.h */,
- 2779340B27E3249F0010E277 /* KSHoldButton.m */,
- 2779340C27E3249F0010E277 /* KSRecordPowerAnimationView.h */,
- 2779340D27E3249F0010E277 /* KSAudioRecordFileManager.m */,
- 2779340E27E3249F0010E277 /* UIView+ValueAdd.m */,
- 2779340F27E3249F0010E277 /* KSRecordStatusView.m */,
- 2779341027E3249F0010E277 /* KSAudioRecordManager.m */,
- 2779341127E3249F0010E277 /* KSHoldButton.h */,
- 2779341227E3249F0010E277 /* UIView+ValueAdd.h */,
- 2779341327E3249F0010E277 /* KSRecordPowerAnimationView.m */,
- 2779341427E3249F0010E277 /* KSAudioRecordFileManager.h */,
- );
- path = PressRecord;
- sourceTree = "<group>";
- };
- 2779341D27E324A00010E277 /* YKMultiLevelTableView */ = {
- isa = PBXGroup;
- children = (
- 2779341E27E324A00010E277 /* YKMultiLevelTableView.m */,
- 2779341F27E324A00010E277 /* YKNodeModel.m */,
- 2779342027E324A00010E277 /* YKNodeModel.h */,
- 2779342127E324A00010E277 /* YKMultiLevelTableView.h */,
- );
- path = YKMultiLevelTableView;
- sourceTree = "<group>";
- };
- 2779342927E324A00010E277 /* KSInputView */ = {
- isa = PBXGroup;
- children = (
- 2779342A27E324A00010E277 /* UITextField_Toolbar.m */,
- 2779342B27E324A00010E277 /* SkipTextField.m */,
- 2779342C27E324A00010E277 /* SkipTextProtocol.h */,
- 2779342D27E324A00010E277 /* SkipTextView.h */,
- 2779342E27E324A00010E277 /* UITextView_Toolbar.m */,
- 2779342F27E324A00010E277 /* UITextField_Toolbar.h */,
- 2779343027E324A00010E277 /* SkipTextField.h */,
- 2779343127E324A00010E277 /* SkipTextView.m */,
- 2779343227E324A00010E277 /* UITextView_Toolbar.h */,
- );
- path = KSInputView;
- sourceTree = "<group>";
- };
- 2779345627E324A00010E277 /* LLPhotoBrowser */ = {
- isa = PBXGroup;
- children = (
- 2779345727E324A10010E277 /* LLPhotoBrowser.m */,
- 2779345827E324A10010E277 /* LLCollectionViewCell.h */,
- 2779345927E324A10010E277 /* LLClasses */,
- 2779345E27E324A10010E277 /* LLPhoto.m */,
- 2779345F27E324A10010E277 /* LLCollectionViewCell.m */,
- 2779346027E324A10010E277 /* LLPhotoBrowser.h */,
- 2779346127E324A10010E277 /* LLPhoto.h */,
- );
- path = LLPhotoBrowser;
- sourceTree = "<group>";
- };
- 2779345927E324A10010E277 /* LLClasses */ = {
- isa = PBXGroup;
- children = (
- 2779345A27E324A10010E277 /* LLImageCache.m */,
- 2779345B27E324A10010E277 /* LLFileManager.m */,
- 2779345C27E324A10010E277 /* LLImageCache.h */,
- 2779345D27E324A10010E277 /* LLFileManager.h */,
- );
- path = LLClasses;
- sourceTree = "<group>";
- };
- 2779346327E324A10010E277 /* ArchiveTools */ = {
- isa = PBXGroup;
- children = (
- 2779346427E324A10010E277 /* CoinModel.h */,
- 2779346527E324A10010E277 /* ArchiveTools.h */,
- 2779346627E324A10010E277 /* NSObject+Archiving.m */,
- 2779346727E324A10010E277 /* CoinModel.m */,
- 2779346827E324A10010E277 /* ArchiveTools.m */,
- 2779346927E324A10010E277 /* NSObject+Archiving.h */,
- );
- path = ArchiveTools;
- sourceTree = "<group>";
- };
- 2779346A27E324A10010E277 /* Define */ = {
- isa = PBXGroup;
- children = (
- 2779346B27E324A10010E277 /* UserKeyHeader.h */,
- 2779346C27E324A10010E277 /* Common.h */,
- 2779346D27E324A10010E277 /* PrefixHeader.pch */,
- );
- path = Define;
- sourceTree = "<group>";
- };
- 2779346E27E324A10010E277 /* ThirdPart */ = {
- isa = PBXGroup;
- children = (
- 2723B63D27F15B5800E0B90B /* SCIndexView */,
- 2779346F27E324A10010E277 /* KLTAnimateNav */,
- 2779347427E324A10010E277 /* DZSegmentCtrl */,
- 2779347727E324A10010E277 /* WMPlayer */,
- 2779348127E324A10010E277 /* TZImagePickerController */,
- 277934A527E324A20010E277 /* MSSBrowse */,
- 277934C127E324A20010E277 /* FSCalendar */,
- 277934E127E324A30010E277 /* SDCycleScrollView */,
- 277934F827E324A30010E277 /* ALCalendarPicker */,
- );
- path = ThirdPart;
- sourceTree = "<group>";
- };
- 2779346F27E324A10010E277 /* KLTAnimateNav */ = {
- isa = PBXGroup;
- children = (
- 2779347027E324A10010E277 /* AnimationContoller.h */,
- 2779347127E324A10010E277 /* KLTNavigationController.m */,
- 2779347227E324A10010E277 /* KLTNavigationController.h */,
- 2779347327E324A10010E277 /* AnimationContoller.m */,
- );
- path = KLTAnimateNav;
- sourceTree = "<group>";
- };
- 2779347427E324A10010E277 /* DZSegmentCtrl */ = {
- isa = PBXGroup;
- children = (
- 2779347527E324A10010E277 /* DZNSegmentedControl.m */,
- 2779347627E324A10010E277 /* DZNSegmentedControl.h */,
- );
- path = DZSegmentCtrl;
- sourceTree = "<group>";
- };
- 2779347727E324A10010E277 /* WMPlayer */ = {
- isa = PBXGroup;
- children = (
- 2779347827E324A10010E277 /* WMLightView.h */,
- 2779347927E324A10010E277 /* WMPlayerModel.m */,
- 2779347A27E324A10010E277 /* FastForwardView.h */,
- 2779347B27E324A10010E277 /* WMPlayer.bundle */,
- 2779347C27E324A10010E277 /* WMPlayer.h */,
- 2779347D27E324A10010E277 /* WMPlayerModel.h */,
- 2779347E27E324A10010E277 /* WMLightView.m */,
- 2779347F27E324A10010E277 /* FastForwardView.m */,
- 2779348027E324A10010E277 /* WMPlayer.m */,
- );
- path = WMPlayer;
- sourceTree = "<group>";
- };
- 2779348127E324A10010E277 /* TZImagePickerController */ = {
- isa = PBXGroup;
- children = (
- 2779348227E324A10010E277 /* TZPhotoPreviewCell.h */,
- 2779348327E324A10010E277 /* TZPhotoPickerController.h */,
- 2779348427E324A10010E277 /* TZImageCropManager.m */,
- 2779348527E324A10010E277 /* TZImageManager.h */,
- 2779348627E324A10010E277 /* TZAssetCell.m */,
- 2779348727E324A10010E277 /* TZVideoEditedPreviewController.m */,
- 2779348827E324A10010E277 /* TZVideoCropController.m */,
- 2779348927E324A10010E277 /* TZVideoPlayerController.m */,
- 2779348A27E324A10010E277 /* TZAssetModel.m */,
- 2779348B27E324A10010E277 /* NSBundle+TZImagePicker.m */,
- 2779348C27E324A10010E277 /* UIView+TZLayout.h */,
- 2779348D27E324A10010E277 /* TZLocationManager.h */,
- 2779348E27E324A10010E277 /* TZImagePickerController.h */,
- 2779348F27E324A10010E277 /* TZPhotoPreviewController.m */,
- 2779349027E324A10010E277 /* TZImagePickerController.bundle */,
- 2779349127E324A10010E277 /* TZProgressView.m */,
- 2779349227E324A10010E277 /* TZGifPhotoPreviewController.h */,
- 2779349327E324A10010E277 /* TZImageRequestOperation.h */,
- 2779349427E324A10010E277 /* TZVideoEditedPreviewController.h */,
- 2779349527E324A10010E277 /* TZAssetCell.h */,
- 2779349627E324A10010E277 /* TZImageManager.m */,
- 2779349727E324A20010E277 /* TZImageCropManager.h */,
- 2779349827E324A20010E277 /* TZPhotoPickerController.m */,
- 2779349927E324A20010E277 /* TZPhotoPreviewCell.m */,
- 2779349A27E324A20010E277 /* NSBundle+TZImagePicker.h */,
- 2779349B27E324A20010E277 /* UIView+TZLayout.m */,
- 2779349C27E324A20010E277 /* TZAssetModel.h */,
- 2779349D27E324A20010E277 /* TZVideoPlayerController.h */,
- 2779349E27E324A20010E277 /* TZVideoCropController.h */,
- 2779349F27E324A20010E277 /* TZPhotoPreviewController.h */,
- 277934A027E324A20010E277 /* TZImagePickerController.m */,
- 277934A127E324A20010E277 /* TZLocationManager.m */,
- 277934A227E324A20010E277 /* TZGifPhotoPreviewController.m */,
- 277934A327E324A20010E277 /* TZImageRequestOperation.m */,
- 277934A427E324A20010E277 /* TZProgressView.h */,
- );
- path = TZImagePickerController;
- sourceTree = "<group>";
- };
- 277934A527E324A20010E277 /* MSSBrowse */ = {
- isa = PBXGroup;
- children = (
- 277934A627E324A20010E277 /* MSSBrowseRemindView.h */,
- 277934A727E324A20010E277 /* MSSBrowseZoomScrollView.h */,
- 277934A827E324A20010E277 /* MSSBrowseLoadingImageView.m */,
- 277934A927E324A20010E277 /* MSSBrowseBaseViewController.h */,
- 277934AA27E324A20010E277 /* UIImage+MSSScale.h */,
- 277934AB27E324A20010E277 /* MSSBrowseNetworkViewController.h */,
- 277934AC27E324A20010E277 /* MSSBrowseActionSheet.h */,
- 277934AD27E324A20010E277 /* MSSBrowseActionSheetCell.h */,
- 277934AE27E324A20010E277 /* MSSBrowseLocalViewController.m */,
- 277934AF27E324A20010E277 /* MSSBrowseCollectionViewCell.m */,
- 277934B027E324A20010E277 /* UIView+MSSLayout.h */,
- 277934B127E324A20010E277 /* MSSBrowseModel.m */,
- 277934B227E324A20010E277 /* MSSBrowseDefine.h */,
- 277934B327E324A20010E277 /* MSSBrowseActionSheet.m */,
- 277934B427E324A20010E277 /* MSSBrowseNetworkViewController.m */,
- 277934B527E324A20010E277 /* UIImage+MSSScale.m */,
- 277934B627E324A20010E277 /* MSSBrowseBaseViewController.m */,
- 277934B727E324A20010E277 /* MSSBrowseLoadingImageView.h */,
- 277934B827E324A20010E277 /* MSSBrowseZoomScrollView.m */,
- 277934B927E324A20010E277 /* MSSBrowseRemindView.m */,
- 277934BA27E324A20010E277 /* mss_browseLoading@3x.png */,
- 277934BB27E324A20010E277 /* MSSBrowseCollectionViewCell.h */,
- 277934BC27E324A20010E277 /* MSSBrowseLocalViewController.h */,
- 277934BD27E324A20010E277 /* MSSBrowseActionSheetCell.m */,
- 277934BE27E324A20010E277 /* MSSBrowseModel.h */,
- 277934BF27E324A20010E277 /* mss_browseLoading@2x.png */,
- 277934C027E324A20010E277 /* UIView+MSSLayout.m */,
- );
- path = MSSBrowse;
- sourceTree = "<group>";
- };
- 277934C127E324A20010E277 /* FSCalendar */ = {
- isa = PBXGroup;
- children = (
- 277934C227E324A20010E277 /* FSCalendarCollectionView.m */,
- 277934C327E324A20010E277 /* FSCalendarWeekdayView.h */,
- 277934C427E324A20010E277 /* FSCalendarCollectionViewLayout.h */,
- 277934C527E324A20010E277 /* FSCalendarDelegationProxy.m */,
- 277934C627E324A20010E277 /* FSCalendarExtensions.h */,
- 277934C727E324A20010E277 /* FSCalendarDelegationFactory.m */,
- 277934C827E324A20010E277 /* FSCalendarSeparatorDecorationView.h */,
- 277934C927E324A20010E277 /* FSCalendarCalculator.h */,
- 277934CA27E324A20010E277 /* FSCalendarHeaderView.h */,
- 277934CB27E324A20010E277 /* FSCalendarConstants.h */,
- 277934CC27E324A20010E277 /* FSCalendarAppearance.h */,
- 277934CD27E324A20010E277 /* FSCalendarTransitionCoordinator.h */,
- 277934CE27E324A30010E277 /* FSCalendarCell.m */,
- 277934CF27E324A30010E277 /* FSCalendarStickyHeader.m */,
- 277934D027E324A30010E277 /* FSCalendar.m */,
- 277934D127E324A30010E277 /* FSCalendarCollectionViewLayout.m */,
- 277934D227E324A30010E277 /* FSCalendarWeekdayView.m */,
- 277934D327E324A30010E277 /* FSCalendarCollectionView.h */,
- 277934D427E324A30010E277 /* FSCalendarDynamicHeader.h */,
- 277934D527E324A30010E277 /* FSCalendarSeparatorDecorationView.m */,
- 277934D627E324A30010E277 /* FSCalendarDelegationFactory.h */,
- 277934D727E324A30010E277 /* FSCalendarExtensions.m */,
- 277934D827E324A30010E277 /* FSCalendarDelegationProxy.h */,
- 277934D927E324A30010E277 /* FSCalendarConstants.m */,
- 277934DA27E324A30010E277 /* FSCalendarCalculator.m */,
- 277934DB27E324A30010E277 /* FSCalendarHeaderView.m */,
- 277934DC27E324A30010E277 /* FSCalendarStickyHeader.h */,
- 277934DD27E324A30010E277 /* FSCalendar.h */,
- 277934DE27E324A30010E277 /* FSCalendarCell.h */,
- 277934DF27E324A30010E277 /* FSCalendarTransitionCoordinator.m */,
- 277934E027E324A30010E277 /* FSCalendarAppearance.m */,
- );
- path = FSCalendar;
- sourceTree = "<group>";
- };
- 277934E127E324A30010E277 /* SDCycleScrollView */ = {
- isa = PBXGroup;
- children = (
- 277934E227E324A30010E277 /* QWdynamicModel.m */,
- 277934E327E324A30010E277 /* UIView+SDExtension.h */,
- 277934E427E324A30010E277 /* SDQWMaskCustomModel.h */,
- 277934E527E324A30010E277 /* SDCycleScrollView.h */,
- 277934E627E324A30010E277 /* SDCollectionViewCell.h */,
- 277934E727E324A30010E277 /* SDQWMaskCustomView.xib */,
- 277934E827E324A30010E277 /* SDQWMaskCustomView.h */,
- 277934E927E324A30010E277 /* SDCycleScrollView.m */,
- 277934EA27E324A30010E277 /* UIView+SDExtension.m */,
- 277934EB27E324A30010E277 /* SDQWMaskCustomModel.m */,
- 277934EC27E324A30010E277 /* QWdynamicModel.h */,
- 277934ED27E324A30010E277 /* SDCollectionViewCell.m */,
- 277934EE27E324A30010E277 /* PageControl */,
- 277934F727E324A30010E277 /* SDQWMaskCustomView.m */,
- );
- path = SDCycleScrollView;
- sourceTree = "<group>";
- };
- 277934EE27E324A30010E277 /* PageControl */ = {
- isa = PBXGroup;
- children = (
- 277934EF27E324A30010E277 /* TAAbstractDotView.h */,
- 277934F027E324A30010E277 /* TADotView.m */,
- 277934F127E324A30010E277 /* TAPageControl.m */,
- 277934F227E324A30010E277 /* TAAnimatedDotView.m */,
- 277934F327E324A30010E277 /* TAAbstractDotView.m */,
- 277934F427E324A30010E277 /* TADotView.h */,
- 277934F527E324A30010E277 /* TAAnimatedDotView.h */,
- 277934F627E324A30010E277 /* TAPageControl.h */,
- );
- path = PageControl;
- sourceTree = "<group>";
- };
- 277934F827E324A30010E277 /* ALCalendarPicker */ = {
- isa = PBXGroup;
- children = (
- 277934F927E324A30010E277 /* ALCalendarCell.m */,
- 277934FA27E324A30010E277 /* ALCalendarConfig.m */,
- 277934FB27E324A30010E277 /* ALCalendarHeader.m */,
- 277934FC27E324A30010E277 /* ALCalendarDate.m */,
- 277934FD27E324A30010E277 /* ALCalendarCollectionView.m */,
- 277934FE27E324A30010E277 /* ALCalendarHelper.m */,
- 277934FF27E324A30010E277 /* UIView+ALFrame.h */,
- 2779350027E324A30010E277 /* ALCalendarPicker.h */,
- 2779350127E324A30010E277 /* ALCalendarManager.h */,
- 2779350227E324A30010E277 /* ALCalendarCollectionView.h */,
- 2779350327E324A30010E277 /* ALCalendarDate.h */,
- 2779350427E324A30010E277 /* ALCalendarHeader.h */,
- 2779350527E324A30010E277 /* ALCalendarConfig.h */,
- 2779350627E324A30010E277 /* ALCalendarCell.h */,
- 2779350727E324A40010E277 /* ALCalendarHelper.h */,
- 2779350827E324A40010E277 /* ALCalendarPicker.m */,
- 2779350927E324A40010E277 /* UIView+ALFrame.m */,
- 2779350A27E324A40010E277 /* ALCalendarManager.m */,
- );
- path = ALCalendarPicker;
- sourceTree = "<group>";
- };
- 2779350B27E324A40010E277 /* Base */ = {
- isa = PBXGroup;
- children = (
- 2723B64727F15BDB00E0B90B /* KSJXBodyView.h */,
- 2723B64827F15BDC00E0B90B /* KSJXBodyView.m */,
- 2723B63B27F159BA00E0B90B /* KSBaseTableViewController.h */,
- 2723B63A27F159BA00E0B90B /* KSBaseTableViewController.m */,
- 275FA1BE27E7351600CFEA2E /* BaseViewController.h */,
- 275FA1CF27E7351800CFEA2E /* BaseViewController.m */,
- 275FA1BC27E7351500CFEA2E /* CustomNavViewController.h */,
- 275FA1C827E7351700CFEA2E /* CustomNavViewController.m */,
- 275FA1C327E7351600CFEA2E /* KSAccompanyWebViewController.h */,
- 275FA1C427E7351600CFEA2E /* KSAccompanyWebViewController.m */,
- 275FA1B627E7351500CFEA2E /* KSAQRecordManager.h */,
- 275FA1B127E7351400CFEA2E /* KSAQRecordManager.m */,
- 275FA1B327E7351400CFEA2E /* KSBaseModel.h */,
- 275FA1B727E7351500CFEA2E /* KSBaseModel.m */,
- 275FA1C527E7351600CFEA2E /* KSBaseViewController.h */,
- 275FA1D627E7351800CFEA2E /* KSBaseViewController.m */,
- 275FA1D527E7351800CFEA2E /* KSBaseWKWebViewController.h */,
- 275FA1CE27E7351700CFEA2E /* KSBaseWKWebViewController.m */,
- 275FA1C027E7351600CFEA2E /* KSLocalWebViewController.h */,
- 275FA1B927E7351500CFEA2E /* KSLocalWebViewController.m */,
- 275FA1CA27E7351700CFEA2E /* KSNetTypeManager.h */,
- 275FA1C927E7351700CFEA2E /* KSNetTypeManager.m */,
- 275FA1B527E7351400CFEA2E /* KSRCIMDataSource.h */,
- 275FA1CD27E7351700CFEA2E /* KSRCIMDataSource.m */,
- 275FA1D727E7351900CFEA2E /* KSTabBarViewController.h */,
- 275FA1BD27E7351500CFEA2E /* KSTabBarViewController.m */,
- 275FA1CB27E7351700CFEA2E /* KSUpdateAlert.h */,
- 275FA1C627E7351700CFEA2E /* KSUpdateAlert.m */,
- 275FA1D927E7351900CFEA2E /* KSUpdateAlert.xib */,
- 275FA1B227E7351400CFEA2E /* KSUpdateManager.h */,
- 275FA1D027E7351800CFEA2E /* KSUpdateManager.m */,
- 275FA1D127E7351800CFEA2E /* KSWebBackButton.h */,
- 275FA1BF27E7351600CFEA2E /* KSWebBackButton.m */,
- 275FA1B827E7351500CFEA2E /* KSWebNavView.h */,
- 275FA1C227E7351600CFEA2E /* KSWebNavView.m */,
- 275FA1D227E7351800CFEA2E /* KSWebSocketManager.h */,
- 275FA1C727E7351700CFEA2E /* KSWebSocketManager.m */,
- 275FA1D327E7351800CFEA2E /* RCConnectionManager.h */,
- 275FA1BA27E7351500CFEA2E /* RCConnectionManager.m */,
- 275FA1D827E7351900CFEA2E /* RecordCheckManager.h */,
- 275FA1BB27E7351500CFEA2E /* RecordCheckManager.m */,
- 275FA1B427E7351400CFEA2E /* UINavigationController+KSNavigationBar.h */,
- 275FA1B027E7351400CFEA2E /* UINavigationController+KSNavigationBar.m */,
- 275FA1CC27E7351700CFEA2E /* WeakWebViewScriptMessageDelegate.h */,
- 275FA1C127E7351600CFEA2E /* WeakWebViewScriptMessageDelegate.m */,
- 275FA1D427E7351800CFEA2E /* KSNetworkingManager.h */,
- 275FA1AF27E7351400CFEA2E /* KSNetworkingManager.m */,
- );
- path = Base;
- sourceTree = "<group>";
- };
- 27F9030F27E87C2C00C08A19 /* Networking */ = {
- isa = PBXGroup;
- children = (
- 27F9031027E87C2C00C08A19 /* Controller */,
- 27F9031327E87C2C00C08A19 /* Model */,
- 27F9031427E87C2C00C08A19 /* View */,
- );
- path = Networking;
- sourceTree = "<group>";
- };
- 27F9031027E87C2C00C08A19 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 27F9031127E87C2C00C08A19 /* NetworkingCheckController.h */,
- 27F9031227E87C2C00C08A19 /* NetworkingCheckController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 27F9031327E87C2C00C08A19 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 27F9031427E87C2C00C08A19 /* View */ = {
- isa = PBXGroup;
- children = (
- 27F9031527E87C2C00C08A19 /* KSNetworkAlert.h */,
- 27F9031627E87C2C00C08A19 /* NetworkBodyView.m */,
- 27F9031727E87C2C00C08A19 /* NetworkBodyView.xib */,
- 27F9031827E87C2D00C08A19 /* KSNetworkAlert.m */,
- 27F9031927E87C2D00C08A19 /* NetworkBodyView.h */,
- 27F9031A27E87C2D00C08A19 /* KSNetworkAlert.xib */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 27F9031B27E87C2D00C08A19 /* DeviceCheck */ = {
- isa = PBXGroup;
- children = (
- 27F9031C27E87C2D00C08A19 /* DeviceCheckView.xib */,
- 27F9031D27E87C2D00C08A19 /* AudioPlayManager.m */,
- 27F9031E27E87C2D00C08A19 /* AudioRecordManager.m */,
- 27F9031F27E87C2D00C08A19 /* DeviceCheckView.m */,
- 27F9032027E87C2D00C08A19 /* AudioRecordManager.h */,
- 27F9032127E87C2D00C08A19 /* DeviceCheckView.h */,
- 27F9032227E87C2D00C08A19 /* AudioPlayManager.h */,
- );
- path = DeviceCheck;
- sourceTree = "<group>";
- };
- 27F9032327E87C2E00C08A19 /* Setting */ = {
- isa = PBXGroup;
- children = (
- 27F9032427E87C2E00C08A19 /* Controller */,
- 27F9032727E87C2E00C08A19 /* Model */,
- 27F9032827E87C2E00C08A19 /* View */,
- );
- path = Setting;
- sourceTree = "<group>";
- };
- 27F9032427E87C2E00C08A19 /* Controller */ = {
- isa = PBXGroup;
- children = (
- 27F9032527E87C2E00C08A19 /* SettingViewController.h */,
- 27F9032627E87C2E00C08A19 /* SettingViewController.m */,
- 2723B67427F15D3600E0B90B /* AboutUsViewController.h */,
- 2723B67227F15D3300E0B90B /* AboutUsViewController.m */,
- 2723B67727F15D3900E0B90B /* AddressViewController.h */,
- 2723B67B27F15D3C00E0B90B /* AddressViewController.m */,
- 2723B67627F15D3800E0B90B /* FeedbackViewController.h */,
- 2723B67327F15D3400E0B90B /* FeedbackViewController.m */,
- 2723B67A27F15D3B00E0B90B /* ModifyNameViewController.h */,
- 2723B67527F15D3700E0B90B /* ModifyNameViewController.m */,
- 2723B67C27F15D3D00E0B90B /* ModifyPhoneChangeController.h */,
- 2723B67827F15D3A00E0B90B /* ModifyPhoneChangeController.m */,
- 2723B67027F15D3200E0B90B /* ModifyPhoneCheckController.h */,
- 2723B67127F15D3300E0B90B /* ModifyPhoneCheckController.m */,
- 2723B67D27F15D3D00E0B90B /* ModifyViewController.h */,
- 2723B67927F15D3B00E0B90B /* ModifyViewController.m */,
- );
- path = Controller;
- sourceTree = "<group>";
- };
- 27F9032727E87C2E00C08A19 /* Model */ = {
- isa = PBXGroup;
- children = (
- );
- path = Model;
- sourceTree = "<group>";
- };
- 27F9032827E87C2E00C08A19 /* View */ = {
- isa = PBXGroup;
- children = (
- 2723B65027F15CF900E0B90B /* AboutUsBodyView.h */,
- 2723B65327F15CF900E0B90B /* AboutUsBodyView.m */,
- 2723B66027F15CFB00E0B90B /* AboutUsBodyView.xib */,
- 2723B65227F15CF900E0B90B /* FeedbackBodyView.h */,
- 2723B65527F15CF900E0B90B /* FeedbackBodyView.m */,
- 2723B64C27F15CF800E0B90B /* FeedbackBodyView.xib */,
- 2723B64F27F15CF900E0B90B /* ModifyBodyView.h */,
- 2723B65427F15CF900E0B90B /* ModifyBodyView.m */,
- 2723B65127F15CF900E0B90B /* ModifyBodyView.xib */,
- 2723B64B27F15CF800E0B90B /* ModifyNameBodyView.h */,
- 2723B65D27F15CFB00E0B90B /* ModifyNameBodyView.m */,
- 2723B64D27F15CF800E0B90B /* ModifyNameBodyView.xib */,
- 2723B65627F15CFA00E0B90B /* PhoneChangeBodyView.h */,
- 2723B65727F15CFA00E0B90B /* PhoneChangeBodyView.m */,
- 2723B65827F15CFA00E0B90B /* PhoneChangeBodyView.xib */,
- 2723B65927F15CFA00E0B90B /* PhoneCheckBodyView.h */,
- 2723B65A27F15CFA00E0B90B /* PhoneCheckBodyView.m */,
- 2723B65E27F15CFB00E0B90B /* PhoneCheckBodyView.xib */,
- 2723B65B27F15CFA00E0B90B /* SettingBodyView.h */,
- 2723B65C27F15CFB00E0B90B /* SettingBodyView.m */,
- 2723B64A27F15CF800E0B90B /* SettingBodyView.xib */,
- 2723B65F27F15CFB00E0B90B /* VeriCheckView.h */,
- 2723B64E27F15CF800E0B90B /* VeriCheckView.m */,
- );
- path = View;
- sourceTree = "<group>";
- };
- 9BF683910A95A690331EF86A /* Frameworks */ = {
- isa = PBXGroup;
- children = (
- 14CEAEC95E5CF916A3D3F602 /* Pods_KulexiuForStudent.framework */,
- C9C170A749B6C49F17AC3246 /* Pods_KulexiuForStudent_KulexiuForStudentUITests.framework */,
- DD4D637EF600D0BAE869423D /* Pods_KulexiuForStudentTests.framework */,
- );
- name = Frameworks;
- sourceTree = "<group>";
- };
- /* End PBXGroup section */
- /* Begin PBXNativeTarget section */
- 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 275E8AD427E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudent" */;
- buildPhases = (
- 517802ACBF7A2D237EC51FBD /* [CP] Check Pods Manifest.lock */,
- 275E8AA127E18F8800DD3F6E /* Sources */,
- 275E8AA227E18F8800DD3F6E /* Frameworks */,
- 275E8AA327E18F8800DD3F6E /* Resources */,
- 7FA65C60616F879A71C69DE3 /* [CP] Embed Pods Frameworks */,
- CAFB9BB2B8A1DEF4AC72C464 /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- );
- name = KulexiuForStudent;
- productName = KulexiuForStudent;
- productReference = 275E8AA527E18F8800DD3F6E /* KulexiuForStudent.app */;
- productType = "com.apple.product-type.application";
- };
- 275E8ABF27E18F8C00DD3F6E /* KulexiuForStudentTests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 275E8AD727E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentTests" */;
- buildPhases = (
- AB9225EA49C09055CF4D365E /* [CP] Check Pods Manifest.lock */,
- 275E8ABC27E18F8C00DD3F6E /* Sources */,
- 275E8ABD27E18F8C00DD3F6E /* Frameworks */,
- 275E8ABE27E18F8C00DD3F6E /* Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 275E8AC227E18F8C00DD3F6E /* PBXTargetDependency */,
- );
- name = KulexiuForStudentTests;
- productName = KulexiuForStudentTests;
- productReference = 275E8AC027E18F8C00DD3F6E /* KulexiuForStudentTests.xctest */;
- productType = "com.apple.product-type.bundle.unit-test";
- };
- 275E8AC927E18F8C00DD3F6E /* KulexiuForStudentUITests */ = {
- isa = PBXNativeTarget;
- buildConfigurationList = 275E8ADA27E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentUITests" */;
- buildPhases = (
- C466C0F5CFE9161E20B6DAE7 /* [CP] Check Pods Manifest.lock */,
- 275E8AC627E18F8C00DD3F6E /* Sources */,
- 275E8AC727E18F8C00DD3F6E /* Frameworks */,
- 275E8AC827E18F8C00DD3F6E /* Resources */,
- F651308641378409742E5831 /* [CP] Embed Pods Frameworks */,
- 27666DDBA06A252BAC04BBAD /* [CP] Copy Pods Resources */,
- );
- buildRules = (
- );
- dependencies = (
- 275E8ACC27E18F8C00DD3F6E /* PBXTargetDependency */,
- );
- name = KulexiuForStudentUITests;
- productName = KulexiuForStudentUITests;
- productReference = 275E8ACA27E18F8C00DD3F6E /* KulexiuForStudentUITests.xctest */;
- productType = "com.apple.product-type.bundle.ui-testing";
- };
- /* End PBXNativeTarget section */
- /* Begin PBXProject section */
- 275E8A9D27E18F8800DD3F6E /* Project object */ = {
- isa = PBXProject;
- attributes = {
- BuildIndependentTargetsInParallel = 1;
- LastUpgradeCheck = 1320;
- TargetAttributes = {
- 275E8AA427E18F8800DD3F6E = {
- CreatedOnToolsVersion = 13.2.1;
- };
- 275E8ABF27E18F8C00DD3F6E = {
- CreatedOnToolsVersion = 13.2.1;
- TestTargetID = 275E8AA427E18F8800DD3F6E;
- };
- 275E8AC927E18F8C00DD3F6E = {
- CreatedOnToolsVersion = 13.2.1;
- TestTargetID = 275E8AA427E18F8800DD3F6E;
- };
- };
- };
- buildConfigurationList = 275E8AA027E18F8800DD3F6E /* Build configuration list for PBXProject "KulexiuForStudent" */;
- compatibilityVersion = "Xcode 13.0";
- developmentRegion = en;
- hasScannedForEncodings = 0;
- knownRegions = (
- en,
- Base,
- );
- mainGroup = 275E8A9C27E18F8800DD3F6E;
- productRefGroup = 275E8AA627E18F8800DD3F6E /* Products */;
- projectDirPath = "";
- projectRoot = "";
- targets = (
- 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */,
- 275E8ABF27E18F8C00DD3F6E /* KulexiuForStudentTests */,
- 275E8AC927E18F8C00DD3F6E /* KulexiuForStudentUITests */,
- );
- };
- /* End PBXProject section */
- /* Begin PBXResourcesBuildPhase section */
- 275E8AA327E18F8800DD3F6E /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 275E8AB827E18F8B00DD3F6E /* LaunchScreen.storyboard in Resources */,
- 275FA1EF27E7351900CFEA2E /* KSUpdateAlert.xib in Resources */,
- 277935AF27E324A90010E277 /* mss_browseLoading@3x.png in Resources */,
- 2779355727E324A70010E277 /* KSPremissionAlert.xib in Resources */,
- 2723B5C327F157B100E0B90B /* ChatNavView.xib in Resources */,
- 2723B5BA27F157B100E0B90B /* ChatAddressHeaderView.xib in Resources */,
- 2723B62E27F157D500E0B90B /* GroupApplyChooseAllCell.xib in Resources */,
- 275FA23A27E7356B00CFEA2E /* VefiBodyView.xib in Resources */,
- 2723B63227F157D500E0B90B /* GroupSettingBodyView.xib in Resources */,
- 2723B5BF27F157B100E0B90B /* GroupCreateView.xib in Resources */,
- 2723B63727F157D500E0B90B /* ApplyBottomView.xib in Resources */,
- 2723B62F27F157D500E0B90B /* ChatComplainBodyView.xib in Resources */,
- 2723B62127F157D500E0B90B /* NoticeEditBodyView.xib in Resources */,
- 2723B66127F15CFB00E0B90B /* SettingBodyView.xib in Resources */,
- 275E8AB527E18F8B00DD3F6E /* Assets.xcassets in Resources */,
- 2723B63527F157D500E0B90B /* GroupApplyChooseCell.xib in Resources */,
- 2723B5C227F157B100E0B90B /* GroupListViewCell.xib in Resources */,
- 2723B62527F157D500E0B90B /* GroupNoticeCell.xib in Resources */,
- 275FA23D27E7356B00CFEA2E /* PasswordBodyView.xib in Resources */,
- 2723B66227F15CFC00E0B90B /* FeedbackBodyView.xib in Resources */,
- 2723B66527F15CFC00E0B90B /* ModifyBodyView.xib in Resources */,
- 275FA1AD27E734C600CFEA2E /* KSImageAlert.xib in Resources */,
- 2723B5C427F157B100E0B90B /* KSChatListSearchView.xib in Resources */,
- 2779359B27E324A80010E277 /* TZImagePickerController.bundle in Resources */,
- 277935C327E324A90010E277 /* SDQWMaskCustomView.xib in Resources */,
- 275FA24A27E7428D00CFEA2E /* InstrumentChooseView.xib in Resources */,
- 2723B66327F15CFC00E0B90B /* ModifyNameBodyView.xib in Resources */,
- 2723B66A27F15CFC00E0B90B /* PhoneChangeBodyView.xib in Resources */,
- 27F9032D27E87C2E00C08A19 /* KSNetworkAlert.xib in Resources */,
- 275FA24527E73E0100CFEA2E /* InstrumentDescView.xib in Resources */,
- 2723B62D27F157D500E0B90B /* GroupApplyMemberCell.xib in Resources */,
- 27F9032E27E87C2E00C08A19 /* DeviceCheckView.xib in Resources */,
- 275FA23727E7356B00CFEA2E /* LoginBodyView.xib in Resources */,
- 27F9033C27E87FE100C08A19 /* MineBodyView.xib in Resources */,
- 27F9032B27E87C2E00C08A19 /* NetworkBodyView.xib in Resources */,
- 2779358F27E324A80010E277 /* WMPlayer.bundle in Resources */,
- 2723B66F27F15CFC00E0B90B /* AboutUsBodyView.xib in Resources */,
- 275FA23827E7356B00CFEA2E /* FirstSettingBodyView.xib in Resources */,
- 2723B63927F157D500E0B90B /* GroupMemberListCell.xib in Resources */,
- 2723B66E27F15CFC00E0B90B /* PhoneCheckBodyView.xib in Resources */,
- 2723B5C527F157B100E0B90B /* ContractListCell.xib in Resources */,
- 27F9033727E87C8B00C08A19 /* MineNavView.xib in Resources */,
- 275E8AB327E18F8800DD3F6E /* Main.storyboard in Resources */,
- 277935B127E324A90010E277 /* mss_browseLoading@2x.png in Resources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 275E8ABE27E18F8C00DD3F6E /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 275E8AC827E18F8C00DD3F6E /* Resources */ = {
- isa = PBXResourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXResourcesBuildPhase section */
- /* Begin PBXShellScriptBuildPhase section */
- 27666DDBA06A252BAC04BBAD /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- 517802ACBF7A2D237EC51FBD /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudent-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- 7FA65C60616F879A71C69DE3 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Embed Pods Frameworks";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- AB9225EA49C09055CF4D365E /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudentTests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- C466C0F5CFE9161E20B6DAE7 /* [CP] Check Pods Manifest.lock */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- );
- inputPaths = (
- "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
- "${PODS_ROOT}/Manifest.lock",
- );
- name = "[CP] Check Pods Manifest.lock";
- outputFileListPaths = (
- );
- outputPaths = (
- "$(DERIVED_FILE_DIR)/Pods-KulexiuForStudent-KulexiuForStudentUITests-checkManifestLockResult.txt",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
- showEnvVarsInLog = 0;
- };
- CAFB9BB2B8A1DEF4AC72C464 /* [CP] Copy Pods Resources */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Copy Pods Resources";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent/Pods-KulexiuForStudent-resources.sh\"\n";
- showEnvVarsInLog = 0;
- };
- F651308641378409742E5831 /* [CP] Embed Pods Frameworks */ = {
- isa = PBXShellScriptBuildPhase;
- buildActionMask = 2147483647;
- files = (
- );
- inputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks-${CONFIGURATION}-input-files.xcfilelist",
- );
- name = "[CP] Embed Pods Frameworks";
- outputFileListPaths = (
- "${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks-${CONFIGURATION}-output-files.xcfilelist",
- );
- runOnlyForDeploymentPostprocessing = 0;
- shellPath = /bin/sh;
- shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-KulexiuForStudent-KulexiuForStudentUITests/Pods-KulexiuForStudent-KulexiuForStudentUITests-frameworks.sh\"\n";
- showEnvVarsInLog = 0;
- };
- /* End PBXShellScriptBuildPhase section */
- /* Begin PBXSourcesBuildPhase section */
- 275E8AA127E18F8800DD3F6E /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 2779354827E324A60010E277 /* NSObject+ReadDocument.m in Sources */,
- 277935CB27E324A90010E277 /* TAAbstractDotView.m in Sources */,
- 2723B5C627F157B100E0B90B /* GroupListViewCell.m in Sources */,
- 275FA1E927E7351900CFEA2E /* KSNetTypeManager.m in Sources */,
- 2723B66B27F15CFC00E0B90B /* PhoneCheckBodyView.m in Sources */,
- 27F9033027E87C2E00C08A19 /* AudioRecordManager.m in Sources */,
- 2779352527E324A60010E277 /* pinyin.c in Sources */,
- 2779357B27E324A70010E277 /* ShopButton.m in Sources */,
- 2723B61E27F157D500E0B90B /* GroupNoticeEditController.m in Sources */,
- 277935AC27E324A80010E277 /* MSSBrowseBaseViewController.m in Sources */,
- 2779352427E324A60010E277 /* KSUtilities.m in Sources */,
- 2779359627E324A80010E277 /* TZVideoCropController.m in Sources */,
- 277935AB27E324A80010E277 /* UIImage+MSSScale.m in Sources */,
- 2779353427E324A60010E277 /* UIImageView+CornerRadius.m in Sources */,
- 2779357827E324A70010E277 /* NSString+phone.m in Sources */,
- 2779357D27E324A80010E277 /* KSMessageInputView.m in Sources */,
- 277935BE27E324A90010E277 /* FSCalendarCalculator.m in Sources */,
- 275FA1DC27E7351900CFEA2E /* KSAQRecordManager.m in Sources */,
- 2779351427E324A50010E277 /* NSMutableDictionary+KSSafe.m in Sources */,
- 2779356F27E324A70010E277 /* SkipTextField.m in Sources */,
- 2723B67F27F15D3D00E0B90B /* AboutUsViewController.m in Sources */,
- 2779356127E324A70010E277 /* KSAudioRecordManager.m in Sources */,
- 2779359827E324A80010E277 /* TZAssetModel.m in Sources */,
- 277935A027E324A80010E277 /* UIView+TZLayout.m in Sources */,
- 2779351227E324A50010E277 /* KSNetworkAccessibleManager.m in Sources */,
- 2779357227E324A70010E277 /* SearchView.m in Sources */,
- 2723B64927F15BDC00E0B90B /* KSJXBodyView.m in Sources */,
- 2779356527E324A70010E277 /* KSMediaManager.m in Sources */,
- 2779355C27E324A70010E277 /* KSChoosePicker.m in Sources */,
- 2779356C27E324A70010E277 /* MBProgressHUD+NJ.m in Sources */,
- 2779353227E324A60010E277 /* NSDate+Transform.m in Sources */,
- 2779356827E324A70010E277 /* shopview.m in Sources */,
- 2723B64527F15B5900E0B90B /* SCIndexView.m in Sources */,
- 2779359727E324A80010E277 /* TZVideoPlayerController.m in Sources */,
- 275FA22E27E7356B00CFEA2E /* MineViewController.m in Sources */,
- 2779354627E324A60010E277 /* UIView+Animation.m in Sources */,
- 2723B68327F15D3D00E0B90B /* ModifyViewController.m in Sources */,
- 2779356327E324A70010E277 /* HomeButton.m in Sources */,
- 2779358227E324A80010E277 /* NSDate+KSBaseDatePicker.m in Sources */,
- 277935CD27E324A90010E277 /* ALCalendarCell.m in Sources */,
- 275FA1DA27E7351900CFEA2E /* KSNetworkingManager.m in Sources */,
- 2779358A27E324A80010E277 /* ArchiveTools.m in Sources */,
- 2779354527E324A60010E277 /* UIImage+UIImageScale.m in Sources */,
- 2723B66427F15CFC00E0B90B /* VeriCheckView.m in Sources */,
- 2779354C27E324A70010E277 /* KSGifRefreshHeader.m in Sources */,
- 2779358727E324A80010E277 /* LLCollectionViewCell.m in Sources */,
- 2779352627E324A60010E277 /* UIAlertController+Extend.m in Sources */,
- 275FA1EB27E7351900CFEA2E /* KSBaseWKWebViewController.m in Sources */,
- 2779353B27E324A60010E277 /* UrlDecode.m in Sources */,
- 275FA22C27E7356B00CFEA2E /* CourseViewController.m in Sources */,
- 2779358D27E324A80010E277 /* DZNSegmentedControl.m in Sources */,
- 2779352027E324A60010E277 /* CALayer+Color.m in Sources */,
- 2723B62C27F157D500E0B90B /* ApplyBottomView.m in Sources */,
- 277935BA27E324A90010E277 /* FSCalendarWeekdayView.m in Sources */,
- 2723B66C27F15CFC00E0B90B /* SettingBodyView.m in Sources */,
- 2779354727E324A60010E277 /* UIButton+EnlargeEdge.m in Sources */,
- 27F9032A27E87C2E00C08A19 /* NetworkBodyView.m in Sources */,
- 277935A827E324A80010E277 /* MSSBrowseModel.m in Sources */,
- 277935B927E324A90010E277 /* FSCalendarCollectionViewLayout.m in Sources */,
- 2779359427E324A80010E277 /* TZAssetCell.m in Sources */,
- 2723B5CE27F157BE00E0B90B /* KSRCloudMediaManager.m in Sources */,
- 2779357027E324A70010E277 /* UITextView_Toolbar.m in Sources */,
- 2779355327E324A70010E277 /* VoNetworking+RequestManager.m in Sources */,
- 2723B62327F157D500E0B90B /* LFPopupMenuDefaultConfig.m in Sources */,
- 2779351627E324A60010E277 /* NSMutableArray+KSSafe.m in Sources */,
- 2779358927E324A80010E277 /* CoinModel.m in Sources */,
- 275FA1EA27E7351900CFEA2E /* KSRCIMDataSource.m in Sources */,
- 2779359C27E324A80010E277 /* TZProgressView.m in Sources */,
- 27F9033627E87C8B00C08A19 /* MineNavView.m in Sources */,
- 2723B62727F157D500E0B90B /* GroupMemberViewController.m in Sources */,
- 2779353727E324A60010E277 /* UIImage+Color.m in Sources */,
- 2779353127E324A60010E277 /* NSString+Extension.m in Sources */,
- 2779353F27E324A60010E277 /* UIView+KSLayer.m in Sources */,
- 275E8AB027E18F8800DD3F6E /* ViewController.m in Sources */,
- 277935B627E324A90010E277 /* FSCalendarCell.m in Sources */,
- 2779351E27E324A60010E277 /* UIViewController+zhStatusBarStyle.m in Sources */,
- 2779356B27E324A70010E277 /* pickBut.m in Sources */,
- 2779355F27E324A70010E277 /* UIView+ValueAdd.m in Sources */,
- 275FA1E227E7351900CFEA2E /* KSWebBackButton.m in Sources */,
- 277935BF27E324A90010E277 /* FSCalendarHeaderView.m in Sources */,
- 275FA1AE27E734C600CFEA2E /* KSImageAlert.m in Sources */,
- 275FA1DE27E7351900CFEA2E /* KSLocalWebViewController.m in Sources */,
- 2779354227E324A60010E277 /* UIImage+ResizeImage.m in Sources */,
- 277935B327E324A90010E277 /* FSCalendarCollectionView.m in Sources */,
- 2779352727E324A60010E277 /* NSArray+zh_SafeAccess.m in Sources */,
- 2779352227E324A60010E277 /* UITextView+ZWLimitCounter.m in Sources */,
- 27F9032927E87C2E00C08A19 /* NetworkingCheckController.m in Sources */,
- 277935A527E324A80010E277 /* MSSBrowseLoadingImageView.m in Sources */,
- 2779353E27E324A60010E277 /* UIDevice+TFDevice.m in Sources */,
- 2723B5C027F157B100E0B90B /* ChatAddressHeaderView.m in Sources */,
- 2723B68127F15D3D00E0B90B /* ModifyNameViewController.m in Sources */,
- 2779359927E324A80010E277 /* NSBundle+TZImagePicker.m in Sources */,
- 2779358E27E324A80010E277 /* WMPlayerModel.m in Sources */,
- 2779354E27E324A70010E277 /* KSAudioSessionManager.m in Sources */,
- 2779358127E324A80010E277 /* StateView.m in Sources */,
- 2779358C27E324A80010E277 /* AnimationContoller.m in Sources */,
- 2779359027E324A80010E277 /* WMLightView.m in Sources */,
- 2723B5A227F1578300E0B90B /* CreateFansGroupViewController.m in Sources */,
- 277935BD27E324A90010E277 /* FSCalendarConstants.m in Sources */,
- 2779351C27E324A60010E277 /* UIDevice+zhDeviceType.m in Sources */,
- 2723B62927F157D500E0B90B /* KSChatComplainController.m in Sources */,
- 2779351527E324A60010E277 /* NSArray+KSSafe.m in Sources */,
- 2723B61A27F157D500E0B90B /* KSSearchResultViewCell.m in Sources */,
- 277935B827E324A90010E277 /* FSCalendar.m in Sources */,
- 275FA23527E7356B00CFEA2E /* UserInfoManager.m in Sources */,
- 2779353327E324A60010E277 /* UIScreen+Extend.m in Sources */,
- 2723B67E27F15D3D00E0B90B /* ModifyPhoneCheckController.m in Sources */,
- 2779353A27E324A60010E277 /* UILabel+QWTopLeftLabel.m in Sources */,
- 2779359A27E324A80010E277 /* TZPhotoPreviewController.m in Sources */,
- 2779355E27E324A70010E277 /* KSAudioRecordFileManager.m in Sources */,
- 2779357A27E324A70010E277 /* PIckView.m in Sources */,
- 2779354127E324A60010E277 /* UIView+ShowProgress.m in Sources */,
- 277935B427E324A90010E277 /* FSCalendarDelegationProxy.m in Sources */,
- 2723B5BB27F157B100E0B90B /* ChatAddressBodyView.m in Sources */,
- 2779357427E324A70010E277 /* StoreButton.m in Sources */,
- 277935A927E324A80010E277 /* MSSBrowseActionSheet.m in Sources */,
- 275FA1E027E7351900CFEA2E /* RecordCheckManager.m in Sources */,
- 2779355627E324A70010E277 /* KSPremissionAlert.m in Sources */,
- 2779352827E324A60010E277 /* UIColor+Extend.m in Sources */,
- 2779357627E324A70010E277 /* ShoppCatView.m in Sources */,
- 2779357127E324A70010E277 /* SkipTextView.m in Sources */,
- 2723B61D27F157D500E0B90B /* GroupNoticeViewController.m in Sources */,
- 277935D027E324A90010E277 /* ALCalendarDate.m in Sources */,
- 2723B64427F15B5900E0B90B /* SCIndexViewConfiguration.m in Sources */,
- 2779358527E324A80010E277 /* LLFileManager.m in Sources */,
- 2779357327E324A70010E277 /* prodectButton.m in Sources */,
- 2723B5BD27F157B100E0B90B /* KSChatListSearchView.m in Sources */,
- 2723B61827F157D500E0B90B /* KSSearchHistoryMessageController.m in Sources */,
- 2779359327E324A80010E277 /* TZImageCropManager.m in Sources */,
- 2723B66727F15CFC00E0B90B /* ModifyBodyView.m in Sources */,
- 2779357727E324A70010E277 /* GRScanManager.m in Sources */,
- 277935D527E324A90010E277 /* ALCalendarManager.m in Sources */,
- 2779351927E324A60010E277 /* NSMutableString+KSSafe.m in Sources */,
- 2723B5BC27F157B100E0B90B /* GroupCreateView.m in Sources */,
- 2723B64627F15B5900E0B90B /* UITableView+SCIndexView.m in Sources */,
- 2779352327E324A60010E277 /* UILabel+Extension.m in Sources */,
- 2723B63027F157D500E0B90B /* GroupApplyChooseAllCell.m in Sources */,
- 2723B61F27F157D500E0B90B /* GroupNoticeModel.m in Sources */,
- 275FA1E627E7351900CFEA2E /* KSUpdateAlert.m in Sources */,
- 2779355027E324A70010E277 /* VoDiskCache.m in Sources */,
- 2779353927E324A60010E277 /* UIView+XIBView.m in Sources */,
- 2779355827E324A70010E277 /* UIImage+Addtions.m in Sources */,
- 277935D427E324A90010E277 /* UIView+ALFrame.m in Sources */,
- 275FA23C27E7356B00CFEA2E /* VefiBodyView.m in Sources */,
- 2779358027E324A80010E277 /* sortButton.m in Sources */,
- 2779356027E324A70010E277 /* KSRecordStatusView.m in Sources */,
- 2723B62B27F157D500E0B90B /* ApplyMemberModel.m in Sources */,
- 2779354D27E324A70010E277 /* KSGifRefreshFooter.m in Sources */,
- 275FA22F27E7356B00CFEA2E /* ShopMallViewController.m in Sources */,
- 275E8AAA27E18F8800DD3F6E /* AppDelegate.m in Sources */,
- 2779356427E324A70010E277 /* KSFullDatePicker.m in Sources */,
- 2723B5CF27F157BE00E0B90B /* GroupMemberModel.m in Sources */,
- 2723B62A27F157D500E0B90B /* GroupSettingViewController.m in Sources */,
- 2779359127E324A80010E277 /* FastForwardView.m in Sources */,
- 2723B63C27F159BA00E0B90B /* KSBaseTableViewController.m in Sources */,
- 2779358B27E324A80010E277 /* KLTNavigationController.m in Sources */,
- 27F9033127E87C2E00C08A19 /* DeviceCheckView.m in Sources */,
- 2723B62427F157D500E0B90B /* NoticeEditBodyView.m in Sources */,
- 2779352F27E324A60010E277 /* UIView+Hints.m in Sources */,
- 2779351D27E324A60010E277 /* NSString+zh_SafeAccess.m in Sources */,
- 2779351A27E324A60010E277 /* NSObject+AssociatedObject.m in Sources */,
- 2779359227E324A80010E277 /* WMPlayer.m in Sources */,
- 277935CF27E324A90010E277 /* ALCalendarHeader.m in Sources */,
- 275FA24827E7428200CFEA2E /* InstrumentChooseView.m in Sources */,
- 2779358627E324A80010E277 /* LLPhoto.m in Sources */,
- 277935C127E324A90010E277 /* FSCalendarAppearance.m in Sources */,
- 275E8ABB27E18F8B00DD3F6E /* main.m in Sources */,
- 2779359F27E324A80010E277 /* TZPhotoPreviewCell.m in Sources */,
- 277935A227E324A80010E277 /* TZLocationManager.m in Sources */,
- 2723B62827F157D500E0B90B /* KSSelectConversationViewController.m in Sources */,
- 275FA1E827E7351900CFEA2E /* CustomNavViewController.m in Sources */,
- 275FA24327E73DF600CFEA2E /* InstrumentDescView.m in Sources */,
- 2723B68027F15D3D00E0B90B /* FeedbackViewController.m in Sources */,
- 275FA1ED27E7351900CFEA2E /* KSUpdateManager.m in Sources */,
- 277935B227E324A90010E277 /* UIView+MSSLayout.m in Sources */,
- 275FA1E427E7351900CFEA2E /* KSWebNavView.m in Sources */,
- 2779356D27E324A70010E277 /* StoreShopCaterview.m in Sources */,
- 277935D327E324A90010E277 /* ALCalendarPicker.m in Sources */,
- 2779354F27E324A70010E277 /* VoLRUManager.m in Sources */,
- 2779356727E324A70010E277 /* UIColor+Hex.m in Sources */,
- 275FA1E727E7351900CFEA2E /* KSWebSocketManager.m in Sources */,
- 277935AE27E324A80010E277 /* MSSBrowseRemindView.m in Sources */,
- 2779356A27E324A70010E277 /* YKNodeModel.m in Sources */,
- 277935CE27E324A90010E277 /* ALCalendarConfig.m in Sources */,
- 2779354327E324A60010E277 /* UIButton+HasChooseImage.m in Sources */,
- 2779355927E324A70010E277 /* GRCreateManager.m in Sources */,
- 277935A727E324A80010E277 /* MSSBrowseCollectionViewCell.m in Sources */,
- 277935AD27E324A80010E277 /* MSSBrowseZoomScrollView.m in Sources */,
- 2723B68227F15D3D00E0B90B /* ModifyPhoneChangeController.m in Sources */,
- 277935C827E324A90010E277 /* TADotView.m in Sources */,
- 2779353027E324A60010E277 /* NSDate+Extension.m in Sources */,
- 277935D127E324A90010E277 /* ALCalendarCollectionView.m in Sources */,
- 2779355427E324A70010E277 /* VoNetWorking.m in Sources */,
- 275FA1EE27E7351900CFEA2E /* KSBaseViewController.m in Sources */,
- 2723B63827F157D500E0B90B /* GroupApplyChooseCell.m in Sources */,
- 2723B66827F15CFC00E0B90B /* FeedbackBodyView.m in Sources */,
- 2779354927E324A60010E277 /* MBProgressHUD+KSShow.m in Sources */,
- 277935A427E324A80010E277 /* TZImageRequestOperation.m in Sources */,
- 275FA23627E7356B00CFEA2E /* LoginBodyView.m in Sources */,
- 2779355A27E324A70010E277 /* QCCountdownButton.m in Sources */,
- 275FA1E127E7351900CFEA2E /* KSTabBarViewController.m in Sources */,
- 277935BB27E324A90010E277 /* FSCalendarSeparatorDecorationView.m in Sources */,
- 275FA1DF27E7351900CFEA2E /* RCConnectionManager.m in Sources */,
- 275FA22B27E7356B00CFEA2E /* HomeViewController.m in Sources */,
- 277935C027E324A90010E277 /* FSCalendarTransitionCoordinator.m in Sources */,
- 2779355B27E324A70010E277 /* KSStatusView.m in Sources */,
- 2779355227E324A70010E277 /* VoMemoryCache.m in Sources */,
- 2779352A27E324A60010E277 /* UIView+Dealloc.m in Sources */,
- 2779352D27E324A60010E277 /* NSString+CZHSizeExtension.m in Sources */,
- 2779353827E324A60010E277 /* UIView+KSExtension.m in Sources */,
- 2723B5CD27F157BE00E0B90B /* GroupListModel.m in Sources */,
- 2779354B27E324A60010E277 /* KSVideoEditor.m in Sources */,
- 277935A327E324A80010E277 /* TZGifPhotoPreviewController.m in Sources */,
- 277935A127E324A80010E277 /* TZImagePickerController.m in Sources */,
- 2723B63327F157D500E0B90B /* ChatComplainBodyView.m in Sources */,
- 2779357927E324A70010E277 /* KSImageButton.m in Sources */,
- 2779351827E324A60010E277 /* NSObject+KSImpChangeTool.m in Sources */,
- 2779359D27E324A80010E277 /* TZImageManager.m in Sources */,
- 2723B5BE27F157B100E0B90B /* ChatNavView.m in Sources */,
- 2723B66D27F15CFC00E0B90B /* ModifyNameBodyView.m in Sources */,
- 275FA23327E7356B00CFEA2E /* VefiCodeLoginController.m in Sources */,
- 2723B61B27F157D500E0B90B /* KSSearchRCLabel.m in Sources */,
- 275FA23B27E7356B00CFEA2E /* PasswordBodyView.m in Sources */,
- 277935C527E324A90010E277 /* UIView+SDExtension.m in Sources */,
- 2779356E27E324A70010E277 /* UITextField_Toolbar.m in Sources */,
- 277935B027E324A90010E277 /* MSSBrowseActionSheetCell.m in Sources */,
- 2779358827E324A80010E277 /* NSObject+Archiving.m in Sources */,
- 2779354427E324A60010E277 /* NSObject+AutoProperty.m in Sources */,
- 275FA23427E7356B00CFEA2E /* UserInfo.m in Sources */,
- 27F9033A27E87FD500C08A19 /* MineBodyView.m in Sources */,
- 275FA1EC27E7351900CFEA2E /* BaseViewController.m in Sources */,
- 275FA1DB27E7351900CFEA2E /* UINavigationController+KSNavigationBar.m in Sources */,
- 2779352127E324A60010E277 /* NSMutableAttributedString+CZHExtention.m in Sources */,
- 277935C727E324A90010E277 /* SDCollectionViewCell.m in Sources */,
- 2779358427E324A80010E277 /* LLImageCache.m in Sources */,
- 275FA23127E7356B00CFEA2E /* FirstSettingViewController.m in Sources */,
- 275FA1DD27E7351900CFEA2E /* KSBaseModel.m in Sources */,
- 2779354027E324A60010E277 /* UIImage+Property.m in Sources */,
- 2779356627E324A70010E277 /* ShopMessBtn.m in Sources */,
- 277935B727E324A90010E277 /* FSCalendarStickyHeader.m in Sources */,
- 2779356927E324A70010E277 /* YKMultiLevelTableView.m in Sources */,
- 2779351B27E324A60010E277 /* UIControl+ButtonAction.m in Sources */,
- 27F9032F27E87C2E00C08A19 /* AudioPlayManager.m in Sources */,
- 2779357C27E324A70010E277 /* NSString+MD5.m in Sources */,
- 2779355D27E324A70010E277 /* KSHoldButton.m in Sources */,
- 2723B62027F157D500E0B90B /* GroupNoticeCell.m in Sources */,
- 277935A627E324A80010E277 /* MSSBrowseLocalViewController.m in Sources */,
- 277935D227E324A90010E277 /* ALCalendarHelper.m in Sources */,
- 2779353D27E324A60010E277 /* UIScrollView+KSTouch.m in Sources */,
- 275FA23927E7356B00CFEA2E /* FirstSettingBodyView.m in Sources */,
- 277935CA27E324A90010E277 /* TAAnimatedDotView.m in Sources */,
- 2779353527E324A60010E277 /* NSObject+ReadDocument.m in Sources */,
- 277935C227E324A90010E277 /* QWdynamicModel.m in Sources */,
- 2779357E27E324A80010E277 /* KSInputView.m in Sources */,
- 2723B63427F157D500E0B90B /* GroupApplyMemberCell.m in Sources */,
- 2779352927E324A60010E277 /* zhPopupController.m in Sources */,
- 2779359527E324A80010E277 /* TZVideoEditedPreviewController.m in Sources */,
- 2723B63127F157D500E0B90B /* GroupSettingBodyView.m in Sources */,
- 2779358327E324A80010E277 /* LLPhotoBrowser.m in Sources */,
- 275FA23027E7356B00CFEA2E /* PasswordLoginController.m in Sources */,
- 2779351327E324A50010E277 /* NSDictionary+KSSafe.m in Sources */,
- 2779352B27E324A60010E277 /* NSObject+Parse.m in Sources */,
- 275FA23227E7356B00CFEA2E /* LoginViewController.m in Sources */,
- 2723B5C127F157B100E0B90B /* ContractListCell.m in Sources */,
- 275FA1E527E7351900CFEA2E /* KSAccompanyWebViewController.m in Sources */,
- 2779354A27E324A60010E277 /* UIImage+Resize.m in Sources */,
- 2723B5A327F1578300E0B90B /* KSChatListViewController.m in Sources */,
- 2723B68427F15D3D00E0B90B /* AddressViewController.m in Sources */,
- 2779357527E324A70010E277 /* LifeButton.m in Sources */,
- 275FA24027E737EE00CFEA2E /* ChooseInsturmentViewController.m in Sources */,
- 27F9032C27E87C2E00C08A19 /* KSNetworkAlert.m in Sources */,
- 2779353627E324A60010E277 /* CALayer+Layout.m in Sources */,
- 275FA22D27E7356B00CFEA2E /* ChatViewController.m in Sources */,
- 2723B5A427F1578300E0B90B /* KSChatConversationViewController.m in Sources */,
- 2723B62627F157D500E0B90B /* GroupApplyViewController.m in Sources */,
- 277935C427E324A90010E277 /* SDCycleScrollView.m in Sources */,
- 2723B61C27F157D500E0B90B /* KSRCSearchBar.m in Sources */,
- 277935C627E324A90010E277 /* SDQWMaskCustomModel.m in Sources */,
- 2779359E27E324A80010E277 /* TZPhotoPickerController.m in Sources */,
- 277935AA27E324A80010E277 /* MSSBrowseNetworkViewController.m in Sources */,
- 2723B63627F157D500E0B90B /* GroupMemberListCell.m in Sources */,
- 2723B62227F157D500E0B90B /* LFPopupMenu.m in Sources */,
- 2779357F27E324A80010E277 /* KeyChainTools.m in Sources */,
- 2723B61927F157D500E0B90B /* KSSearchResultModel.m in Sources */,
- 275FA1E327E7351900CFEA2E /* WeakWebViewScriptMessageDelegate.m in Sources */,
- 2779351F27E324A60010E277 /* UITextView+ZWPlaceHolder.m in Sources */,
- 2779353C27E324A60010E277 /* UIButton+Property.m in Sources */,
- 277935CC27E324A90010E277 /* SDQWMaskCustomView.m in Sources */,
- 2779351727E324A60010E277 /* NSObject+KSSwizzling.m in Sources */,
- 2779352C27E324A60010E277 /* UIView+AddConstraints.m in Sources */,
- 277935C927E324A90010E277 /* TAPageControl.m in Sources */,
- 2723B5A527F1578300E0B90B /* ChatAddressViewController.m in Sources */,
- 2723B66627F15CFC00E0B90B /* AboutUsBodyView.m in Sources */,
- 277935BC27E324A90010E277 /* FSCalendarExtensions.m in Sources */,
- 2779356227E324A70010E277 /* KSRecordPowerAnimationView.m in Sources */,
- 2779355527E324A70010E277 /* DiskFreeSpaceManager.m in Sources */,
- 2779352E27E324A60010E277 /* NSDictionary+Extension.m in Sources */,
- 2779355127E324A70010E277 /* VoCacheManager.m in Sources */,
- 277935B527E324A90010E277 /* FSCalendarDelegationFactory.m in Sources */,
- 2723B66927F15CFC00E0B90B /* PhoneChangeBodyView.m in Sources */,
- 27F9033227E87C2E00C08A19 /* SettingViewController.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 275E8ABC27E18F8C00DD3F6E /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 275E8AC527E18F8C00DD3F6E /* KulexiuForStudentTests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- 275E8AC627E18F8C00DD3F6E /* Sources */ = {
- isa = PBXSourcesBuildPhase;
- buildActionMask = 2147483647;
- files = (
- 275E8AD127E18F8C00DD3F6E /* KulexiuForStudentUITestsLaunchTests.m in Sources */,
- 275E8ACF27E18F8C00DD3F6E /* KulexiuForStudentUITests.m in Sources */,
- );
- runOnlyForDeploymentPostprocessing = 0;
- };
- /* End PBXSourcesBuildPhase section */
- /* Begin PBXTargetDependency section */
- 275E8AC227E18F8C00DD3F6E /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */;
- targetProxy = 275E8AC127E18F8C00DD3F6E /* PBXContainerItemProxy */;
- };
- 275E8ACC27E18F8C00DD3F6E /* PBXTargetDependency */ = {
- isa = PBXTargetDependency;
- target = 275E8AA427E18F8800DD3F6E /* KulexiuForStudent */;
- targetProxy = 275E8ACB27E18F8C00DD3F6E /* PBXContainerItemProxy */;
- };
- /* End PBXTargetDependency section */
- /* Begin PBXVariantGroup section */
- 275E8AB127E18F8800DD3F6E /* Main.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 275E8AB227E18F8800DD3F6E /* Base */,
- );
- name = Main.storyboard;
- sourceTree = "<group>";
- };
- 275E8AB627E18F8B00DD3F6E /* LaunchScreen.storyboard */ = {
- isa = PBXVariantGroup;
- children = (
- 275E8AB727E18F8B00DD3F6E /* Base */,
- );
- name = LaunchScreen.storyboard;
- sourceTree = "<group>";
- };
- /* End PBXVariantGroup section */
- /* Begin XCBuildConfiguration section */
- 275E8AD227E18F8C00DD3F6E /* Debug */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = dwarf;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- ENABLE_TESTABILITY = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_DYNAMIC_NO_PIC = NO;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_OPTIMIZATION_LEVEL = 0;
- GCC_PREPROCESSOR_DEFINITIONS = (
- "DEBUG=1",
- "$(inherited)",
- );
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.2;
- MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
- MTL_FAST_MATH = YES;
- ONLY_ACTIVE_ARCH = YES;
- SDKROOT = iphoneos;
- };
- name = Debug;
- };
- 275E8AD327E18F8C00DD3F6E /* Release */ = {
- isa = XCBuildConfiguration;
- buildSettings = {
- ALWAYS_SEARCH_USER_PATHS = NO;
- CLANG_ANALYZER_NONNULL = YES;
- CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
- CLANG_CXX_LIBRARY = "libc++";
- CLANG_ENABLE_MODULES = YES;
- CLANG_ENABLE_OBJC_ARC = YES;
- CLANG_ENABLE_OBJC_WEAK = YES;
- CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
- CLANG_WARN_BOOL_CONVERSION = YES;
- CLANG_WARN_COMMA = YES;
- CLANG_WARN_CONSTANT_CONVERSION = YES;
- CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
- CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
- CLANG_WARN_EMPTY_BODY = YES;
- CLANG_WARN_ENUM_CONVERSION = YES;
- CLANG_WARN_INFINITE_RECURSION = YES;
- CLANG_WARN_INT_CONVERSION = YES;
- CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
- CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
- CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
- CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
- CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
- CLANG_WARN_STRICT_PROTOTYPES = YES;
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
- CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
- CLANG_WARN_UNREACHABLE_CODE = YES;
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
- COPY_PHASE_STRIP = NO;
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
- ENABLE_NS_ASSERTIONS = NO;
- ENABLE_STRICT_OBJC_MSGSEND = YES;
- GCC_C_LANGUAGE_STANDARD = gnu11;
- GCC_NO_COMMON_BLOCKS = YES;
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
- GCC_WARN_UNDECLARED_SELECTOR = YES;
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
- GCC_WARN_UNUSED_FUNCTION = YES;
- GCC_WARN_UNUSED_VARIABLE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.2;
- MTL_ENABLE_DEBUG_INFO = NO;
- MTL_FAST_MATH = YES;
- SDKROOT = iphoneos;
- VALIDATE_PRODUCT = YES;
- };
- name = Release;
- };
- 275E8AD527E18F8C00DD3F6E /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 63DC852CB04F64963003C553 /* Pods-KulexiuForStudent.debug.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1.0.0;
- DEVELOPMENT_TEAM = P664H7S5LL;
- GCC_PREFIX_HEADER = "$(SRCROOT)/KulexiuForStudent/Common/Define/PrefixHeader.pch";
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = KulexiuForStudent/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = "酷乐秀学生端";
- INFOPLIST_KEY_NSAppleMusicUsageDescription = "App需要您的同意访问媒体资料库权限,用于播放媒体服务";
- INFOPLIST_KEY_NSCameraUsageDescription = "APP需要您的同意,访问您的相机,以便您正常使用上传图片、视频课程等服务";
- INFOPLIST_KEY_NSMicrophoneUsageDescription = "App需要您的同意访问麦克风权限,用于您的语音服务、视频教学";
- INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
- INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
- INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
- INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
- INFOPLIST_KEY_UIMainStoryboardFile = Main;
- INFOPLIST_KEY_UIRequiresFullScreen = YES;
- INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
- INFOPLIST_KEY_UIUserInterfaceStyle = Light;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- MARKETING_VERSION = 1.0.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudent;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = YES;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Debug;
- };
- 275E8AD627E18F8C00DD3F6E /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 267E3608F0FE8D4A55A1D46F /* Pods-KulexiuForStudent.release.xcconfig */;
- buildSettings = {
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
- ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1.0.0;
- DEVELOPMENT_TEAM = P664H7S5LL;
- GCC_PREFIX_HEADER = "$(SRCROOT)/KulexiuForStudent/Common/Define/PrefixHeader.pch";
- GENERATE_INFOPLIST_FILE = YES;
- INFOPLIST_FILE = KulexiuForStudent/Info.plist;
- INFOPLIST_KEY_CFBundleDisplayName = "酷乐秀学生端";
- INFOPLIST_KEY_NSAppleMusicUsageDescription = "App需要您的同意访问媒体资料库权限,用于播放媒体服务";
- INFOPLIST_KEY_NSCameraUsageDescription = "APP需要您的同意,访问您的相机,以便您正常使用上传图片、视频课程等服务";
- INFOPLIST_KEY_NSMicrophoneUsageDescription = "App需要您的同意访问麦克风权限,用于您的语音服务、视频教学";
- INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
- INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "App需要您的同意访问您的相册权限,用于您的图片课件上传服务";
- INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
- INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
- INFOPLIST_KEY_UIMainStoryboardFile = Main;
- INFOPLIST_KEY_UIRequiresFullScreen = YES;
- INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
- INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
- INFOPLIST_KEY_UIUserInterfaceStyle = Light;
- IPHONEOS_DEPLOYMENT_TARGET = 11.0;
- LD_RUNPATH_SEARCH_PATHS = (
- "$(inherited)",
- "@executable_path/Frameworks",
- );
- MARKETING_VERSION = 1.0.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudent;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = YES;
- TARGETED_DEVICE_FAMILY = "1,2";
- };
- name = Release;
- };
- 275E8AD827E18F8C00DD3F6E /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 25A92766B52F3FB4AFA45A9B /* Pods-KulexiuForStudentTests.debug.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = P664H7S5LL;
- GENERATE_INFOPLIST_FILE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.2;
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KulexiuForStudent.app/KulexiuForStudent";
- };
- name = Debug;
- };
- 275E8AD927E18F8C00DD3F6E /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = ED3E62A50E433BC13E633D1C /* Pods-KulexiuForStudentTests.release.xcconfig */;
- buildSettings = {
- BUNDLE_LOADER = "$(TEST_HOST)";
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = P664H7S5LL;
- GENERATE_INFOPLIST_FILE = YES;
- IPHONEOS_DEPLOYMENT_TARGET = 15.2;
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentTests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/KulexiuForStudent.app/KulexiuForStudent";
- };
- name = Release;
- };
- 275E8ADB27E18F8C00DD3F6E /* Debug */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = 04AE318E8988C2AC148D551B /* Pods-KulexiuForStudent-KulexiuForStudentUITests.debug.xcconfig */;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = P664H7S5LL;
- GENERATE_INFOPLIST_FILE = YES;
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentUITests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = KulexiuForStudent;
- };
- name = Debug;
- };
- 275E8ADC27E18F8C00DD3F6E /* Release */ = {
- isa = XCBuildConfiguration;
- baseConfigurationReference = D5D730A1D1EC18E5028F1AD7 /* Pods-KulexiuForStudent-KulexiuForStudentUITests.release.xcconfig */;
- buildSettings = {
- CODE_SIGN_STYLE = Automatic;
- CURRENT_PROJECT_VERSION = 1;
- DEVELOPMENT_TEAM = P664H7S5LL;
- GENERATE_INFOPLIST_FILE = YES;
- MARKETING_VERSION = 1.0;
- PRODUCT_BUNDLE_IDENTIFIER = com.JingMing.KulexiuForStudentUITests;
- PRODUCT_NAME = "$(TARGET_NAME)";
- SWIFT_EMIT_LOC_STRINGS = NO;
- TARGETED_DEVICE_FAMILY = "1,2";
- TEST_TARGET_NAME = KulexiuForStudent;
- };
- name = Release;
- };
- /* End XCBuildConfiguration section */
- /* Begin XCConfigurationList section */
- 275E8AA027E18F8800DD3F6E /* Build configuration list for PBXProject "KulexiuForStudent" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 275E8AD227E18F8C00DD3F6E /* Debug */,
- 275E8AD327E18F8C00DD3F6E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 275E8AD427E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudent" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 275E8AD527E18F8C00DD3F6E /* Debug */,
- 275E8AD627E18F8C00DD3F6E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 275E8AD727E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentTests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 275E8AD827E18F8C00DD3F6E /* Debug */,
- 275E8AD927E18F8C00DD3F6E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- 275E8ADA27E18F8C00DD3F6E /* Build configuration list for PBXNativeTarget "KulexiuForStudentUITests" */ = {
- isa = XCConfigurationList;
- buildConfigurations = (
- 275E8ADB27E18F8C00DD3F6E /* Debug */,
- 275E8ADC27E18F8C00DD3F6E /* Release */,
- );
- defaultConfigurationIsVisible = 0;
- defaultConfigurationName = Release;
- };
- /* End XCConfigurationList section */
- };
- rootObject = 275E8A9D27E18F8800DD3F6E /* Project object */;
- }
|