project.pbxproj 283 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 51;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 2729F7C724C6C87400E1F3C4 /* OpenFileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7C624C6C87400E1F3C4 /* OpenFileViewController.m */; };
  10. 2729F7CA24C6EB4A00E1F3C4 /* SubjectNameModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7C924C6EB4A00E1F3C4 /* SubjectNameModel.m */; };
  11. 2729F7CD24C6F3F300E1F3C4 /* SongListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7CC24C6F3F300E1F3C4 /* SongListModel.m */; };
  12. 2729F7D124C8174A00E1F3C4 /* FileNameView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7D024C8174A00E1F3C4 /* FileNameView.m */; };
  13. 2729F7D324C8175E00E1F3C4 /* FileNameView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2729F7D224C8175E00E1F3C4 /* FileNameView.xib */; };
  14. 2729F7DA24C81E9B00E1F3C4 /* ExamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7D924C81E9B00E1F3C4 /* ExamViewController.m */; };
  15. 2729F7DD24C81FA200E1F3C4 /* LibraryTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7DC24C81FA200E1F3C4 /* LibraryTipsView.m */; };
  16. 2729F7DF24C81FB000E1F3C4 /* LibraryTipsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2729F7DE24C81FB000E1F3C4 /* LibraryTipsView.xib */; };
  17. 2729F7E324C8244100E1F3C4 /* ExamListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7E124C8244100E1F3C4 /* ExamListCell.m */; };
  18. 2729F7E424C8244100E1F3C4 /* ExamListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2729F7E224C8244100E1F3C4 /* ExamListCell.xib */; };
  19. 2729F7E724C8326900E1F3C4 /* RecordExamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7E624C8326900E1F3C4 /* RecordExamViewController.m */; };
  20. 2729F7EA24C8328700E1F3C4 /* RecordBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7E924C8328700E1F3C4 /* RecordBodyView.m */; };
  21. 2729F7EC24C8329700E1F3C4 /* RecordBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2729F7EB24C8329700E1F3C4 /* RecordBodyView.xib */; };
  22. 2729F7F024C8379D00E1F3C4 /* RecordListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7EE24C8379D00E1F3C4 /* RecordListCell.m */; };
  23. 2729F7F124C8379D00E1F3C4 /* RecordListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2729F7EF24C8379D00E1F3C4 /* RecordListCell.xib */; };
  24. 2729F7F424C8395300E1F3C4 /* RecordBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7F324C8395300E1F3C4 /* RecordBottomView.m */; };
  25. 2729F7F624C8398B00E1F3C4 /* RecordBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2729F7F524C8398B00E1F3C4 /* RecordBottomView.xib */; };
  26. 2729F7F924C8425E00E1F3C4 /* RecordTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7F824C8425E00E1F3C4 /* RecordTipsView.m */; };
  27. 2729F7FB24C8427200E1F3C4 /* RecordTipsView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2729F7FA24C8427100E1F3C4 /* RecordTipsView.xib */; };
  28. 2729F7FE24C851FA00E1F3C4 /* BaseExamModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2729F7FC24C851F900E1F3C4 /* BaseExamModel.m */; };
  29. 27476F4824BBFB5900181362 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F4724BBFB5900181362 /* AppDelegate.m */; };
  30. 27476F4E24BBFB5900181362 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F4D24BBFB5900181362 /* ViewController.m */; };
  31. 27476F5124BBFB5900181362 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 27476F4F24BBFB5900181362 /* Main.storyboard */; };
  32. 27476F5324BBFB5C00181362 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 27476F5224BBFB5C00181362 /* Assets.xcassets */; };
  33. 27476F5624BBFB5C00181362 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 27476F5424BBFB5C00181362 /* LaunchScreen.storyboard */; };
  34. 27476F5924BBFB5C00181362 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F5824BBFB5C00181362 /* main.m */; };
  35. 27476F6324BBFB5C00181362 /* MusicGradeExamTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F6224BBFB5C00181362 /* MusicGradeExamTests.m */; };
  36. 27476F6E24BBFB5C00181362 /* MusicGradeExamUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F6D24BBFB5C00181362 /* MusicGradeExamUITests.m */; };
  37. 2747718724BC0C0500181362 /* JYEqualCellSpaceFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F7C24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.m */; };
  38. 2747718824BC0C0500181362 /* DZNSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F7D24BC0BFF00181362 /* DZNSegmentedControl.m */; };
  39. 2747718924BC0C0500181362 /* WMPlayerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8124BC0BFF00181362 /* WMPlayerModel.m */; };
  40. 2747718A24BC0C0500181362 /* WMPlayer.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 27476F8324BC0BFF00181362 /* WMPlayer.bundle */; };
  41. 2747718B24BC0C0500181362 /* WMLightView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8624BC0BFF00181362 /* WMLightView.m */; };
  42. 2747718C24BC0C0500181362 /* FastForwardView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8724BC0BFF00181362 /* FastForwardView.m */; };
  43. 2747718D24BC0C0500181362 /* WMPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8824BC0BFF00181362 /* WMPlayer.m */; };
  44. 2747718E24BC0C0500181362 /* UIView+ShowProgress.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8924BC0BFF00181362 /* UIView+ShowProgress.m */; };
  45. 2747718F24BC0C0500181362 /* TZImageCropManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F8E24BC0BFF00181362 /* TZImageCropManager.m */; };
  46. 2747719024BC0C0500181362 /* TZAssetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9024BC0BFF00181362 /* TZAssetCell.m */; };
  47. 2747719124BC0C0500181362 /* TZVideoPlayerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9124BC0BFF00181362 /* TZVideoPlayerController.m */; };
  48. 2747719224BC0C0500181362 /* TZAssetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9224BC0BFF00181362 /* TZAssetModel.m */; };
  49. 2747719324BC0C0500181362 /* NSBundle+TZImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9324BC0BFF00181362 /* NSBundle+TZImagePicker.m */; };
  50. 2747719424BC0C0500181362 /* UIView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9624BC0BFF00181362 /* UIView+Layout.m */; };
  51. 2747719524BC0C0500181362 /* TZPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9724BC0BFF00181362 /* TZPhotoPreviewController.m */; };
  52. 2747719624BC0C0500181362 /* TZImagePickerController.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 27476F9824BC0BFF00181362 /* TZImagePickerController.bundle */; };
  53. 2747719724BC0C0500181362 /* TZProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9924BC0BFF00181362 /* TZProgressView.m */; };
  54. 2747719824BC0C0500181362 /* TZImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9D24BC0BFF00181362 /* TZImageManager.m */; };
  55. 2747719924BC0C0500181362 /* TZPhotoPickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476F9F24BC0BFF00181362 /* TZPhotoPickerController.m */; };
  56. 2747719A24BC0C0500181362 /* TZPhotoPreviewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA024BC0BFF00181362 /* TZPhotoPreviewCell.m */; };
  57. 2747719B24BC0C0500181362 /* TZImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA624BC0BFF00181362 /* TZImagePickerController.m */; };
  58. 2747719C24BC0C0500181362 /* TZLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA724BC0BFF00181362 /* TZLocationManager.m */; };
  59. 2747719D24BC0C0500181362 /* TZGifPhotoPreviewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA824BC0BFF00181362 /* TZGifPhotoPreviewController.m */; };
  60. 2747719E24BC0C0500181362 /* TZImageRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FA924BC0BFF00181362 /* TZImageRequestOperation.m */; };
  61. 2747719F24BC0C0500181362 /* SCIndexViewConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FAC24BC0BFF00181362 /* SCIndexViewConfiguration.m */; };
  62. 274771A024BC0C0500181362 /* SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FAE24BC0BFF00181362 /* SCIndexView.m */; };
  63. 274771A124BC0C0500181362 /* UITableView+SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FB024BC0BFF00181362 /* UITableView+SCIndexView.m */; };
  64. 274771A224BC0C0500181362 /* MSSBrowseLoadingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FB524BC0BFF00181362 /* MSSBrowseLoadingImageView.m */; };
  65. 274771A324BC0C0500181362 /* MSSBrowseLocalViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FBB24BC0BFF00181362 /* MSSBrowseLocalViewController.m */; };
  66. 274771A424BC0C0500181362 /* MSSBrowseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FBC24BC0BFF00181362 /* MSSBrowseCollectionViewCell.m */; };
  67. 274771A524BC0C0500181362 /* MSSBrowseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FBE24BC0BFF00181362 /* MSSBrowseModel.m */; };
  68. 274771A624BC0C0500181362 /* MSSBrowseActionSheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC024BC0BFF00181362 /* MSSBrowseActionSheet.m */; };
  69. 274771A724BC0C0500181362 /* MSSBrowseNetworkViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC124BC0BFF00181362 /* MSSBrowseNetworkViewController.m */; };
  70. 274771A824BC0C0500181362 /* UIImage+MSSScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC224BC0BFF00181362 /* UIImage+MSSScale.m */; };
  71. 274771A924BC0C0500181362 /* MSSBrowseBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC324BC0BFF00181362 /* MSSBrowseBaseViewController.m */; };
  72. 274771AA24BC0C0500181362 /* MSSBrowseZoomScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC524BC0BFF00181362 /* MSSBrowseZoomScrollView.m */; };
  73. 274771AB24BC0C0500181362 /* MSSBrowseRemindView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FC624BC0BFF00181362 /* MSSBrowseRemindView.m */; };
  74. 274771AC24BC0C0500181362 /* mss_browseLoading@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27476FC724BC0BFF00181362 /* mss_browseLoading@3x.png */; };
  75. 274771AD24BC0C0500181362 /* MSSBrowseActionSheetCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FCA24BC0BFF00181362 /* MSSBrowseActionSheetCell.m */; };
  76. 274771AE24BC0C0500181362 /* mss_browseLoading@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 27476FCC24BC0BFF00181362 /* mss_browseLoading@2x.png */; };
  77. 274771AF24BC0C0500181362 /* UIView+MSSLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FCD24BC0BFF00181362 /* UIView+MSSLayout.m */; };
  78. 274771B024BC0C0500181362 /* UIView+Animation.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FCE24BC0BFF00181362 /* UIView+Animation.m */; };
  79. 274771B124BC0C0500181362 /* ZKCycleScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FD224BC0BFF00181362 /* ZKCycleScrollView.m */; };
  80. 274771B224BC0C0500181362 /* ZKCycleScrollViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FD424BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.m */; };
  81. 274771B324BC0C0500181362 /* TYPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FD924BC0BFF00181362 /* TYPageControl.m */; };
  82. 274771B424BC0C0500181362 /* TYCyclePagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FDA24BC0BFF00181362 /* TYCyclePagerView.m */; };
  83. 274771B524BC0C0500181362 /* TYCyclePagerTransformLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FDB24BC0BFF00181362 /* TYCyclePagerTransformLayout.m */; };
  84. 274771B624BC0C0500181362 /* KSPickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FDE24BC0BFF00181362 /* KSPickerView.m */; };
  85. 274771B724BC0C0500181362 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE024BC0BFF00181362 /* NSObject+ReadDocument.m */; };
  86. 274771B824BC0C0500181362 /* ALCalendarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE224BC0BFF00181362 /* ALCalendarCell.m */; };
  87. 274771B924BC0C0500181362 /* ALCalendarConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE324BC0BFF00181362 /* ALCalendarConfig.m */; };
  88. 274771BA24BC0C0500181362 /* ALCalendarHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE424BC0BFF00181362 /* ALCalendarHeader.m */; };
  89. 274771BB24BC0C0500181362 /* ALCalendarDate.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE524BC0BFF00181362 /* ALCalendarDate.m */; };
  90. 274771BC24BC0C0500181362 /* ALCalendarCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE624BC0BFF00181362 /* ALCalendarCollectionView.m */; };
  91. 274771BD24BC0C0500181362 /* ALCalendarHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FE724BC0BFF00181362 /* ALCalendarHelper.m */; };
  92. 274771BE24BC0C0500181362 /* ALCalendarPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FF124BC0BFF00181362 /* ALCalendarPicker.m */; };
  93. 274771BF24BC0C0500181362 /* UIView+ALFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FF224BC0BFF00181362 /* UIView+ALFrame.m */; };
  94. 274771C024BC0C0500181362 /* ALCalendarManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FF324BC0BFF00181362 /* ALCalendarManager.m */; };
  95. 274771C224BC0C0500181362 /* KSBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FFC24BC0C0000181362 /* KSBaseViewController.m */; };
  96. 274771C324BC0C0500181362 /* KSBaseWKWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FFE24BC0C0000181362 /* KSBaseWKWebViewController.m */; };
  97. 274771C424BC0C0500181362 /* CustomNavViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27476FFF24BC0C0000181362 /* CustomNavViewController.m */; };
  98. 274771C524BC0C0500181362 /* UINavigationController+KSNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747700024BC0C0000181362 /* UINavigationController+KSNavigationBar.m */; };
  99. 274771C624BC0C0500181362 /* KSTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747700124BC0C0000181362 /* KSTabBarController.m */; };
  100. 274771C724BC0C0500181362 /* KSRequestManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747700224BC0C0000181362 /* KSRequestManager.m */; };
  101. 274771C824BC0C0500181362 /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747700624BC0C0100181362 /* HomeViewController.m */; };
  102. 274771C924BC0C0500181362 /* ClassroomViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747701024BC0C0100181362 /* ClassroomViewController.m */; };
  103. 274771CA24BC0C0500181362 /* RoomLoginHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747701424BC0C0100181362 /* RoomLoginHelper.m */; };
  104. 274771CB24BC0C0500181362 /* RTCService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747701924BC0C0100181362 /* RTCService.m */; };
  105. 274771CC24BC0C0500181362 /* UIView+MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747702024BC0C0100181362 /* UIView+MBProgressHUD.m */; };
  106. 274771CD24BC0C0500181362 /* RolePortraitView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747702224BC0C0100181362 /* RolePortraitView.m */; };
  107. 274771CE24BC0C0500181362 /* HTTPUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747702624BC0C0100181362 /* HTTPUtility.m */; };
  108. 274771CF24BC0C0500181362 /* HTTPResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747702724BC0C0100181362 /* HTTPResult.m */; };
  109. 274771D124BC0C0500181362 /* ApplySpeechMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703224BC0C0100181362 /* ApplySpeechMessage.m */; };
  110. 274771D224BC0C0500181362 /* DisplayCommandMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703424BC0C0100181362 /* DisplayCommandMessage.m */; };
  111. 274771D324BC0C0500181362 /* ControlDeviceNotifyMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703724BC0C0100181362 /* ControlDeviceNotifyMessage.m */; };
  112. 274771D424BC0C0500181362 /* TicketExpiredMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703824BC0C0100181362 /* TicketExpiredMessage.m */; };
  113. 274771D524BC0C0500181362 /* WhiteboardMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703B24BC0C0100181362 /* WhiteboardMessage.m */; };
  114. 274771D624BC0C0500181362 /* AssistantTransferMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703C24BC0C0100181362 /* AssistantTransferMessage.m */; };
  115. 274771D724BC0C0500181362 /* RoleChangedMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703D24BC0C0100181362 /* RoleChangedMessage.m */; };
  116. 274771D824BC0C0500181362 /* InviteUpgradeMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747703E24BC0C0100181362 /* InviteUpgradeMessage.m */; };
  117. 274771D924BC0C0500181362 /* DeviceMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704024BC0C0100181362 /* DeviceMessage.m */; };
  118. 274771DA24BC0C0500181362 /* MemberChangeMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704124BC0C0100181362 /* MemberChangeMessage.m */; };
  119. 274771DB24BC0C0500181362 /* ApplySpeechResultMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704324BC0C0100181362 /* ApplySpeechResultMessage.m */; };
  120. 274771DC24BC0C0500181362 /* TurnPageMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704624BC0C0100181362 /* TurnPageMessage.m */; };
  121. 274771DD24BC0C0500181362 /* NodePlayMessage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704724BC0C0100181362 /* NodePlayMessage.m */; };
  122. 274771DE24BC0C0500181362 /* Whiteboard.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704A24BC0C0100181362 /* Whiteboard.m */; };
  123. 274771DF24BC0C0500181362 /* RoomMember.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704B24BC0C0100181362 /* RoomMember.m */; };
  124. 274771E024BC0C0500181362 /* Classroom.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747704C24BC0C0100181362 /* Classroom.m */; };
  125. 274771E124BC0C0500181362 /* ClassroomService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747705124BC0C0100181362 /* ClassroomService.m */; };
  126. 274771E224BC0C0500181362 /* KSRemoteUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747705224BC0C0100181362 /* KSRemoteUserManager.m */; };
  127. 274771E324BC0C0500181362 /* KSIMService.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747705524BC0C0100181362 /* KSIMService.m */; };
  128. 274771E424BC0C0500181362 /* NotifyMessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747705D24BC0C0100181362 /* NotifyMessageViewController.m */; };
  129. 274771E524BC0C0500181362 /* FirstSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706424BC0C0100181362 /* FirstSettingViewController.m */; };
  130. 274771E624BC0C0500181362 /* LoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706524BC0C0100181362 /* LoginViewController.m */; };
  131. 274771E724BC0C0500181362 /* RegisterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706624BC0C0100181362 /* RegisterViewController.m */; };
  132. 274771E824BC0C0500181362 /* VefiLoginViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706724BC0C0100181362 /* VefiLoginViewController.m */; };
  133. 274771E924BC0C0500181362 /* ModifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706824BC0C0100181362 /* ModifyViewController.m */; };
  134. 274771EB24BC0C0500181362 /* UserInfoManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747706F24BC0C0100181362 /* UserInfoManager.m */; };
  135. 274771EC24BC0C0500181362 /* LoginBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707224BC0C0100181362 /* LoginBodyView.m */; };
  136. 274771ED24BC0C0500181362 /* LoginBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2747707324BC0C0100181362 /* LoginBodyView.xib */; };
  137. 274771EE24BC0C0500181362 /* OnlineRoomManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707624BC0C0200181362 /* OnlineRoomManager.m */; };
  138. 274771EF24BC0C0500181362 /* KSRCIMDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707A24BC0C0200181362 /* KSRCIMDataSource.m */; };
  139. 274771F024BC0C0500181362 /* RCConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707C24BC0C0200181362 /* RCConnectionManager.m */; };
  140. 274771F124BC0C0500181362 /* KSUpdateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747707D24BC0C0200181362 /* KSUpdateManager.m */; };
  141. 274771F224BC0C0500181362 /* KSNetworking+RequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708424BC0C0300181362 /* KSNetworking+RequestOperation.m */; };
  142. 274771F324BC0C0500181362 /* KSNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708524BC0C0300181362 /* KSNetworking.m */; };
  143. 274771F424BC0C0500181362 /* KSLRUManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708B24BC0C0300181362 /* KSLRUManager.m */; };
  144. 274771F524BC0C0500181362 /* KSMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708C24BC0C0300181362 /* KSMemoryCache.m */; };
  145. 274771F624BC0C0500181362 /* KSDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708D24BC0C0300181362 /* KSDiskCache.m */; };
  146. 274771F724BC0C0500181362 /* KSCacheManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747708E24BC0C0300181362 /* KSCacheManager.m */; };
  147. 274771F824BC0C0500181362 /* NSDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709424BC0C0300181362 /* NSDictionary+KSSafe.m */; };
  148. 274771F924BC0C0500181362 /* NSMutableDictionary+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709624BC0C0300181362 /* NSMutableDictionary+KSSafe.m */; };
  149. 274771FA24BC0C0500181362 /* NSArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709824BC0C0300181362 /* NSArray+KSSafe.m */; };
  150. 274771FB24BC0C0500181362 /* NSMutableArray+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709924BC0C0300181362 /* NSMutableArray+KSSafe.m */; };
  151. 274771FC24BC0C0500181362 /* NSObject+KSSwizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709B24BC0C0300181362 /* NSObject+KSSwizzling.m */; };
  152. 274771FD24BC0C0500181362 /* NSObject+KSImpChangeTool.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709C24BC0C0300181362 /* NSObject+KSImpChangeTool.m */; };
  153. 274771FE24BC0C0500181362 /* NSMutableString+KSSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747709F24BC0C0300181362 /* NSMutableString+KSSafe.m */; };
  154. 274771FF24BC0C0500181362 /* NSObject+AssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A224BC0C0300181362 /* NSObject+AssociatedObject.m */; };
  155. 2747720024BC0C0500181362 /* UIControl+ButtonAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A424BC0C0300181362 /* UIControl+ButtonAction.m */; };
  156. 2747720124BC0C0500181362 /* UIDevice+zhDeviceType.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A524BC0C0300181362 /* UIDevice+zhDeviceType.m */; };
  157. 2747720224BC0C0500181362 /* NSString+zh_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A624BC0C0300181362 /* NSString+zh_SafeAccess.m */; };
  158. 2747720324BC0C0500181362 /* UIViewController+zhStatusBarStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A824BC0C0300181362 /* UIViewController+zhStatusBarStyle.m */; };
  159. 2747720424BC0C0500181362 /* UITextView+ZWPlaceHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770A924BC0C0300181362 /* UITextView+ZWPlaceHolder.m */; };
  160. 2747720524BC0C0500181362 /* CALayer+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770AB24BC0C0300181362 /* CALayer+Color.m */; };
  161. 2747720624BC0C0500181362 /* NSMutableAttributedString+CZHExtention.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770AD24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.m */; };
  162. 2747720724BC0C0500181362 /* UITextView+ZWLimitCounter.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770AF24BC0C0300181362 /* UITextView+ZWLimitCounter.m */; };
  163. 2747720824BC0C0500181362 /* UILabel+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770B024BC0C0300181362 /* UILabel+Extension.m */; };
  164. 2747720924BC0C0500181362 /* UIAlertController+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770B524BC0C0300181362 /* UIAlertController+Extend.m */; };
  165. 2747720A24BC0C0500181362 /* UIColor+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770B924BC0C0300181362 /* UIColor+Extend.m */; };
  166. 2747720B24BC0C0500181362 /* UIView+Dealloc.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BA24BC0C0300181362 /* UIView+Dealloc.m */; };
  167. 2747720C24BC0C0500181362 /* NSObject+Parse.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BB24BC0C0300181362 /* NSObject+Parse.m */; };
  168. 2747720D24BC0C0500181362 /* UIView+AddConstraints.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BC24BC0C0300181362 /* UIView+AddConstraints.m */; };
  169. 2747720E24BC0C0500181362 /* NSString+CZHSizeExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BD24BC0C0300181362 /* NSString+CZHSizeExtension.m */; };
  170. 2747720F24BC0C0500181362 /* NSDictionary+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770BF24BC0C0300181362 /* NSDictionary+Extension.m */; };
  171. 2747721024BC0C0500181362 /* UIView+Hints.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770C424BC0C0300181362 /* UIView+Hints.m */; };
  172. 2747721124BC0C0500181362 /* NSArray+ks_SafeAccess.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770C624BC0C0300181362 /* NSArray+ks_SafeAccess.m */; };
  173. 2747721224BC0C0500181362 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770C824BC0C0300181362 /* NSDate+Extension.m */; };
  174. 2747721324BC0C0500181362 /* NSString+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770CA24BC0C0300181362 /* NSString+Extension.m */; };
  175. 2747721424BC0C0500181362 /* NSDate+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770CB24BC0C0300181362 /* NSDate+Transform.m */; };
  176. 2747721524BC0C0500181362 /* UIScreen+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770CE24BC0C0300181362 /* UIScreen+Extend.m */; };
  177. 2747721624BC0C0500181362 /* CALayer+KSLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770CF24BC0C0300181362 /* CALayer+KSLayout.m */; };
  178. 2747721724BC0C0500181362 /* UIImageView+CornerRadius.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770D124BC0C0300181362 /* UIImageView+CornerRadius.m */; };
  179. 2747721824BC0C0500181362 /* NSObject+ReadDocument.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770D224BC0C0300181362 /* NSObject+ReadDocument.m */; };
  180. 2747721924BC0C0500181362 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770D324BC0C0300181362 /* UIImage+Color.m */; };
  181. 2747721A24BC0C0500181362 /* UIImage+Addtions.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770D924BC0C0400181362 /* UIImage+Addtions.m */; };
  182. 2747721B24BC0C0500181362 /* UIView+XIBView.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DA24BC0C0400181362 /* UIView+XIBView.m */; };
  183. 2747721C24BC0C0500181362 /* UrlDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DB24BC0C0400181362 /* UrlDecode.m */; };
  184. 2747721D24BC0C0500181362 /* UIButton+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DC24BC0C0400181362 /* UIButton+Property.m */; };
  185. 2747721E24BC0C0500181362 /* UIDevice+TFDevice.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DD24BC0C0400181362 /* UIDevice+TFDevice.m */; };
  186. 2747721F24BC0C0500181362 /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770DE24BC0C0400181362 /* UIColor+Hex.m */; };
  187. 2747722024BC0C0500181362 /* UIImage+Property.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E024BC0C0400181362 /* UIImage+Property.m */; };
  188. 2747722124BC0C0500181362 /* UIImage+ResizeImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E124BC0C0400181362 /* UIImage+ResizeImage.m */; };
  189. 2747722224BC0C0500181362 /* UIButton+HasChooseImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E324BC0C0400181362 /* UIButton+HasChooseImage.m */; };
  190. 2747722324BC0C0500181362 /* NSObject+AutoProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E424BC0C0400181362 /* NSObject+AutoProperty.m */; };
  191. 2747722424BC0C0500181362 /* UIImage+UIImageScale.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770E524BC0C0400181362 /* UIImage+UIImageScale.m */; };
  192. 2747722524BC0C0500181362 /* UIButton+EnlargeEdge.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770EF24BC0C0400181362 /* UIButton+EnlargeEdge.m */; };
  193. 2747722624BC0C0500181362 /* MBProgressHUD+KSShow.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770F324BC0C0400181362 /* MBProgressHUD+KSShow.m */; };
  194. 2747722724BC0C0500181362 /* UIImage+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770F424BC0C0400181362 /* UIImage+Resize.m */; };
  195. 2747722824BC0C0500181362 /* GRCreateManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770F624BC0C0400181362 /* GRCreateManager.m */; };
  196. 2747722924BC0C0500181362 /* KSChoosePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770F824BC0C0400181362 /* KSChoosePicker.m */; };
  197. 2747722A24BC0C0500181362 /* KSHoldButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770FC24BC0C0400181362 /* KSHoldButton.m */; };
  198. 2747722B24BC0C0500181362 /* KSAudioRecordFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770FE24BC0C0400181362 /* KSAudioRecordFileManager.m */; };
  199. 2747722C24BC0C0500181362 /* UIView+KSAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 274770FF24BC0C0400181362 /* UIView+KSAdditions.m */; };
  200. 2747722D24BC0C0500181362 /* KSRecordStatusView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710024BC0C0400181362 /* KSRecordStatusView.m */; };
  201. 2747722E24BC0C0500181362 /* KSAudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710124BC0C0400181362 /* KSAudioRecordManager.m */; };
  202. 2747722F24BC0C0500181362 /* KSRecordPowerAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710424BC0C0400181362 /* KSRecordPowerAnimationView.m */; };
  203. 2747723024BC0C0500181362 /* KSFullDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710724BC0C0400181362 /* KSFullDatePicker.m */; };
  204. 2747723124BC0C0500181362 /* KSMediaManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710924BC0C0400181362 /* KSMediaManager.m */; };
  205. 2747723224BC0C0500181362 /* JXPagerListContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710E24BC0C0400181362 /* JXPagerListContainerView.m */; };
  206. 2747723324BC0C0500181362 /* JXPagerMainTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747710F24BC0C0400181362 /* JXPagerMainTableView.m */; };
  207. 2747723424BC0C0500181362 /* JXPagerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711024BC0C0400181362 /* JXPagerView.m */; };
  208. 2747723524BC0C0500181362 /* JXPagerListRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711524BC0C0400181362 /* JXPagerListRefreshView.m */; };
  209. 2747723624BC0C0500181362 /* JXCategoryIndicatorLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711C24BC0C0400181362 /* JXCategoryIndicatorLineView.m */; };
  210. 2747723724BC0C0500181362 /* JXCategoryIndicatorTriangleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711D24BC0C0400181362 /* JXCategoryIndicatorTriangleView.m */; };
  211. 2747723824BC0C0500181362 /* JXCategoryIndicatorImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747711F24BC0C0400181362 /* JXCategoryIndicatorImageView.m */; };
  212. 2747723924BC0C0500181362 /* JXCategoryIndicatorBallView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712024BC0C0400181362 /* JXCategoryIndicatorBallView.m */; };
  213. 2747723A24BC0C0500181362 /* JXCategoryIndicatorComponentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712124BC0C0400181362 /* JXCategoryIndicatorComponentView.m */; };
  214. 2747723B24BC0C0500181362 /* JXCategoryIndicatorBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712624BC0C0400181362 /* JXCategoryIndicatorBackgroundView.m */; };
  215. 2747723C24BC0C0500181362 /* JXCategoryIndicatorCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712824BC0C0400181362 /* JXCategoryIndicatorCellModel.m */; };
  216. 2747723D24BC0C0500181362 /* JXCategoryIndicatorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712924BC0C0400181362 /* JXCategoryIndicatorCell.m */; };
  217. 2747723E24BC0C0500181362 /* JXCategoryIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712A24BC0C0400181362 /* JXCategoryIndicatorView.m */; };
  218. 2747723F24BC0C0500181362 /* JXCategoryDotCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712C24BC0C0400181362 /* JXCategoryDotCell.m */; };
  219. 2747724024BC0C0500181362 /* JXCategoryDotView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747712E24BC0C0400181362 /* JXCategoryDotView.m */; };
  220. 2747724124BC0C0500181362 /* JXCategoryDotCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713124BC0C0400181362 /* JXCategoryDotCellModel.m */; };
  221. 2747724224BC0C0500181362 /* JXCategoryTitleImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713324BC0C0400181362 /* JXCategoryTitleImageView.m */; };
  222. 2747724324BC0C0500181362 /* JXCategoryTitleImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713424BC0C0400181362 /* JXCategoryTitleImageCell.m */; };
  223. 2747724424BC0C0500181362 /* JXCategoryTitleImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713724BC0C0400181362 /* JXCategoryTitleImageCellModel.m */; };
  224. 2747724524BC0C0500181362 /* JXCategoryTitleCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713D24BC0C0400181362 /* JXCategoryTitleCellModel.m */; };
  225. 2747724624BC0C0500181362 /* JXCategoryTitleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713E24BC0C0400181362 /* JXCategoryTitleCell.m */; };
  226. 2747724724BC0C0500181362 /* JXCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747713F24BC0C0400181362 /* JXCategoryTitleView.m */; };
  227. 2747724824BC0C0500181362 /* JXCategoryImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714224BC0C0400181362 /* JXCategoryImageView.m */; };
  228. 2747724924BC0C0500181362 /* JXCategoryImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714324BC0C0400181362 /* JXCategoryImageCell.m */; };
  229. 2747724A24BC0C0500181362 /* JXCategoryImageCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714724BC0C0400181362 /* JXCategoryImageCellModel.m */; };
  230. 2747724B24BC0C0500181362 /* JXCategoryNumberView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714A24BC0C0400181362 /* JXCategoryNumberView.m */; };
  231. 2747724C24BC0C0500181362 /* JXCategoryNumberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714B24BC0C0400181362 /* JXCategoryNumberCell.m */; };
  232. 2747724D24BC0C0500181362 /* JXCategoryNumberCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747714C24BC0C0400181362 /* JXCategoryNumberCellModel.m */; };
  233. 2747724E24BC0C0500181362 /* JXCategoryFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715324BC0C0400181362 /* JXCategoryFactory.m */; };
  234. 2747724F24BC0C0500181362 /* JXCategoryCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715524BC0C0400181362 /* JXCategoryCollectionView.m */; };
  235. 2747725024BC0C0500181362 /* UIColor+JXAdd.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715624BC0C0400181362 /* UIColor+JXAdd.m */; };
  236. 2747725124BC0C0500181362 /* JXCategoryBaseView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715C24BC0C0400181362 /* JXCategoryBaseView.m */; };
  237. 2747725224BC0C0500181362 /* JXCategoryBaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715D24BC0C0400181362 /* JXCategoryBaseCell.m */; };
  238. 2747725324BC0C0500181362 /* JXCategoryBaseCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715E24BC0C0400181362 /* JXCategoryBaseCellModel.m */; };
  239. 2747725424BC0C0500181362 /* MBProgressHUD+NJ.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747715F24BC0C0400181362 /* MBProgressHUD+NJ.m */; };
  240. 2747725524BC0C0500181362 /* UITextField_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716124BC0C0400181362 /* UITextField_Toolbar.m */; };
  241. 2747725624BC0C0500181362 /* SkipTextField.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716224BC0C0400181362 /* SkipTextField.m */; };
  242. 2747725724BC0C0500181362 /* UITextView_Toolbar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716524BC0C0400181362 /* UITextView_Toolbar.m */; };
  243. 2747725824BC0C0500181362 /* SkipTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716824BC0C0400181362 /* SkipTextView.m */; };
  244. 2747725924BC0C0500181362 /* GRScanManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747716D24BC0C0400181362 /* GRScanManager.m */; };
  245. 2747725A24BC0C0500181362 /* NSString+phone.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717024BC0C0400181362 /* NSString+phone.m */; };
  246. 2747725B24BC0C0500181362 /* KSImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717224BC0C0400181362 /* KSImageButton.m */; };
  247. 2747725C24BC0C0500181362 /* NSString+MD5.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717524BC0C0400181362 /* NSString+MD5.m */; };
  248. 2747725D24BC0C0500181362 /* KSMessageInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717624BC0C0400181362 /* KSMessageInputView.m */; };
  249. 2747725E24BC0C0500181362 /* KSInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717724BC0C0400181362 /* KSInputView.m */; };
  250. 2747725F24BC0C0500181362 /* StateView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717824BC0C0400181362 /* StateView.m */; };
  251. 2747726024BC0C0500181362 /* NSDate+KSBaseDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717924BC0C0400181362 /* NSDate+KSBaseDatePicker.m */; };
  252. 2747726124BC0C0500181362 /* LLPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717B24BC0C0400181362 /* LLPhotoBrowser.m */; };
  253. 2747726224BC0C0500181362 /* LLImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717E24BC0C0400181362 /* LLImageCache.m */; };
  254. 2747726324BC0C0500181362 /* LLFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747717F24BC0C0400181362 /* LLFileManager.m */; };
  255. 2747726424BC0C0500181362 /* LLPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747718224BC0C0400181362 /* LLPhoto.m */; };
  256. 2747726524BC0C0500181362 /* LLCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2747718324BC0C0400181362 /* LLCollectionViewCell.m */; };
  257. 2747727824BC0C7C00181362 /* RongSight.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726824BC0C7C00181362 /* RongSight.framework */; };
  258. 2747727924BC0C7C00181362 /* RongRTCLib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726924BC0C7C00181362 /* RongRTCLib.framework */; };
  259. 2747727A24BC0C7C00181362 /* RongIMLib.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726B24BC0C7C00181362 /* RongIMLib.framework */; };
  260. 2747727B24BC0C7C00181362 /* libopencore-amrwb.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726C24BC0C7C00181362 /* libopencore-amrwb.a */; };
  261. 2747727C24BC0C7C00181362 /* libopencore-amrnb.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726D24BC0C7C00181362 /* libopencore-amrnb.a */; };
  262. 2747727D24BC0C7C00181362 /* libvo-amrwbenc.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747726E24BC0C7C00181362 /* libvo-amrwbenc.a */; };
  263. 2747727E24BC0C7C00181362 /* RCConfig.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2747726F24BC0C7C00181362 /* RCConfig.plist */; };
  264. 2747727F24BC0C7C00181362 /* RCColor.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2747727124BC0C7C00181362 /* RCColor.plist */; };
  265. 2747728024BC0C7C00181362 /* RongCloudKit.strings in Resources */ = {isa = PBXBuildFile; fileRef = 2747727224BC0C7C00181362 /* RongCloudKit.strings */; };
  266. 2747728124BC0C7C00181362 /* RongIMKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747727524BC0C7C00181362 /* RongIMKit.framework */; };
  267. 2747728224BC0C7D00181362 /* Emoji.plist in Resources */ = {isa = PBXBuildFile; fileRef = 2747727624BC0C7C00181362 /* Emoji.plist */; };
  268. 2747728324BC0C7D00181362 /* RongCloud.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 2747727724BC0C7C00181362 /* RongCloud.bundle */; };
  269. 2747728524BC0D4300181362 /* AssetsLibrary.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728424BC0D4200181362 /* AssetsLibrary.framework */; };
  270. 2747728724BC0D4800181362 /* MapKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728624BC0D4800181362 /* MapKit.framework */; };
  271. 2747728924BC0D5200181362 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728824BC0D5200181362 /* ImageIO.framework */; };
  272. 2747728B24BC0D5800181362 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728A24BC0D5800181362 /* Security.framework */; };
  273. 2747728D24BC0D5F00181362 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728C24BC0D5F00181362 /* QuartzCore.framework */; };
  274. 2747728F24BC0D6500181362 /* AVFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747728E24BC0D6500181362 /* AVFoundation.framework */; };
  275. 2747729124BC0D6C00181362 /* GLKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729024BC0D6B00181362 /* GLKit.framework */; };
  276. 2747729324BC0D7300181362 /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729224BC0D7300181362 /* OpenGLES.framework */; };
  277. 2747729524BC0D7A00181362 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729424BC0D7A00181362 /* CoreGraphics.framework */; };
  278. 2747729724BC0D8100181362 /* CoreLocation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729624BC0D8000181362 /* CoreLocation.framework */; };
  279. 2747729924BC0D8700181362 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729824BC0D8700181362 /* CoreTelephony.framework */; };
  280. 2747729B24BC0D8D00181362 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729A24BC0D8D00181362 /* CoreFoundation.framework */; };
  281. 2747729D24BC0D9300181362 /* CoreMedia.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729C24BC0D9300181362 /* CoreMedia.framework */; };
  282. 2747729F24BC0D9B00181362 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2747729E24BC0D9B00181362 /* CoreAudio.framework */; };
  283. 274772A124BC0DA000181362 /* CoreVideo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A024BC0DA000181362 /* CoreVideo.framework */; };
  284. 274772A324BC0DA800181362 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A224BC0DA800181362 /* CFNetwork.framework */; };
  285. 274772A524BC0DAE00181362 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A424BC0DAE00181362 /* AudioToolbox.framework */; };
  286. 274772A724BC0DB500181362 /* VideoToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A624BC0DB500181362 /* VideoToolbox.framework */; };
  287. 274772A924BC0DC100181362 /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772A824BC0DC000181362 /* libc++.tbd */; };
  288. 274772AB24BC0DC900181362 /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772AA24BC0DC900181362 /* libz.tbd */; };
  289. 274772AD24BC0DD000181362 /* libbz2.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772AC24BC0DD000181362 /* libbz2.tbd */; };
  290. 274772AF24BC0DDF00181362 /* libiconv.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772AE24BC0DDE00181362 /* libiconv.tbd */; };
  291. 274772B124BC0DEB00181362 /* libsqlite3.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 274772B024BC0DEB00181362 /* libsqlite3.tbd */; };
  292. 2748F8F124C05F4D003F8E11 /* ExamLibraryController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2748F8F024C05F4C003F8E11 /* ExamLibraryController.m */; };
  293. 2748F8F524C138A0003F8E11 /* ExamLibraryListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2748F8F324C1389F003F8E11 /* ExamLibraryListCell.m */; };
  294. 2748F8F624C138A0003F8E11 /* ExamLibraryListCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2748F8F424C1389F003F8E11 /* ExamLibraryListCell.xib */; };
  295. 27544CF824BC337D00EF58AF /* ExamTicketViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27544CF724BC337D00EF58AF /* ExamTicketViewController.m */; };
  296. 27544CFB24BC338900EF58AF /* UserCenterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27544CFA24BC338900EF58AF /* UserCenterViewController.m */; };
  297. 278D113424CA8E4D00599421 /* ExamDisplayViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 278D113324CA8E4D00599421 /* ExamDisplayViewController.m */; };
  298. 278D113624CADC4800599421 /* Photos.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 278D113524CADC4800599421 /* Photos.framework */; };
  299. 2794D1B024BC604800BAF6F3 /* VefiBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1AF24BC604800BAF6F3 /* VefiBodyView.m */; };
  300. 2794D1B224BC605600BAF6F3 /* VefiBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1B124BC605600BAF6F3 /* VefiBodyView.xib */; };
  301. 2794D1B524BC662600BAF6F3 /* VeriCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1B424BC662600BAF6F3 /* VeriCheckView.m */; };
  302. 2794D1B824BC699700BAF6F3 /* RegisterBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1B724BC699700BAF6F3 /* RegisterBodyView.m */; };
  303. 2794D1BA24BC69A400BAF6F3 /* RegisterBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1B924BC69A400BAF6F3 /* RegisterBodyView.xib */; };
  304. 2794D1BD24BD4CF800BAF6F3 /* FSBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1BC24BD4CF800BAF6F3 /* FSBodyView.m */; };
  305. 2794D1BF24BD4D0C00BAF6F3 /* FSBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1BE24BD4D0C00BAF6F3 /* FSBodyView.xib */; };
  306. 2794D1C224BD60D500BAF6F3 /* UserCenterBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1C124BD60D500BAF6F3 /* UserCenterBodyView.m */; };
  307. 2794D1C424BD60E900BAF6F3 /* UserCenterBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1C324BD60E900BAF6F3 /* UserCenterBodyView.xib */; };
  308. 2794D1C724BD62FB00BAF6F3 /* ModifyBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2794D1C624BD62FB00BAF6F3 /* ModifyBodyView.m */; };
  309. 2794D1C924BD631A00BAF6F3 /* ModifyBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2794D1C824BD631A00BAF6F3 /* ModifyBodyView.xib */; };
  310. 27A008A524BD96C50002452B /* NetworkingCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A0089C24BD96C50002452B /* NetworkingCheckController.m */; };
  311. 27A008A624BD96C50002452B /* NetworkBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008A024BD96C50002452B /* NetworkBodyView.m */; };
  312. 27A008A724BD96C50002452B /* NetworkBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008A124BD96C50002452B /* NetworkBodyView.xib */; };
  313. 27A008A824BD96C50002452B /* KSNetworkAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008A224BD96C50002452B /* KSNetworkAlert.m */; };
  314. 27A008A924BD96C50002452B /* KSNetworkAlert.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008A424BD96C50002452B /* KSNetworkAlert.xib */; };
  315. 27A008AE24BD96E50002452B /* DeviceCheckView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008AB24BD96E50002452B /* DeviceCheckView.xib */; };
  316. 27A008AF24BD96E50002452B /* DeviceCheckView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008AC24BD96E50002452B /* DeviceCheckView.m */; };
  317. 27A008B524BD97FE0002452B /* AudioRecordManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008B424BD97FE0002452B /* AudioRecordManager.m */; };
  318. 27A008B824BD98170002452B /* AudioPlayManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008B724BD98170002452B /* AudioPlayManager.m */; };
  319. 27A008C324BD99B10002452B /* SettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008C224BD99B10002452B /* SettingViewController.m */; };
  320. 27A008C624BD99BD0002452B /* UserViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008C524BD99BD0002452B /* UserViewController.m */; };
  321. 27A008C924BD9D550002452B /* KSNetTypeManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008C824BD9D550002452B /* KSNetTypeManager.m */; };
  322. 27A008CC24BD9E8A0002452B /* SettingBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008CB24BD9E8A0002452B /* SettingBodyView.m */; };
  323. 27A008CE24BD9E950002452B /* SettingBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008CD24BD9E950002452B /* SettingBodyView.xib */; };
  324. 27A008D324BDA67F0002452B /* ModifyPhoneChangeController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008D024BDA67E0002452B /* ModifyPhoneChangeController.m */; };
  325. 27A008D424BDA67F0002452B /* ModifyPhoneCheckController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008D224BDA67F0002452B /* ModifyPhoneCheckController.m */; };
  326. 27A008DB24BDA6950002452B /* PhoneChangeBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008D524BDA6940002452B /* PhoneChangeBodyView.xib */; };
  327. 27A008DC24BDA6950002452B /* PhoneChangeBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008D624BDA6940002452B /* PhoneChangeBodyView.m */; };
  328. 27A008DD24BDA6950002452B /* PhoneCheckBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008D924BDA6950002452B /* PhoneCheckBodyView.m */; };
  329. 27A008DE24BDA6950002452B /* PhoneCheckBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008DA24BDA6950002452B /* PhoneCheckBodyView.xib */; };
  330. 27A008E124BDA6B40002452B /* FeedbackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008DF24BDA6B30002452B /* FeedbackViewController.m */; };
  331. 27A008E524BDA6C40002452B /* FeedbackBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008E224BDA6C30002452B /* FeedbackBodyView.xib */; };
  332. 27A008E624BDA6C40002452B /* FeedbackBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008E324BDA6C30002452B /* FeedbackBodyView.m */; };
  333. 27A008E924BDA7070002452B /* AboutUsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008E724BDA7070002452B /* AboutUsViewController.m */; };
  334. 27A008ED24BDA7100002452B /* AboutBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008EA24BDA70F0002452B /* AboutBodyView.xib */; };
  335. 27A008EE24BDA7100002452B /* AboutBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008EB24BDA7100002452B /* AboutBodyView.m */; };
  336. 27A008F324BDB1E50002452B /* SysUser.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008F024BDB1E30002452B /* SysUser.m */; };
  337. 27A008F424BDB1E50002452B /* UserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008F224BDB1E50002452B /* UserInfo.m */; };
  338. 27A008F724BDB6220002452B /* UserBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008F624BDB6220002452B /* UserBodyView.m */; };
  339. 27A008F924BDB6310002452B /* UserBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008F824BDB6310002452B /* UserBodyView.xib */; };
  340. 27A008FC24BECDC40002452B /* HomeBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27A008FB24BECDC40002452B /* HomeBodyView.m */; };
  341. 27A008FE24BECDFC0002452B /* HomeBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27A008FD24BECDFC0002452B /* HomeBodyView.xib */; };
  342. 27D4149824CA741D000DBC0C /* RecordExamModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27D4149724CA741D000DBC0C /* RecordExamModel.m */; };
  343. 27D4149B24CA757A000DBC0C /* SongModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27D4149A24CA757A000DBC0C /* SongModel.m */; };
  344. 27EF3EEE24BEE35E002068A2 /* MessageListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EED24BEE35E002068A2 /* MessageListModel.m */; };
  345. 27EF3EF224BEE885002068A2 /* NotifyMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EF024BEE885002068A2 /* NotifyMessageCell.m */; };
  346. 27EF3EF324BEE885002068A2 /* NotifyMessageCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27EF3EF124BEE885002068A2 /* NotifyMessageCell.xib */; };
  347. 27EF3EF624BEF1DA002068A2 /* TicketBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EF524BEF1DA002068A2 /* TicketBodyView.m */; };
  348. 27EF3EF824BEF1E8002068A2 /* TicketBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27EF3EF724BEF1E8002068A2 /* TicketBodyView.xib */; };
  349. 27EF3EFB24BEFC79002068A2 /* WaitExamViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EFA24BEFC79002068A2 /* WaitExamViewController.m */; };
  350. 27EF3EFE24BF015A002068A2 /* WaitExamBodyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3EFD24BF015A002068A2 /* WaitExamBodyView.m */; };
  351. 27EF3F0024BF016B002068A2 /* WaitExamBodyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27EF3EFF24BF016B002068A2 /* WaitExamBodyView.xib */; };
  352. 27EF3F0324BF0F12002068A2 /* TicketListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0224BF0F12002068A2 /* TicketListModel.m */; };
  353. 27EF3F0624BFF8A1002068A2 /* TicketDetailModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0424BFF8A0002068A2 /* TicketDetailModel.m */; };
  354. 27EF3F0924C02B3F002068A2 /* LocalRenderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0724C02B3E002068A2 /* LocalRenderManager.m */; };
  355. 27EF3F2024C02B68002068A2 /* KSTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0B24C02B67002068A2 /* KSTipsView.m */; };
  356. 27EF3F2124C02B68002068A2 /* KSNormalAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F0F24C02B67002068A2 /* KSNormalAlertView.m */; };
  357. 27EF3F2224C02B68002068A2 /* ClassTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1224C02B67002068A2 /* ClassTitleView.m */; };
  358. 27EF3F2324C02B68002068A2 /* ClassVideoListView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1724C02B68002068A2 /* ClassVideoListView.m */; };
  359. 27EF3F2524C02B68002068A2 /* ClassVideoListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1924C02B68002068A2 /* ClassVideoListCell.m */; };
  360. 27EF3F2624C02B68002068A2 /* MainToolView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1B24C02B68002068A2 /* MainToolView.m */; };
  361. 27EF3F2724C02B68002068A2 /* ClassroomMainContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F1F24C02B68002068A2 /* ClassroomMainContainer.m */; };
  362. 27EF3F2A24C02DE9002068A2 /* EmptyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F2824C02DE8002068A2 /* EmptyView.m */; };
  363. 27EF3F2E24C0384E002068A2 /* HomeExamTicketCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 27EF3F2C24C0384E002068A2 /* HomeExamTicketCell.m */; };
  364. 27EF3F2F24C0384E002068A2 /* HomeExamTicketCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 27EF3F2D24C0384E002068A2 /* HomeExamTicketCell.xib */; };
  365. 52771C0027351695CEDB4C8E /* libPods-MusicGradeExam.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C12DE728E343C25BB5998D7 /* libPods-MusicGradeExam.a */; };
  366. 5577ECF41C84E1BDFEC99DBC /* libPods-MusicGradeExamTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8BAA64634BC925E7C2CD7008 /* libPods-MusicGradeExamTests.a */; };
  367. A7C23B2E920E232C71C39B0E /* libPods-MusicGradeExam-MusicGradeExamUITests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F8D13E0A14104E75F7922812 /* libPods-MusicGradeExam-MusicGradeExamUITests.a */; };
  368. /* End PBXBuildFile section */
  369. /* Begin PBXContainerItemProxy section */
  370. 27476F5F24BBFB5C00181362 /* PBXContainerItemProxy */ = {
  371. isa = PBXContainerItemProxy;
  372. containerPortal = 27476F3B24BBFB5900181362 /* Project object */;
  373. proxyType = 1;
  374. remoteGlobalIDString = 27476F4224BBFB5900181362;
  375. remoteInfo = MusicGradeExam;
  376. };
  377. 27476F6A24BBFB5C00181362 /* PBXContainerItemProxy */ = {
  378. isa = PBXContainerItemProxy;
  379. containerPortal = 27476F3B24BBFB5900181362 /* Project object */;
  380. proxyType = 1;
  381. remoteGlobalIDString = 27476F4224BBFB5900181362;
  382. remoteInfo = MusicGradeExam;
  383. };
  384. /* End PBXContainerItemProxy section */
  385. /* Begin PBXFileReference section */
  386. 1AA4DFCEF527585287BEBFE0 /* Pods-MusicGradeExam.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam.release.xcconfig"; sourceTree = "<group>"; };
  387. 1C12DE728E343C25BB5998D7 /* libPods-MusicGradeExam.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExam.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  388. 2729F7C524C6C87400E1F3C4 /* OpenFileViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OpenFileViewController.h; sourceTree = "<group>"; };
  389. 2729F7C624C6C87400E1F3C4 /* OpenFileViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = OpenFileViewController.m; sourceTree = "<group>"; };
  390. 2729F7C824C6EB4900E1F3C4 /* SubjectNameModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SubjectNameModel.h; sourceTree = "<group>"; };
  391. 2729F7C924C6EB4A00E1F3C4 /* SubjectNameModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SubjectNameModel.m; sourceTree = "<group>"; };
  392. 2729F7CB24C6F3F300E1F3C4 /* SongListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongListModel.h; sourceTree = "<group>"; };
  393. 2729F7CC24C6F3F300E1F3C4 /* SongListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongListModel.m; sourceTree = "<group>"; };
  394. 2729F7CE24C7D43600E1F3C4 /* 酷乐秀.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = "酷乐秀.entitlements"; sourceTree = "<group>"; };
  395. 2729F7CF24C8174A00E1F3C4 /* FileNameView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FileNameView.h; sourceTree = "<group>"; };
  396. 2729F7D024C8174A00E1F3C4 /* FileNameView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FileNameView.m; sourceTree = "<group>"; };
  397. 2729F7D224C8175E00E1F3C4 /* FileNameView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FileNameView.xib; sourceTree = "<group>"; };
  398. 2729F7D824C81E9B00E1F3C4 /* ExamViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamViewController.h; sourceTree = "<group>"; };
  399. 2729F7D924C81E9B00E1F3C4 /* ExamViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamViewController.m; sourceTree = "<group>"; };
  400. 2729F7DB24C81FA200E1F3C4 /* LibraryTipsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LibraryTipsView.h; sourceTree = "<group>"; };
  401. 2729F7DC24C81FA200E1F3C4 /* LibraryTipsView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LibraryTipsView.m; sourceTree = "<group>"; };
  402. 2729F7DE24C81FB000E1F3C4 /* LibraryTipsView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = LibraryTipsView.xib; sourceTree = "<group>"; };
  403. 2729F7E024C8244100E1F3C4 /* ExamListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamListCell.h; sourceTree = "<group>"; };
  404. 2729F7E124C8244100E1F3C4 /* ExamListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamListCell.m; sourceTree = "<group>"; };
  405. 2729F7E224C8244100E1F3C4 /* ExamListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ExamListCell.xib; sourceTree = "<group>"; };
  406. 2729F7E524C8326900E1F3C4 /* RecordExamViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordExamViewController.h; sourceTree = "<group>"; };
  407. 2729F7E624C8326900E1F3C4 /* RecordExamViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordExamViewController.m; sourceTree = "<group>"; };
  408. 2729F7E824C8328700E1F3C4 /* RecordBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordBodyView.h; sourceTree = "<group>"; };
  409. 2729F7E924C8328700E1F3C4 /* RecordBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordBodyView.m; sourceTree = "<group>"; };
  410. 2729F7EB24C8329700E1F3C4 /* RecordBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RecordBodyView.xib; sourceTree = "<group>"; };
  411. 2729F7ED24C8379D00E1F3C4 /* RecordListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordListCell.h; sourceTree = "<group>"; };
  412. 2729F7EE24C8379D00E1F3C4 /* RecordListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordListCell.m; sourceTree = "<group>"; };
  413. 2729F7EF24C8379D00E1F3C4 /* RecordListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RecordListCell.xib; sourceTree = "<group>"; };
  414. 2729F7F224C8395300E1F3C4 /* RecordBottomView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordBottomView.h; sourceTree = "<group>"; };
  415. 2729F7F324C8395300E1F3C4 /* RecordBottomView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordBottomView.m; sourceTree = "<group>"; };
  416. 2729F7F524C8398B00E1F3C4 /* RecordBottomView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RecordBottomView.xib; sourceTree = "<group>"; };
  417. 2729F7F724C8425E00E1F3C4 /* RecordTipsView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RecordTipsView.h; sourceTree = "<group>"; };
  418. 2729F7F824C8425E00E1F3C4 /* RecordTipsView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RecordTipsView.m; sourceTree = "<group>"; };
  419. 2729F7FA24C8427100E1F3C4 /* RecordTipsView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RecordTipsView.xib; sourceTree = "<group>"; };
  420. 2729F7FC24C851F900E1F3C4 /* BaseExamModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseExamModel.m; sourceTree = "<group>"; };
  421. 2729F7FD24C851FA00E1F3C4 /* BaseExamModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseExamModel.h; sourceTree = "<group>"; };
  422. 27476F4324BBFB5900181362 /* 酷乐秀.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "酷乐秀.app"; sourceTree = BUILT_PRODUCTS_DIR; };
  423. 27476F4624BBFB5900181362 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  424. 27476F4724BBFB5900181362 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
  425. 27476F4C24BBFB5900181362 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
  426. 27476F4D24BBFB5900181362 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
  427. 27476F5024BBFB5900181362 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  428. 27476F5224BBFB5C00181362 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  429. 27476F5524BBFB5C00181362 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  430. 27476F5724BBFB5C00181362 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  431. 27476F5824BBFB5C00181362 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  432. 27476F5E24BBFB5C00181362 /* MusicGradeExamTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MusicGradeExamTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  433. 27476F6224BBFB5C00181362 /* MusicGradeExamTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MusicGradeExamTests.m; sourceTree = "<group>"; };
  434. 27476F6424BBFB5C00181362 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  435. 27476F6924BBFB5C00181362 /* MusicGradeExamUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MusicGradeExamUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
  436. 27476F6D24BBFB5C00181362 /* MusicGradeExamUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MusicGradeExamUITests.m; sourceTree = "<group>"; };
  437. 27476F6F24BBFB5C00181362 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  438. 27476F7C24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JYEqualCellSpaceFlowLayout.m; sourceTree = "<group>"; };
  439. 27476F7D24BC0BFF00181362 /* DZNSegmentedControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DZNSegmentedControl.m; sourceTree = "<group>"; };
  440. 27476F7E24BC0BFF00181362 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  441. 27476F8024BC0BFF00181362 /* WMLightView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMLightView.h; sourceTree = "<group>"; };
  442. 27476F8124BC0BFF00181362 /* WMPlayerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayerModel.m; sourceTree = "<group>"; };
  443. 27476F8224BC0BFF00181362 /* FastForwardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FastForwardView.h; sourceTree = "<group>"; };
  444. 27476F8324BC0BFF00181362 /* WMPlayer.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = WMPlayer.bundle; sourceTree = "<group>"; };
  445. 27476F8424BC0BFF00181362 /* WMPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayer.h; sourceTree = "<group>"; };
  446. 27476F8524BC0BFF00181362 /* WMPlayerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WMPlayerModel.h; sourceTree = "<group>"; };
  447. 27476F8624BC0BFF00181362 /* WMLightView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMLightView.m; sourceTree = "<group>"; };
  448. 27476F8724BC0BFF00181362 /* FastForwardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FastForwardView.m; sourceTree = "<group>"; };
  449. 27476F8824BC0BFF00181362 /* WMPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WMPlayer.m; sourceTree = "<group>"; };
  450. 27476F8924BC0BFF00181362 /* UIView+ShowProgress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ShowProgress.m"; sourceTree = "<group>"; };
  451. 27476F8A24BC0BFF00181362 /* KSPickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSPickerView.h; sourceTree = "<group>"; };
  452. 27476F8C24BC0BFF00181362 /* TZPhotoPreviewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewCell.h; sourceTree = "<group>"; };
  453. 27476F8D24BC0BFF00181362 /* TZPhotoPickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPickerController.h; sourceTree = "<group>"; };
  454. 27476F8E24BC0BFF00181362 /* TZImageCropManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageCropManager.m; sourceTree = "<group>"; };
  455. 27476F8F24BC0BFF00181362 /* TZImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageManager.h; sourceTree = "<group>"; };
  456. 27476F9024BC0BFF00181362 /* TZAssetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetCell.m; sourceTree = "<group>"; };
  457. 27476F9124BC0BFF00181362 /* TZVideoPlayerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZVideoPlayerController.m; sourceTree = "<group>"; };
  458. 27476F9224BC0BFF00181362 /* TZAssetModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZAssetModel.m; sourceTree = "<group>"; };
  459. 27476F9324BC0BFF00181362 /* NSBundle+TZImagePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+TZImagePicker.m"; sourceTree = "<group>"; };
  460. 27476F9424BC0BFF00181362 /* TZLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZLocationManager.h; sourceTree = "<group>"; };
  461. 27476F9524BC0BFF00181362 /* TZImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImagePickerController.h; sourceTree = "<group>"; };
  462. 27476F9624BC0BFF00181362 /* UIView+Layout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Layout.m"; sourceTree = "<group>"; };
  463. 27476F9724BC0BFF00181362 /* TZPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewController.m; sourceTree = "<group>"; };
  464. 27476F9824BC0BFF00181362 /* TZImagePickerController.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TZImagePickerController.bundle; sourceTree = "<group>"; };
  465. 27476F9924BC0BFF00181362 /* TZProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZProgressView.m; sourceTree = "<group>"; };
  466. 27476F9A24BC0BFF00181362 /* TZGifPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZGifPhotoPreviewController.h; sourceTree = "<group>"; };
  467. 27476F9B24BC0BFF00181362 /* TZImageRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageRequestOperation.h; sourceTree = "<group>"; };
  468. 27476F9C24BC0BFF00181362 /* TZAssetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetCell.h; sourceTree = "<group>"; };
  469. 27476F9D24BC0BFF00181362 /* TZImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageManager.m; sourceTree = "<group>"; };
  470. 27476F9E24BC0BFF00181362 /* TZImageCropManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZImageCropManager.h; sourceTree = "<group>"; };
  471. 27476F9F24BC0BFF00181362 /* TZPhotoPickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPickerController.m; sourceTree = "<group>"; };
  472. 27476FA024BC0BFF00181362 /* TZPhotoPreviewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZPhotoPreviewCell.m; sourceTree = "<group>"; };
  473. 27476FA124BC0BFF00181362 /* NSBundle+TZImagePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+TZImagePicker.h"; sourceTree = "<group>"; };
  474. 27476FA224BC0BFF00181362 /* TZAssetModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZAssetModel.h; sourceTree = "<group>"; };
  475. 27476FA324BC0BFF00181362 /* TZVideoPlayerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZVideoPlayerController.h; sourceTree = "<group>"; };
  476. 27476FA424BC0BFF00181362 /* TZPhotoPreviewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZPhotoPreviewController.h; sourceTree = "<group>"; };
  477. 27476FA524BC0BFF00181362 /* UIView+Layout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Layout.h"; sourceTree = "<group>"; };
  478. 27476FA624BC0BFF00181362 /* TZImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImagePickerController.m; sourceTree = "<group>"; };
  479. 27476FA724BC0BFF00181362 /* TZLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZLocationManager.m; sourceTree = "<group>"; };
  480. 27476FA824BC0BFF00181362 /* TZGifPhotoPreviewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZGifPhotoPreviewController.m; sourceTree = "<group>"; };
  481. 27476FA924BC0BFF00181362 /* TZImageRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TZImageRequestOperation.m; sourceTree = "<group>"; };
  482. 27476FAA24BC0BFF00181362 /* TZProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TZProgressView.h; sourceTree = "<group>"; };
  483. 27476FAC24BC0BFF00181362 /* SCIndexViewConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexViewConfiguration.m; sourceTree = "<group>"; };
  484. 27476FAD24BC0BFF00181362 /* UITableView+SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SCIndexView.h"; sourceTree = "<group>"; };
  485. 27476FAE24BC0BFF00181362 /* SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexView.m; sourceTree = "<group>"; };
  486. 27476FAF24BC0BFF00181362 /* SCIndexViewConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexViewConfiguration.h; sourceTree = "<group>"; };
  487. 27476FB024BC0BFF00181362 /* UITableView+SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SCIndexView.m"; sourceTree = "<group>"; };
  488. 27476FB124BC0BFF00181362 /* SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexView.h; sourceTree = "<group>"; };
  489. 27476FB324BC0BFF00181362 /* MSSBrowseRemindView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseRemindView.h; sourceTree = "<group>"; };
  490. 27476FB424BC0BFF00181362 /* MSSBrowseZoomScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseZoomScrollView.h; sourceTree = "<group>"; };
  491. 27476FB524BC0BFF00181362 /* MSSBrowseLoadingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLoadingImageView.m; sourceTree = "<group>"; };
  492. 27476FB624BC0BFF00181362 /* MSSBrowseBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseBaseViewController.h; sourceTree = "<group>"; };
  493. 27476FB724BC0BFF00181362 /* UIImage+MSSScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MSSScale.h"; sourceTree = "<group>"; };
  494. 27476FB824BC0BFF00181362 /* MSSBrowseNetworkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseNetworkViewController.h; sourceTree = "<group>"; };
  495. 27476FB924BC0BFF00181362 /* MSSBrowseActionSheet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheet.h; sourceTree = "<group>"; };
  496. 27476FBA24BC0BFF00181362 /* MSSBrowseActionSheetCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseActionSheetCell.h; sourceTree = "<group>"; };
  497. 27476FBB24BC0BFF00181362 /* MSSBrowseLocalViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseLocalViewController.m; sourceTree = "<group>"; };
  498. 27476FBC24BC0BFF00181362 /* MSSBrowseCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseCollectionViewCell.m; sourceTree = "<group>"; };
  499. 27476FBD24BC0BFF00181362 /* UIView+MSSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MSSLayout.h"; sourceTree = "<group>"; };
  500. 27476FBE24BC0BFF00181362 /* MSSBrowseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseModel.m; sourceTree = "<group>"; };
  501. 27476FBF24BC0BFF00181362 /* MSSBrowseDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseDefine.h; sourceTree = "<group>"; };
  502. 27476FC024BC0BFF00181362 /* MSSBrowseActionSheet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheet.m; sourceTree = "<group>"; };
  503. 27476FC124BC0BFF00181362 /* MSSBrowseNetworkViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseNetworkViewController.m; sourceTree = "<group>"; };
  504. 27476FC224BC0BFF00181362 /* UIImage+MSSScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MSSScale.m"; sourceTree = "<group>"; };
  505. 27476FC324BC0BFF00181362 /* MSSBrowseBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseBaseViewController.m; sourceTree = "<group>"; };
  506. 27476FC424BC0BFF00181362 /* MSSBrowseLoadingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLoadingImageView.h; sourceTree = "<group>"; };
  507. 27476FC524BC0BFF00181362 /* MSSBrowseZoomScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseZoomScrollView.m; sourceTree = "<group>"; };
  508. 27476FC624BC0BFF00181362 /* MSSBrowseRemindView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseRemindView.m; sourceTree = "<group>"; };
  509. 27476FC724BC0BFF00181362 /* mss_browseLoading@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@3x.png"; sourceTree = "<group>"; };
  510. 27476FC824BC0BFF00181362 /* MSSBrowseCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseCollectionViewCell.h; sourceTree = "<group>"; };
  511. 27476FC924BC0BFF00181362 /* MSSBrowseLocalViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseLocalViewController.h; sourceTree = "<group>"; };
  512. 27476FCA24BC0BFF00181362 /* MSSBrowseActionSheetCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MSSBrowseActionSheetCell.m; sourceTree = "<group>"; };
  513. 27476FCB24BC0BFF00181362 /* MSSBrowseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MSSBrowseModel.h; sourceTree = "<group>"; };
  514. 27476FCC24BC0BFF00181362 /* mss_browseLoading@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "mss_browseLoading@2x.png"; sourceTree = "<group>"; };
  515. 27476FCD24BC0BFF00181362 /* UIView+MSSLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MSSLayout.m"; sourceTree = "<group>"; };
  516. 27476FCE24BC0BFF00181362 /* UIView+Animation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Animation.m"; sourceTree = "<group>"; };
  517. 27476FCF24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JYEqualCellSpaceFlowLayout.h; sourceTree = "<group>"; };
  518. 27476FD124BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZKCycleScrollViewFlowLayout.h; sourceTree = "<group>"; };
  519. 27476FD224BC0BFF00181362 /* ZKCycleScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZKCycleScrollView.m; sourceTree = "<group>"; };
  520. 27476FD324BC0BFF00181362 /* ZKCycleScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZKCycleScrollView.h; sourceTree = "<group>"; };
  521. 27476FD424BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZKCycleScrollViewFlowLayout.m; sourceTree = "<group>"; };
  522. 27476FD524BC0BFF00181362 /* DZNSegmentedControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DZNSegmentedControl.h; sourceTree = "<group>"; };
  523. 27476FD724BC0BFF00181362 /* TYCyclePagerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerView.h; sourceTree = "<group>"; };
  524. 27476FD824BC0BFF00181362 /* TYCyclePagerTransformLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYCyclePagerTransformLayout.h; sourceTree = "<group>"; };
  525. 27476FD924BC0BFF00181362 /* TYPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYPageControl.m; sourceTree = "<group>"; };
  526. 27476FDA24BC0BFF00181362 /* TYCyclePagerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerView.m; sourceTree = "<group>"; };
  527. 27476FDB24BC0BFF00181362 /* TYCyclePagerTransformLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYCyclePagerTransformLayout.m; sourceTree = "<group>"; };
  528. 27476FDC24BC0BFF00181362 /* TYPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYPageControl.h; sourceTree = "<group>"; };
  529. 27476FDE24BC0BFF00181362 /* KSPickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSPickerView.m; sourceTree = "<group>"; };
  530. 27476FDF24BC0BFF00181362 /* UIView+ShowProgress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ShowProgress.h"; sourceTree = "<group>"; };
  531. 27476FE024BC0BFF00181362 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  532. 27476FE224BC0BFF00181362 /* ALCalendarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCell.m; sourceTree = "<group>"; };
  533. 27476FE324BC0BFF00181362 /* ALCalendarConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarConfig.m; sourceTree = "<group>"; };
  534. 27476FE424BC0BFF00181362 /* ALCalendarHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHeader.m; sourceTree = "<group>"; };
  535. 27476FE524BC0BFF00181362 /* ALCalendarDate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarDate.m; sourceTree = "<group>"; };
  536. 27476FE624BC0BFF00181362 /* ALCalendarCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarCollectionView.m; sourceTree = "<group>"; };
  537. 27476FE724BC0BFF00181362 /* ALCalendarHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarHelper.m; sourceTree = "<group>"; };
  538. 27476FE824BC0BFF00181362 /* UIView+ALFrame.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+ALFrame.h"; sourceTree = "<group>"; };
  539. 27476FE924BC0BFF00181362 /* ALCalendarPicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarPicker.h; sourceTree = "<group>"; };
  540. 27476FEA24BC0BFF00181362 /* ALCalendarManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarManager.h; sourceTree = "<group>"; };
  541. 27476FEB24BC0BFF00181362 /* ALCalendarCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCollectionView.h; sourceTree = "<group>"; };
  542. 27476FEC24BC0BFF00181362 /* ALCalendarDate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarDate.h; sourceTree = "<group>"; };
  543. 27476FED24BC0BFF00181362 /* ALCalendarHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHeader.h; sourceTree = "<group>"; };
  544. 27476FEE24BC0BFF00181362 /* ALCalendarConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarConfig.h; sourceTree = "<group>"; };
  545. 27476FEF24BC0BFF00181362 /* ALCalendarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarCell.h; sourceTree = "<group>"; };
  546. 27476FF024BC0BFF00181362 /* ALCalendarHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ALCalendarHelper.h; sourceTree = "<group>"; };
  547. 27476FF124BC0BFF00181362 /* ALCalendarPicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarPicker.m; sourceTree = "<group>"; };
  548. 27476FF224BC0BFF00181362 /* UIView+ALFrame.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+ALFrame.m"; sourceTree = "<group>"; };
  549. 27476FF324BC0BFF00181362 /* ALCalendarManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ALCalendarManager.m; sourceTree = "<group>"; };
  550. 27476FF424BC0BFF00181362 /* UIView+Animation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Animation.h"; sourceTree = "<group>"; };
  551. 27476FF724BC0C0000181362 /* KSBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseViewController.h; sourceTree = "<group>"; };
  552. 27476FF824BC0C0000181362 /* CustomNavViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CustomNavViewController.h; sourceTree = "<group>"; };
  553. 27476FF924BC0C0000181362 /* KSBaseWKWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSBaseWKWebViewController.h; sourceTree = "<group>"; };
  554. 27476FFA24BC0C0000181362 /* KSTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTabBarController.h; sourceTree = "<group>"; };
  555. 27476FFB24BC0C0000181362 /* UINavigationController+KSNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+KSNavigationBar.h"; sourceTree = "<group>"; };
  556. 27476FFC24BC0C0000181362 /* KSBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseViewController.m; sourceTree = "<group>"; };
  557. 27476FFE24BC0C0000181362 /* KSBaseWKWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSBaseWKWebViewController.m; sourceTree = "<group>"; };
  558. 27476FFF24BC0C0000181362 /* CustomNavViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CustomNavViewController.m; sourceTree = "<group>"; };
  559. 2747700024BC0C0000181362 /* UINavigationController+KSNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+KSNavigationBar.m"; sourceTree = "<group>"; };
  560. 2747700124BC0C0000181362 /* KSTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTabBarController.m; sourceTree = "<group>"; };
  561. 2747700224BC0C0000181362 /* KSRequestManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRequestManager.m; sourceTree = "<group>"; };
  562. 2747700624BC0C0100181362 /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
  563. 2747700724BC0C0100181362 /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
  564. 2747701024BC0C0100181362 /* ClassroomViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomViewController.m; sourceTree = "<group>"; };
  565. 2747701124BC0C0100181362 /* ClassroomViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomViewController.h; sourceTree = "<group>"; };
  566. 2747701324BC0C0100181362 /* RoomLoginHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomLoginHelper.h; sourceTree = "<group>"; };
  567. 2747701424BC0C0100181362 /* RoomLoginHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomLoginHelper.m; sourceTree = "<group>"; };
  568. 2747701724BC0C0100181362 /* KSRemoteUserManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRemoteUserManager.h; sourceTree = "<group>"; };
  569. 2747701924BC0C0100181362 /* RTCService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTCService.m; sourceTree = "<group>"; };
  570. 2747701A24BC0C0100181362 /* RTCService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTCService.h; sourceTree = "<group>"; };
  571. 2747701D24BC0C0100181362 /* ErrorCode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ErrorCode.h; sourceTree = "<group>"; };
  572. 2747701F24BC0C0100181362 /* UIView+MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MBProgressHUD.h"; sourceTree = "<group>"; };
  573. 2747702024BC0C0100181362 /* UIView+MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MBProgressHUD.m"; sourceTree = "<group>"; };
  574. 2747702224BC0C0100181362 /* RolePortraitView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RolePortraitView.m; sourceTree = "<group>"; };
  575. 2747702324BC0C0100181362 /* RolePortraitView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RolePortraitView.h; sourceTree = "<group>"; };
  576. 2747702424BC0C0100181362 /* Macro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Macro.h; sourceTree = "<group>"; };
  577. 2747702624BC0C0100181362 /* HTTPUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPUtility.m; sourceTree = "<group>"; };
  578. 2747702724BC0C0100181362 /* HTTPResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HTTPResult.m; sourceTree = "<group>"; };
  579. 2747702824BC0C0100181362 /* HTTPUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPUtility.h; sourceTree = "<group>"; };
  580. 2747702924BC0C0100181362 /* HTTPResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HTTPResult.h; sourceTree = "<group>"; };
  581. 2747702D24BC0C0100181362 /* ClassroomService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomService.h; sourceTree = "<group>"; };
  582. 2747702F24BC0C0100181362 /* RoleChangedMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoleChangedMessage.h; sourceTree = "<group>"; };
  583. 2747703024BC0C0100181362 /* AssistantTransferMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AssistantTransferMessage.h; sourceTree = "<group>"; };
  584. 2747703124BC0C0100181362 /* InviteUpgradeMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = InviteUpgradeMessage.h; sourceTree = "<group>"; };
  585. 2747703224BC0C0100181362 /* ApplySpeechMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechMessage.m; sourceTree = "<group>"; };
  586. 2747703324BC0C0100181362 /* ApplySpeechResultMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechResultMessage.h; sourceTree = "<group>"; };
  587. 2747703424BC0C0100181362 /* DisplayCommandMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DisplayCommandMessage.m; sourceTree = "<group>"; };
  588. 2747703524BC0C0100181362 /* MemberChangeMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MemberChangeMessage.h; sourceTree = "<group>"; };
  589. 2747703624BC0C0100181362 /* DeviceMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceMessage.h; sourceTree = "<group>"; };
  590. 2747703724BC0C0100181362 /* ControlDeviceNotifyMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ControlDeviceNotifyMessage.m; sourceTree = "<group>"; };
  591. 2747703824BC0C0100181362 /* TicketExpiredMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketExpiredMessage.m; sourceTree = "<group>"; };
  592. 2747703924BC0C0100181362 /* NodePlayMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NodePlayMessage.h; sourceTree = "<group>"; };
  593. 2747703A24BC0C0100181362 /* TurnPageMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TurnPageMessage.h; sourceTree = "<group>"; };
  594. 2747703B24BC0C0100181362 /* WhiteboardMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WhiteboardMessage.m; sourceTree = "<group>"; };
  595. 2747703C24BC0C0100181362 /* AssistantTransferMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AssistantTransferMessage.m; sourceTree = "<group>"; };
  596. 2747703D24BC0C0100181362 /* RoleChangedMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoleChangedMessage.m; sourceTree = "<group>"; };
  597. 2747703E24BC0C0100181362 /* InviteUpgradeMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = InviteUpgradeMessage.m; sourceTree = "<group>"; };
  598. 2747703F24BC0C0100181362 /* ControlDeviceNotifyMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ControlDeviceNotifyMessage.h; sourceTree = "<group>"; };
  599. 2747704024BC0C0100181362 /* DeviceMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceMessage.m; sourceTree = "<group>"; };
  600. 2747704124BC0C0100181362 /* MemberChangeMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MemberChangeMessage.m; sourceTree = "<group>"; };
  601. 2747704224BC0C0100181362 /* DisplayCommandMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisplayCommandMessage.h; sourceTree = "<group>"; };
  602. 2747704324BC0C0100181362 /* ApplySpeechResultMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ApplySpeechResultMessage.m; sourceTree = "<group>"; };
  603. 2747704424BC0C0100181362 /* ApplySpeechMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ApplySpeechMessage.h; sourceTree = "<group>"; };
  604. 2747704524BC0C0100181362 /* WhiteboardMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WhiteboardMessage.h; sourceTree = "<group>"; };
  605. 2747704624BC0C0100181362 /* TurnPageMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TurnPageMessage.m; sourceTree = "<group>"; };
  606. 2747704724BC0C0100181362 /* NodePlayMessage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NodePlayMessage.m; sourceTree = "<group>"; };
  607. 2747704824BC0C0100181362 /* TicketExpiredMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketExpiredMessage.h; sourceTree = "<group>"; };
  608. 2747704A24BC0C0100181362 /* Whiteboard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Whiteboard.m; sourceTree = "<group>"; };
  609. 2747704B24BC0C0100181362 /* RoomMember.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RoomMember.m; sourceTree = "<group>"; };
  610. 2747704C24BC0C0100181362 /* Classroom.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Classroom.m; sourceTree = "<group>"; };
  611. 2747704D24BC0C0100181362 /* Whiteboard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Whiteboard.h; sourceTree = "<group>"; };
  612. 2747704E24BC0C0100181362 /* Classroom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Classroom.h; sourceTree = "<group>"; };
  613. 2747704F24BC0C0100181362 /* RoomMember.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RoomMember.h; sourceTree = "<group>"; };
  614. 2747705024BC0C0100181362 /* ClassroomDefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomDefine.h; sourceTree = "<group>"; };
  615. 2747705124BC0C0100181362 /* ClassroomService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomService.m; sourceTree = "<group>"; };
  616. 2747705224BC0C0100181362 /* KSRemoteUserManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRemoteUserManager.m; sourceTree = "<group>"; };
  617. 2747705424BC0C0100181362 /* KSIMService.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSIMService.h; sourceTree = "<group>"; };
  618. 2747705524BC0C0100181362 /* KSIMService.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSIMService.m; sourceTree = "<group>"; };
  619. 2747705C24BC0C0100181362 /* NotifyMessageViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NotifyMessageViewController.h; sourceTree = "<group>"; };
  620. 2747705D24BC0C0100181362 /* NotifyMessageViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NotifyMessageViewController.m; sourceTree = "<group>"; };
  621. 2747706224BC0C0100181362 /* ModifyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyViewController.h; sourceTree = "<group>"; };
  622. 2747706324BC0C0100181362 /* VefiLoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VefiLoginViewController.h; sourceTree = "<group>"; };
  623. 2747706424BC0C0100181362 /* FirstSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FirstSettingViewController.m; sourceTree = "<group>"; };
  624. 2747706524BC0C0100181362 /* LoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginViewController.m; sourceTree = "<group>"; };
  625. 2747706624BC0C0100181362 /* RegisterViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RegisterViewController.m; sourceTree = "<group>"; };
  626. 2747706724BC0C0100181362 /* VefiLoginViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VefiLoginViewController.m; sourceTree = "<group>"; };
  627. 2747706824BC0C0100181362 /* ModifyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyViewController.m; sourceTree = "<group>"; };
  628. 2747706924BC0C0100181362 /* LoginViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginViewController.h; sourceTree = "<group>"; };
  629. 2747706A24BC0C0100181362 /* FirstSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FirstSettingViewController.h; sourceTree = "<group>"; };
  630. 2747706B24BC0C0100181362 /* RegisterViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RegisterViewController.h; sourceTree = "<group>"; };
  631. 2747706E24BC0C0100181362 /* UserInfoManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfoManager.h; sourceTree = "<group>"; };
  632. 2747706F24BC0C0100181362 /* UserInfoManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfoManager.m; sourceTree = "<group>"; };
  633. 2747707224BC0C0100181362 /* LoginBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LoginBodyView.m; sourceTree = "<group>"; };
  634. 2747707324BC0C0100181362 /* LoginBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = LoginBodyView.xib; sourceTree = "<group>"; };
  635. 2747707424BC0C0100181362 /* LoginBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LoginBodyView.h; sourceTree = "<group>"; };
  636. 2747707624BC0C0200181362 /* OnlineRoomManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = OnlineRoomManager.m; sourceTree = "<group>"; };
  637. 2747707724BC0C0200181362 /* KSRCIMDataSource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRCIMDataSource.h; sourceTree = "<group>"; };
  638. 2747707824BC0C0200181362 /* RCConnectionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RCConnectionManager.h; sourceTree = "<group>"; };
  639. 2747707924BC0C0200181362 /* KSUpdateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSUpdateManager.h; sourceTree = "<group>"; };
  640. 2747707A24BC0C0200181362 /* KSRCIMDataSource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRCIMDataSource.m; sourceTree = "<group>"; };
  641. 2747707B24BC0C0200181362 /* OnlineRoomManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OnlineRoomManager.h; sourceTree = "<group>"; };
  642. 2747707C24BC0C0200181362 /* RCConnectionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RCConnectionManager.m; sourceTree = "<group>"; };
  643. 2747707D24BC0C0200181362 /* KSUpdateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSUpdateManager.m; sourceTree = "<group>"; };
  644. 2747707F24BC0C0200181362 /* UserKeyHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserKeyHeader.h; sourceTree = "<group>"; };
  645. 2747708024BC0C0200181362 /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = "<group>"; };
  646. 2747708124BC0C0200181362 /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  647. 2747708424BC0C0300181362 /* KSNetworking+RequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "KSNetworking+RequestOperation.m"; sourceTree = "<group>"; };
  648. 2747708524BC0C0300181362 /* KSNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworking.m; sourceTree = "<group>"; };
  649. 2747708724BC0C0300181362 /* KSLRUManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSLRUManager.h; sourceTree = "<group>"; };
  650. 2747708824BC0C0300181362 /* KSMemoryCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMemoryCache.h; sourceTree = "<group>"; };
  651. 2747708924BC0C0300181362 /* KSCacheManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSCacheManager.h; sourceTree = "<group>"; };
  652. 2747708A24BC0C0300181362 /* KSDiskCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSDiskCache.h; sourceTree = "<group>"; };
  653. 2747708B24BC0C0300181362 /* KSLRUManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSLRUManager.m; sourceTree = "<group>"; };
  654. 2747708C24BC0C0300181362 /* KSMemoryCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMemoryCache.m; sourceTree = "<group>"; };
  655. 2747708D24BC0C0300181362 /* KSDiskCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSDiskCache.m; sourceTree = "<group>"; };
  656. 2747708E24BC0C0300181362 /* KSCacheManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSCacheManager.m; sourceTree = "<group>"; };
  657. 2747708F24BC0C0300181362 /* KSNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworking.h; sourceTree = "<group>"; };
  658. 2747709024BC0C0300181362 /* KSNetworking+RequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "KSNetworking+RequestOperation.h"; sourceTree = "<group>"; };
  659. 2747709224BC0C0300181362 /* KSSafeObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSSafeObject.h; sourceTree = "<group>"; };
  660. 2747709324BC0C0300181362 /* NSObject+KSSwizzling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSSwizzling.h"; sourceTree = "<group>"; };
  661. 2747709424BC0C0300181362 /* NSDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+KSSafe.m"; sourceTree = "<group>"; };
  662. 2747709524BC0C0300181362 /* NSObject+KSImpChangeTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+KSImpChangeTool.h"; sourceTree = "<group>"; };
  663. 2747709624BC0C0300181362 /* NSMutableDictionary+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableDictionary+KSSafe.m"; sourceTree = "<group>"; };
  664. 2747709724BC0C0300181362 /* NSMutableString+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableString+KSSafe.h"; sourceTree = "<group>"; };
  665. 2747709824BC0C0300181362 /* NSArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+KSSafe.m"; sourceTree = "<group>"; };
  666. 2747709924BC0C0300181362 /* NSMutableArray+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableArray+KSSafe.m"; sourceTree = "<group>"; };
  667. 2747709A24BC0C0300181362 /* NSDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+KSSafe.h"; sourceTree = "<group>"; };
  668. 2747709B24BC0C0300181362 /* NSObject+KSSwizzling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSSwizzling.m"; sourceTree = "<group>"; };
  669. 2747709C24BC0C0300181362 /* NSObject+KSImpChangeTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+KSImpChangeTool.m"; sourceTree = "<group>"; };
  670. 2747709D24BC0C0300181362 /* NSMutableArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableArray+KSSafe.h"; sourceTree = "<group>"; };
  671. 2747709E24BC0C0300181362 /* NSArray+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+KSSafe.h"; sourceTree = "<group>"; };
  672. 2747709F24BC0C0300181362 /* NSMutableString+KSSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableString+KSSafe.m"; sourceTree = "<group>"; };
  673. 274770A024BC0C0300181362 /* NSMutableDictionary+KSSafe.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableDictionary+KSSafe.h"; sourceTree = "<group>"; };
  674. 274770A224BC0C0300181362 /* NSObject+AssociatedObject.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AssociatedObject.m"; sourceTree = "<group>"; };
  675. 274770A324BC0C0300181362 /* UIView+Hints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Hints.h"; sourceTree = "<group>"; };
  676. 274770A424BC0C0300181362 /* UIControl+ButtonAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIControl+ButtonAction.m"; sourceTree = "<group>"; };
  677. 274770A524BC0C0300181362 /* UIDevice+zhDeviceType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+zhDeviceType.m"; sourceTree = "<group>"; };
  678. 274770A624BC0C0300181362 /* NSString+zh_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+zh_SafeAccess.m"; sourceTree = "<group>"; };
  679. 274770A724BC0C0300181362 /* NSDictionary+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+Extension.h"; sourceTree = "<group>"; };
  680. 274770A824BC0C0300181362 /* UIViewController+zhStatusBarStyle.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+zhStatusBarStyle.m"; sourceTree = "<group>"; };
  681. 274770A924BC0C0300181362 /* UITextView+ZWPlaceHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWPlaceHolder.m"; sourceTree = "<group>"; };
  682. 274770AA24BC0C0300181362 /* NSString+CZHSizeExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+CZHSizeExtension.h"; sourceTree = "<group>"; };
  683. 274770AB24BC0C0300181362 /* CALayer+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Color.m"; sourceTree = "<group>"; };
  684. 274770AC24BC0C0300181362 /* NSDate+Transform.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Transform.h"; sourceTree = "<group>"; };
  685. 274770AD24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+CZHExtention.m"; sourceTree = "<group>"; };
  686. 274770AE24BC0C0300181362 /* NSString+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extension.h"; sourceTree = "<group>"; };
  687. 274770AF24BC0C0300181362 /* UITextView+ZWLimitCounter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+ZWLimitCounter.m"; sourceTree = "<group>"; };
  688. 274770B024BC0C0300181362 /* UILabel+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extension.m"; sourceTree = "<group>"; };
  689. 274770B124BC0C0300181362 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
  690. 274770B224BC0C0300181362 /* NSArray+ks_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+ks_SafeAccess.h"; sourceTree = "<group>"; };
  691. 274770B324BC0C0300181362 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
  692. 274770B424BC0C0300181362 /* NSObject+ReadDocument.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+ReadDocument.h"; sourceTree = "<group>"; };
  693. 274770B524BC0C0300181362 /* UIAlertController+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+Extend.m"; sourceTree = "<group>"; };
  694. 274770B624BC0C0300181362 /* UIImageView+CornerRadius.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+CornerRadius.h"; sourceTree = "<group>"; };
  695. 274770B724BC0C0300181362 /* CALayer+KSLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+KSLayout.h"; sourceTree = "<group>"; };
  696. 274770B824BC0C0300181362 /* UIScreen+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScreen+Extend.h"; sourceTree = "<group>"; };
  697. 274770B924BC0C0300181362 /* UIColor+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extend.m"; sourceTree = "<group>"; };
  698. 274770BA24BC0C0300181362 /* UIView+Dealloc.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Dealloc.m"; sourceTree = "<group>"; };
  699. 274770BB24BC0C0300181362 /* NSObject+Parse.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Parse.m"; sourceTree = "<group>"; };
  700. 274770BC24BC0C0300181362 /* UIView+AddConstraints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+AddConstraints.m"; sourceTree = "<group>"; };
  701. 274770BD24BC0C0300181362 /* NSString+CZHSizeExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+CZHSizeExtension.m"; sourceTree = "<group>"; };
  702. 274770BE24BC0C0300181362 /* UITextView+ZWPlaceHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWPlaceHolder.h"; sourceTree = "<group>"; };
  703. 274770BF24BC0C0300181362 /* NSDictionary+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+Extension.m"; sourceTree = "<group>"; };
  704. 274770C024BC0C0300181362 /* UIViewController+zhStatusBarStyle.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+zhStatusBarStyle.h"; sourceTree = "<group>"; };
  705. 274770C124BC0C0300181362 /* NSString+zh_SafeAccess.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+zh_SafeAccess.h"; sourceTree = "<group>"; };
  706. 274770C224BC0C0300181362 /* UIDevice+zhDeviceType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+zhDeviceType.h"; sourceTree = "<group>"; };
  707. 274770C324BC0C0300181362 /* UIControl+ButtonAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIControl+ButtonAction.h"; sourceTree = "<group>"; };
  708. 274770C424BC0C0300181362 /* UIView+Hints.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Hints.m"; sourceTree = "<group>"; };
  709. 274770C524BC0C0300181362 /* NSObject+AssociatedObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AssociatedObject.h"; sourceTree = "<group>"; };
  710. 274770C624BC0C0300181362 /* NSArray+ks_SafeAccess.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+ks_SafeAccess.m"; sourceTree = "<group>"; };
  711. 274770C724BC0C0300181362 /* UILabel+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extension.h"; sourceTree = "<group>"; };
  712. 274770C824BC0C0300181362 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
  713. 274770C924BC0C0300181362 /* UITextView+ZWLimitCounter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+ZWLimitCounter.h"; sourceTree = "<group>"; };
  714. 274770CA24BC0C0300181362 /* NSString+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extension.m"; sourceTree = "<group>"; };
  715. 274770CB24BC0C0300181362 /* NSDate+Transform.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Transform.m"; sourceTree = "<group>"; };
  716. 274770CC24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+CZHExtention.h"; sourceTree = "<group>"; };
  717. 274770CD24BC0C0300181362 /* CALayer+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Color.h"; sourceTree = "<group>"; };
  718. 274770CE24BC0C0300181362 /* UIScreen+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScreen+Extend.m"; sourceTree = "<group>"; };
  719. 274770CF24BC0C0300181362 /* CALayer+KSLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+KSLayout.m"; sourceTree = "<group>"; };
  720. 274770D024BC0C0300181362 /* UIAlertController+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+Extend.h"; sourceTree = "<group>"; };
  721. 274770D124BC0C0300181362 /* UIImageView+CornerRadius.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+CornerRadius.m"; sourceTree = "<group>"; };
  722. 274770D224BC0C0300181362 /* NSObject+ReadDocument.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+ReadDocument.m"; sourceTree = "<group>"; };
  723. 274770D324BC0C0300181362 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
  724. 274770D424BC0C0300181362 /* NSObject+Parse.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Parse.h"; sourceTree = "<group>"; };
  725. 274770D524BC0C0300181362 /* UIView+AddConstraints.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+AddConstraints.h"; sourceTree = "<group>"; };
  726. 274770D624BC0C0300181362 /* UIView+Dealloc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Dealloc.h"; sourceTree = "<group>"; };
  727. 274770D724BC0C0300181362 /* UIColor+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extend.h"; sourceTree = "<group>"; };
  728. 274770D924BC0C0400181362 /* UIImage+Addtions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Addtions.m"; sourceTree = "<group>"; };
  729. 274770DA24BC0C0400181362 /* UIView+XIBView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+XIBView.m"; sourceTree = "<group>"; };
  730. 274770DB24BC0C0400181362 /* UrlDecode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UrlDecode.m; sourceTree = "<group>"; };
  731. 274770DC24BC0C0400181362 /* UIButton+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Property.m"; sourceTree = "<group>"; };
  732. 274770DD24BC0C0400181362 /* UIDevice+TFDevice.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+TFDevice.m"; sourceTree = "<group>"; };
  733. 274770DE24BC0C0400181362 /* UIColor+Hex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
  734. 274770DF24BC0C0400181362 /* MBProgressHUD+KSShow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+KSShow.h"; sourceTree = "<group>"; };
  735. 274770E024BC0C0400181362 /* UIImage+Property.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Property.m"; sourceTree = "<group>"; };
  736. 274770E124BC0C0400181362 /* UIImage+ResizeImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ResizeImage.m"; sourceTree = "<group>"; };
  737. 274770E224BC0C0400181362 /* UIButton+EnlargeEdge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+EnlargeEdge.h"; sourceTree = "<group>"; };
  738. 274770E324BC0C0400181362 /* UIButton+HasChooseImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+HasChooseImage.m"; sourceTree = "<group>"; };
  739. 274770E424BC0C0400181362 /* NSObject+AutoProperty.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+AutoProperty.m"; sourceTree = "<group>"; };
  740. 274770E524BC0C0400181362 /* UIImage+UIImageScale.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+UIImageScale.m"; sourceTree = "<group>"; };
  741. 274770E624BC0C0400181362 /* UIImage+Resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Resize.h"; sourceTree = "<group>"; };
  742. 274770E724BC0C0400181362 /* UIView+XIBView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+XIBView.h"; sourceTree = "<group>"; };
  743. 274770E824BC0C0400181362 /* UIImage+Addtions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Addtions.h"; sourceTree = "<group>"; };
  744. 274770E924BC0C0400181362 /* UIColor+Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
  745. 274770EA24BC0C0400181362 /* UIDevice+TFDevice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+TFDevice.h"; sourceTree = "<group>"; };
  746. 274770EB24BC0C0400181362 /* UIButton+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+Property.h"; sourceTree = "<group>"; };
  747. 274770EC24BC0C0400181362 /* UrlDecode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UrlDecode.h; sourceTree = "<group>"; };
  748. 274770ED24BC0C0400181362 /* UIImage+UIImageScale.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+UIImageScale.h"; sourceTree = "<group>"; };
  749. 274770EE24BC0C0400181362 /* NSObject+AutoProperty.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+AutoProperty.h"; sourceTree = "<group>"; };
  750. 274770EF24BC0C0400181362 /* UIButton+EnlargeEdge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+EnlargeEdge.m"; sourceTree = "<group>"; };
  751. 274770F024BC0C0400181362 /* UIButton+HasChooseImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+HasChooseImage.h"; sourceTree = "<group>"; };
  752. 274770F124BC0C0400181362 /* UIImage+ResizeImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ResizeImage.h"; sourceTree = "<group>"; };
  753. 274770F224BC0C0400181362 /* UIImage+Property.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Property.h"; sourceTree = "<group>"; };
  754. 274770F324BC0C0400181362 /* MBProgressHUD+KSShow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+KSShow.m"; sourceTree = "<group>"; };
  755. 274770F424BC0C0400181362 /* UIImage+Resize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Resize.m"; sourceTree = "<group>"; };
  756. 274770F624BC0C0400181362 /* GRCreateManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRCreateManager.m; sourceTree = "<group>"; };
  757. 274770F724BC0C0400181362 /* GRScanManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRScanManager.h; sourceTree = "<group>"; };
  758. 274770F824BC0C0400181362 /* KSChoosePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSChoosePicker.m; sourceTree = "<group>"; };
  759. 274770FA24BC0C0400181362 /* KSAudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordManager.h; sourceTree = "<group>"; };
  760. 274770FB24BC0C0400181362 /* KSRecordStatusView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordStatusView.h; sourceTree = "<group>"; };
  761. 274770FC24BC0C0400181362 /* KSHoldButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSHoldButton.m; sourceTree = "<group>"; };
  762. 274770FD24BC0C0400181362 /* KSRecordPowerAnimationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRecordPowerAnimationView.h; sourceTree = "<group>"; };
  763. 274770FE24BC0C0400181362 /* KSAudioRecordFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordFileManager.m; sourceTree = "<group>"; };
  764. 274770FF24BC0C0400181362 /* UIView+KSAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+KSAdditions.m"; sourceTree = "<group>"; };
  765. 2747710024BC0C0400181362 /* KSRecordStatusView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordStatusView.m; sourceTree = "<group>"; };
  766. 2747710124BC0C0400181362 /* KSAudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSAudioRecordManager.m; sourceTree = "<group>"; };
  767. 2747710224BC0C0400181362 /* KSHoldButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSHoldButton.h; sourceTree = "<group>"; };
  768. 2747710324BC0C0400181362 /* UIView+KSAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+KSAdditions.h"; sourceTree = "<group>"; };
  769. 2747710424BC0C0400181362 /* KSRecordPowerAnimationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSRecordPowerAnimationView.m; sourceTree = "<group>"; };
  770. 2747710524BC0C0400181362 /* KSAudioRecordFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSAudioRecordFileManager.h; sourceTree = "<group>"; };
  771. 2747710624BC0C0400181362 /* KSImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSImageButton.h; sourceTree = "<group>"; };
  772. 2747710724BC0C0400181362 /* KSFullDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSFullDatePicker.m; sourceTree = "<group>"; };
  773. 2747710824BC0C0400181362 /* NSString+phone.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+phone.h"; sourceTree = "<group>"; };
  774. 2747710924BC0C0400181362 /* KSMediaManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMediaManager.m; sourceTree = "<group>"; };
  775. 2747710A24BC0C0400181362 /* KSMessageInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMessageInputView.h; sourceTree = "<group>"; };
  776. 2747710B24BC0C0400181362 /* NSString+MD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MD5.h"; sourceTree = "<group>"; };
  777. 2747710E24BC0C0400181362 /* JXPagerListContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerListContainerView.m; sourceTree = "<group>"; };
  778. 2747710F24BC0C0400181362 /* JXPagerMainTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerMainTableView.m; sourceTree = "<group>"; };
  779. 2747711024BC0C0400181362 /* JXPagerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerView.m; sourceTree = "<group>"; };
  780. 2747711124BC0C0400181362 /* JXPagerListRefreshView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerListRefreshView.h; sourceTree = "<group>"; };
  781. 2747711224BC0C0400181362 /* JXPagerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerView.h; sourceTree = "<group>"; };
  782. 2747711324BC0C0400181362 /* JXPagerListContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerListContainerView.h; sourceTree = "<group>"; };
  783. 2747711424BC0C0400181362 /* JXPagerMainTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXPagerMainTableView.h; sourceTree = "<group>"; };
  784. 2747711524BC0C0400181362 /* JXPagerListRefreshView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXPagerListRefreshView.m; sourceTree = "<group>"; };
  785. 2747711824BC0C0400181362 /* JXCategoryIndicatorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorCell.h; sourceTree = "<group>"; };
  786. 2747711924BC0C0400181362 /* JXCategoryIndicatorCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorCellModel.h; sourceTree = "<group>"; };
  787. 2747711A24BC0C0400181362 /* JXCategoryIndicatorView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorView.h; sourceTree = "<group>"; };
  788. 2747711C24BC0C0400181362 /* JXCategoryIndicatorLineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorLineView.m; sourceTree = "<group>"; };
  789. 2747711D24BC0C0400181362 /* JXCategoryIndicatorTriangleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorTriangleView.m; sourceTree = "<group>"; };
  790. 2747711E24BC0C0400181362 /* JXCategoryIndicatorBackgroundView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorBackgroundView.h; sourceTree = "<group>"; };
  791. 2747711F24BC0C0400181362 /* JXCategoryIndicatorImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorImageView.m; sourceTree = "<group>"; };
  792. 2747712024BC0C0400181362 /* JXCategoryIndicatorBallView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorBallView.m; sourceTree = "<group>"; };
  793. 2747712124BC0C0400181362 /* JXCategoryIndicatorComponentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorComponentView.m; sourceTree = "<group>"; };
  794. 2747712224BC0C0400181362 /* JXCategoryIndicatorLineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorLineView.h; sourceTree = "<group>"; };
  795. 2747712324BC0C0400181362 /* JXCategoryIndicatorTriangleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorTriangleView.h; sourceTree = "<group>"; };
  796. 2747712424BC0C0400181362 /* JXCategoryIndicatorBallView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorBallView.h; sourceTree = "<group>"; };
  797. 2747712524BC0C0400181362 /* JXCategoryIndicatorImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorImageView.h; sourceTree = "<group>"; };
  798. 2747712624BC0C0400181362 /* JXCategoryIndicatorBackgroundView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorBackgroundView.m; sourceTree = "<group>"; };
  799. 2747712724BC0C0400181362 /* JXCategoryIndicatorComponentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorComponentView.h; sourceTree = "<group>"; };
  800. 2747712824BC0C0400181362 /* JXCategoryIndicatorCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorCellModel.m; sourceTree = "<group>"; };
  801. 2747712924BC0C0400181362 /* JXCategoryIndicatorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorCell.m; sourceTree = "<group>"; };
  802. 2747712A24BC0C0400181362 /* JXCategoryIndicatorView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryIndicatorView.m; sourceTree = "<group>"; };
  803. 2747712C24BC0C0400181362 /* JXCategoryDotCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotCell.m; sourceTree = "<group>"; };
  804. 2747712D24BC0C0400181362 /* JXCategoryDotCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotCellModel.h; sourceTree = "<group>"; };
  805. 2747712E24BC0C0400181362 /* JXCategoryDotView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotView.m; sourceTree = "<group>"; };
  806. 2747712F24BC0C0400181362 /* JXCategoryDotCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotCell.h; sourceTree = "<group>"; };
  807. 2747713024BC0C0400181362 /* JXCategoryDotView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryDotView.h; sourceTree = "<group>"; };
  808. 2747713124BC0C0400181362 /* JXCategoryDotCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryDotCellModel.m; sourceTree = "<group>"; };
  809. 2747713324BC0C0400181362 /* JXCategoryTitleImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageView.m; sourceTree = "<group>"; };
  810. 2747713424BC0C0400181362 /* JXCategoryTitleImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageCell.m; sourceTree = "<group>"; };
  811. 2747713524BC0C0400181362 /* JXCategoryTitleImageCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageCellModel.h; sourceTree = "<group>"; };
  812. 2747713624BC0C0400181362 /* JXCategoryTitleImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageView.h; sourceTree = "<group>"; };
  813. 2747713724BC0C0400181362 /* JXCategoryTitleImageCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleImageCellModel.m; sourceTree = "<group>"; };
  814. 2747713824BC0C0400181362 /* JXCategoryTitleImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleImageCell.h; sourceTree = "<group>"; };
  815. 2747713A24BC0C0400181362 /* JXCategoryTitleCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleCellModel.h; sourceTree = "<group>"; };
  816. 2747713B24BC0C0400181362 /* JXCategoryTitleCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleCell.h; sourceTree = "<group>"; };
  817. 2747713C24BC0C0400181362 /* JXCategoryTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleView.h; sourceTree = "<group>"; };
  818. 2747713D24BC0C0400181362 /* JXCategoryTitleCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleCellModel.m; sourceTree = "<group>"; };
  819. 2747713E24BC0C0400181362 /* JXCategoryTitleCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleCell.m; sourceTree = "<group>"; };
  820. 2747713F24BC0C0400181362 /* JXCategoryTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleView.m; sourceTree = "<group>"; };
  821. 2747714024BC0C0400181362 /* JXCategoryView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryView.h; sourceTree = "<group>"; };
  822. 2747714224BC0C0400181362 /* JXCategoryImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageView.m; sourceTree = "<group>"; };
  823. 2747714324BC0C0400181362 /* JXCategoryImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageCell.m; sourceTree = "<group>"; };
  824. 2747714424BC0C0400181362 /* JXCategoryImageCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageCellModel.h; sourceTree = "<group>"; };
  825. 2747714524BC0C0400181362 /* JXCategoryImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageView.h; sourceTree = "<group>"; };
  826. 2747714624BC0C0400181362 /* JXCategoryImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryImageCell.h; sourceTree = "<group>"; };
  827. 2747714724BC0C0400181362 /* JXCategoryImageCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryImageCellModel.m; sourceTree = "<group>"; };
  828. 2747714924BC0C0400181362 /* JXCategoryNumberCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberCellModel.h; sourceTree = "<group>"; };
  829. 2747714A24BC0C0400181362 /* JXCategoryNumberView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberView.m; sourceTree = "<group>"; };
  830. 2747714B24BC0C0400181362 /* JXCategoryNumberCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberCell.m; sourceTree = "<group>"; };
  831. 2747714C24BC0C0400181362 /* JXCategoryNumberCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryNumberCellModel.m; sourceTree = "<group>"; };
  832. 2747714D24BC0C0400181362 /* JXCategoryNumberView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberView.h; sourceTree = "<group>"; };
  833. 2747714E24BC0C0400181362 /* JXCategoryNumberCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryNumberCell.h; sourceTree = "<group>"; };
  834. 2747715024BC0C0400181362 /* JXCategoryCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryCollectionView.h; sourceTree = "<group>"; };
  835. 2747715124BC0C0400181362 /* JXCategoryIndicatorProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryIndicatorProtocol.h; sourceTree = "<group>"; };
  836. 2747715224BC0C0400181362 /* JXCategoryViewDefines.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryViewDefines.h; sourceTree = "<group>"; };
  837. 2747715324BC0C0400181362 /* JXCategoryFactory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryFactory.m; sourceTree = "<group>"; };
  838. 2747715424BC0C0400181362 /* UIColor+JXAdd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+JXAdd.h"; sourceTree = "<group>"; };
  839. 2747715524BC0C0400181362 /* JXCategoryCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryCollectionView.m; sourceTree = "<group>"; };
  840. 2747715624BC0C0400181362 /* UIColor+JXAdd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+JXAdd.m"; sourceTree = "<group>"; };
  841. 2747715724BC0C0400181362 /* JXCategoryFactory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryFactory.h; sourceTree = "<group>"; };
  842. 2747715924BC0C0400181362 /* JXCategoryBaseView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseView.h; sourceTree = "<group>"; };
  843. 2747715A24BC0C0400181362 /* JXCategoryBaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseCell.h; sourceTree = "<group>"; };
  844. 2747715B24BC0C0400181362 /* JXCategoryBaseCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryBaseCellModel.h; sourceTree = "<group>"; };
  845. 2747715C24BC0C0400181362 /* JXCategoryBaseView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseView.m; sourceTree = "<group>"; };
  846. 2747715D24BC0C0400181362 /* JXCategoryBaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseCell.m; sourceTree = "<group>"; };
  847. 2747715E24BC0C0400181362 /* JXCategoryBaseCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryBaseCellModel.m; sourceTree = "<group>"; };
  848. 2747715F24BC0C0400181362 /* MBProgressHUD+NJ.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+NJ.m"; sourceTree = "<group>"; };
  849. 2747716124BC0C0400181362 /* UITextField_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextField_Toolbar.m; sourceTree = "<group>"; };
  850. 2747716224BC0C0400181362 /* SkipTextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextField.m; sourceTree = "<group>"; };
  851. 2747716324BC0C0400181362 /* SkipTextProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextProtocol.h; sourceTree = "<group>"; };
  852. 2747716424BC0C0400181362 /* SkipTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextView.h; sourceTree = "<group>"; };
  853. 2747716524BC0C0400181362 /* UITextView_Toolbar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UITextView_Toolbar.m; sourceTree = "<group>"; };
  854. 2747716624BC0C0400181362 /* UITextField_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextField_Toolbar.h; sourceTree = "<group>"; };
  855. 2747716724BC0C0400181362 /* SkipTextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SkipTextField.h; sourceTree = "<group>"; };
  856. 2747716824BC0C0400181362 /* SkipTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SkipTextView.m; sourceTree = "<group>"; };
  857. 2747716924BC0C0400181362 /* UITextView_Toolbar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UITextView_Toolbar.h; sourceTree = "<group>"; };
  858. 2747716A24BC0C0400181362 /* NSDate+KSBaseDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+KSBaseDatePicker.h"; sourceTree = "<group>"; };
  859. 2747716B24BC0C0400181362 /* StateView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = StateView.h; sourceTree = "<group>"; };
  860. 2747716C24BC0C0400181362 /* KSInputView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSInputView.h; sourceTree = "<group>"; };
  861. 2747716D24BC0C0400181362 /* GRScanManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GRScanManager.m; sourceTree = "<group>"; };
  862. 2747716E24BC0C0400181362 /* GRCreateManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GRCreateManager.h; sourceTree = "<group>"; };
  863. 2747716F24BC0C0400181362 /* KSMediaManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSMediaManager.h; sourceTree = "<group>"; };
  864. 2747717024BC0C0400181362 /* NSString+phone.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+phone.m"; sourceTree = "<group>"; };
  865. 2747717124BC0C0400181362 /* KSFullDatePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSFullDatePicker.h; sourceTree = "<group>"; };
  866. 2747717224BC0C0400181362 /* KSImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSImageButton.m; sourceTree = "<group>"; };
  867. 2747717324BC0C0400181362 /* KSChoosePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSChoosePicker.h; sourceTree = "<group>"; };
  868. 2747717424BC0C0400181362 /* MBProgressHUD+NJ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+NJ.h"; sourceTree = "<group>"; };
  869. 2747717524BC0C0400181362 /* NSString+MD5.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MD5.m"; sourceTree = "<group>"; };
  870. 2747717624BC0C0400181362 /* KSMessageInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSMessageInputView.m; sourceTree = "<group>"; };
  871. 2747717724BC0C0400181362 /* KSInputView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSInputView.m; sourceTree = "<group>"; };
  872. 2747717824BC0C0400181362 /* StateView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = StateView.m; sourceTree = "<group>"; };
  873. 2747717924BC0C0400181362 /* NSDate+KSBaseDatePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+KSBaseDatePicker.m"; sourceTree = "<group>"; };
  874. 2747717B24BC0C0400181362 /* LLPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhotoBrowser.m; sourceTree = "<group>"; };
  875. 2747717C24BC0C0400181362 /* LLCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLCollectionViewCell.h; sourceTree = "<group>"; };
  876. 2747717E24BC0C0400181362 /* LLImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLImageCache.m; sourceTree = "<group>"; };
  877. 2747717F24BC0C0400181362 /* LLFileManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLFileManager.m; sourceTree = "<group>"; };
  878. 2747718024BC0C0400181362 /* LLImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLImageCache.h; sourceTree = "<group>"; };
  879. 2747718124BC0C0400181362 /* LLFileManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLFileManager.h; sourceTree = "<group>"; };
  880. 2747718224BC0C0400181362 /* LLPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLPhoto.m; sourceTree = "<group>"; };
  881. 2747718324BC0C0400181362 /* LLCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LLCollectionViewCell.m; sourceTree = "<group>"; };
  882. 2747718424BC0C0400181362 /* LLPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhotoBrowser.h; sourceTree = "<group>"; };
  883. 2747718524BC0C0400181362 /* LLPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LLPhoto.h; sourceTree = "<group>"; };
  884. 2747718624BC0C0400181362 /* KSRequestManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSRequestManager.h; sourceTree = "<group>"; };
  885. 2747726824BC0C7C00181362 /* RongSight.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongSight.framework; sourceTree = "<group>"; };
  886. 2747726924BC0C7C00181362 /* RongRTCLib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongRTCLib.framework; sourceTree = "<group>"; };
  887. 2747726B24BC0C7C00181362 /* RongIMLib.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongIMLib.framework; sourceTree = "<group>"; };
  888. 2747726C24BC0C7C00181362 /* libopencore-amrwb.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libopencore-amrwb.a"; sourceTree = "<group>"; };
  889. 2747726D24BC0C7C00181362 /* libopencore-amrnb.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libopencore-amrnb.a"; sourceTree = "<group>"; };
  890. 2747726E24BC0C7C00181362 /* libvo-amrwbenc.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = "libvo-amrwbenc.a"; sourceTree = "<group>"; };
  891. 2747726F24BC0C7C00181362 /* RCConfig.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = RCConfig.plist; sourceTree = "<group>"; };
  892. 2747727124BC0C7C00181362 /* RCColor.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = RCColor.plist; sourceTree = "<group>"; };
  893. 2747727324BC0C7C00181362 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/RongCloudKit.strings"; sourceTree = "<group>"; };
  894. 2747727424BC0C7C00181362 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/RongCloudKit.strings; sourceTree = "<group>"; };
  895. 2747727524BC0C7C00181362 /* RongIMKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = RongIMKit.framework; sourceTree = "<group>"; };
  896. 2747727624BC0C7C00181362 /* Emoji.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Emoji.plist; sourceTree = "<group>"; };
  897. 2747727724BC0C7C00181362 /* RongCloud.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = RongCloud.bundle; sourceTree = "<group>"; };
  898. 2747728424BC0D4200181362 /* AssetsLibrary.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AssetsLibrary.framework; path = System/Library/Frameworks/AssetsLibrary.framework; sourceTree = SDKROOT; };
  899. 2747728624BC0D4800181362 /* MapKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MapKit.framework; path = System/Library/Frameworks/MapKit.framework; sourceTree = SDKROOT; };
  900. 2747728824BC0D5200181362 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = System/Library/Frameworks/ImageIO.framework; sourceTree = SDKROOT; };
  901. 2747728A24BC0D5800181362 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
  902. 2747728C24BC0D5F00181362 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
  903. 2747728E24BC0D6500181362 /* AVFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AVFoundation.framework; path = System/Library/Frameworks/AVFoundation.framework; sourceTree = SDKROOT; };
  904. 2747729024BC0D6B00181362 /* GLKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLKit.framework; path = System/Library/Frameworks/GLKit.framework; sourceTree = SDKROOT; };
  905. 2747729224BC0D7300181362 /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; };
  906. 2747729424BC0D7A00181362 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
  907. 2747729624BC0D8000181362 /* CoreLocation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreLocation.framework; path = System/Library/Frameworks/CoreLocation.framework; sourceTree = SDKROOT; };
  908. 2747729824BC0D8700181362 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
  909. 2747729A24BC0D8D00181362 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreFoundation.framework; path = System/Library/Frameworks/CoreFoundation.framework; sourceTree = SDKROOT; };
  910. 2747729C24BC0D9300181362 /* CoreMedia.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMedia.framework; path = System/Library/Frameworks/CoreMedia.framework; sourceTree = SDKROOT; };
  911. 2747729E24BC0D9B00181362 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreAudio.framework; path = System/Library/Frameworks/CoreAudio.framework; sourceTree = SDKROOT; };
  912. 274772A024BC0DA000181362 /* CoreVideo.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreVideo.framework; path = System/Library/Frameworks/CoreVideo.framework; sourceTree = SDKROOT; };
  913. 274772A224BC0DA800181362 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
  914. 274772A424BC0DAE00181362 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AudioToolbox.framework; path = System/Library/Frameworks/AudioToolbox.framework; sourceTree = SDKROOT; };
  915. 274772A624BC0DB500181362 /* VideoToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = VideoToolbox.framework; path = System/Library/Frameworks/VideoToolbox.framework; sourceTree = SDKROOT; };
  916. 274772A824BC0DC000181362 /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
  917. 274772AA24BC0DC900181362 /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
  918. 274772AC24BC0DD000181362 /* libbz2.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libbz2.tbd; path = usr/lib/libbz2.tbd; sourceTree = SDKROOT; };
  919. 274772AE24BC0DDE00181362 /* libiconv.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libiconv.tbd; path = usr/lib/libiconv.tbd; sourceTree = SDKROOT; };
  920. 274772B024BC0DEB00181362 /* libsqlite3.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.tbd; path = usr/lib/libsqlite3.tbd; sourceTree = SDKROOT; };
  921. 2748F8EF24C05F4C003F8E11 /* ExamLibraryController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamLibraryController.h; sourceTree = "<group>"; };
  922. 2748F8F024C05F4C003F8E11 /* ExamLibraryController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamLibraryController.m; sourceTree = "<group>"; };
  923. 2748F8F224C1389F003F8E11 /* ExamLibraryListCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamLibraryListCell.h; sourceTree = "<group>"; };
  924. 2748F8F324C1389F003F8E11 /* ExamLibraryListCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamLibraryListCell.m; sourceTree = "<group>"; };
  925. 2748F8F424C1389F003F8E11 /* ExamLibraryListCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ExamLibraryListCell.xib; sourceTree = "<group>"; };
  926. 27544CF624BC337D00EF58AF /* ExamTicketViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamTicketViewController.h; sourceTree = "<group>"; };
  927. 27544CF724BC337D00EF58AF /* ExamTicketViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamTicketViewController.m; sourceTree = "<group>"; };
  928. 27544CF924BC338900EF58AF /* UserCenterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCenterViewController.h; sourceTree = "<group>"; };
  929. 27544CFA24BC338900EF58AF /* UserCenterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserCenterViewController.m; sourceTree = "<group>"; };
  930. 278D113224CA8E4D00599421 /* ExamDisplayViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExamDisplayViewController.h; sourceTree = "<group>"; };
  931. 278D113324CA8E4D00599421 /* ExamDisplayViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExamDisplayViewController.m; sourceTree = "<group>"; };
  932. 278D113524CADC4800599421 /* Photos.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Photos.framework; path = System/Library/Frameworks/Photos.framework; sourceTree = SDKROOT; };
  933. 2794D1AE24BC604800BAF6F3 /* VefiBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VefiBodyView.h; sourceTree = "<group>"; };
  934. 2794D1AF24BC604800BAF6F3 /* VefiBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VefiBodyView.m; sourceTree = "<group>"; };
  935. 2794D1B124BC605600BAF6F3 /* VefiBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = VefiBodyView.xib; sourceTree = "<group>"; };
  936. 2794D1B324BC662600BAF6F3 /* VeriCheckView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = VeriCheckView.h; sourceTree = "<group>"; };
  937. 2794D1B424BC662600BAF6F3 /* VeriCheckView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = VeriCheckView.m; sourceTree = "<group>"; };
  938. 2794D1B624BC699700BAF6F3 /* RegisterBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RegisterBodyView.h; sourceTree = "<group>"; };
  939. 2794D1B724BC699700BAF6F3 /* RegisterBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RegisterBodyView.m; sourceTree = "<group>"; };
  940. 2794D1B924BC69A400BAF6F3 /* RegisterBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = RegisterBodyView.xib; sourceTree = "<group>"; };
  941. 2794D1BB24BD4CF800BAF6F3 /* FSBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FSBodyView.h; sourceTree = "<group>"; };
  942. 2794D1BC24BD4CF800BAF6F3 /* FSBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FSBodyView.m; sourceTree = "<group>"; };
  943. 2794D1BE24BD4D0C00BAF6F3 /* FSBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = FSBodyView.xib; sourceTree = "<group>"; };
  944. 2794D1C024BD60D500BAF6F3 /* UserCenterBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserCenterBodyView.h; sourceTree = "<group>"; };
  945. 2794D1C124BD60D500BAF6F3 /* UserCenterBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserCenterBodyView.m; sourceTree = "<group>"; };
  946. 2794D1C324BD60E900BAF6F3 /* UserCenterBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = UserCenterBodyView.xib; sourceTree = "<group>"; };
  947. 2794D1C524BD62FB00BAF6F3 /* ModifyBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ModifyBodyView.h; sourceTree = "<group>"; };
  948. 2794D1C624BD62FB00BAF6F3 /* ModifyBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ModifyBodyView.m; sourceTree = "<group>"; };
  949. 2794D1C824BD631A00BAF6F3 /* ModifyBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ModifyBodyView.xib; sourceTree = "<group>"; };
  950. 27A0089B24BD96C50002452B /* NetworkingCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkingCheckController.h; sourceTree = "<group>"; };
  951. 27A0089C24BD96C50002452B /* NetworkingCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkingCheckController.m; sourceTree = "<group>"; };
  952. 27A0089F24BD96C50002452B /* KSNetworkAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetworkAlert.h; sourceTree = "<group>"; };
  953. 27A008A024BD96C50002452B /* NetworkBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkBodyView.m; sourceTree = "<group>"; };
  954. 27A008A124BD96C50002452B /* NetworkBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = NetworkBodyView.xib; sourceTree = "<group>"; };
  955. 27A008A224BD96C50002452B /* KSNetworkAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetworkAlert.m; sourceTree = "<group>"; };
  956. 27A008A324BD96C50002452B /* NetworkBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkBodyView.h; sourceTree = "<group>"; };
  957. 27A008A424BD96C50002452B /* KSNetworkAlert.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KSNetworkAlert.xib; sourceTree = "<group>"; };
  958. 27A008AB24BD96E50002452B /* DeviceCheckView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = DeviceCheckView.xib; sourceTree = "<group>"; };
  959. 27A008AC24BD96E50002452B /* DeviceCheckView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceCheckView.m; sourceTree = "<group>"; };
  960. 27A008AD24BD96E50002452B /* DeviceCheckView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceCheckView.h; sourceTree = "<group>"; };
  961. 27A008B324BD97FE0002452B /* AudioRecordManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioRecordManager.h; sourceTree = "<group>"; };
  962. 27A008B424BD97FE0002452B /* AudioRecordManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioRecordManager.m; sourceTree = "<group>"; };
  963. 27A008B624BD98170002452B /* AudioPlayManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AudioPlayManager.h; sourceTree = "<group>"; };
  964. 27A008B724BD98170002452B /* AudioPlayManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AudioPlayManager.m; sourceTree = "<group>"; };
  965. 27A008C124BD99B10002452B /* SettingViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SettingViewController.h; sourceTree = "<group>"; };
  966. 27A008C224BD99B10002452B /* SettingViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SettingViewController.m; sourceTree = "<group>"; };
  967. 27A008C424BD99BD0002452B /* UserViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserViewController.h; sourceTree = "<group>"; };
  968. 27A008C524BD99BD0002452B /* UserViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserViewController.m; sourceTree = "<group>"; };
  969. 27A008C724BD9D550002452B /* KSNetTypeManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNetTypeManager.h; sourceTree = "<group>"; };
  970. 27A008C824BD9D550002452B /* KSNetTypeManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNetTypeManager.m; sourceTree = "<group>"; };
  971. 27A008CA24BD9E8A0002452B /* SettingBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SettingBodyView.h; sourceTree = "<group>"; };
  972. 27A008CB24BD9E8A0002452B /* SettingBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SettingBodyView.m; sourceTree = "<group>"; };
  973. 27A008CD24BD9E950002452B /* SettingBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SettingBodyView.xib; sourceTree = "<group>"; };
  974. 27A008CF24BDA67E0002452B /* ModifyPhoneChangeController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneChangeController.h; sourceTree = "<group>"; };
  975. 27A008D024BDA67E0002452B /* ModifyPhoneChangeController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneChangeController.m; sourceTree = "<group>"; };
  976. 27A008D124BDA67E0002452B /* ModifyPhoneCheckController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ModifyPhoneCheckController.h; sourceTree = "<group>"; };
  977. 27A008D224BDA67F0002452B /* ModifyPhoneCheckController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ModifyPhoneCheckController.m; sourceTree = "<group>"; };
  978. 27A008D524BDA6940002452B /* PhoneChangeBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhoneChangeBodyView.xib; sourceTree = "<group>"; };
  979. 27A008D624BDA6940002452B /* PhoneChangeBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhoneChangeBodyView.m; sourceTree = "<group>"; };
  980. 27A008D724BDA6940002452B /* PhoneCheckBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhoneCheckBodyView.h; sourceTree = "<group>"; };
  981. 27A008D824BDA6950002452B /* PhoneChangeBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhoneChangeBodyView.h; sourceTree = "<group>"; };
  982. 27A008D924BDA6950002452B /* PhoneCheckBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhoneCheckBodyView.m; sourceTree = "<group>"; };
  983. 27A008DA24BDA6950002452B /* PhoneCheckBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhoneCheckBodyView.xib; sourceTree = "<group>"; };
  984. 27A008DF24BDA6B30002452B /* FeedbackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackViewController.m; sourceTree = "<group>"; };
  985. 27A008E024BDA6B40002452B /* FeedbackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackViewController.h; sourceTree = "<group>"; };
  986. 27A008E224BDA6C30002452B /* FeedbackBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = FeedbackBodyView.xib; sourceTree = "<group>"; };
  987. 27A008E324BDA6C30002452B /* FeedbackBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FeedbackBodyView.m; sourceTree = "<group>"; };
  988. 27A008E424BDA6C40002452B /* FeedbackBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FeedbackBodyView.h; sourceTree = "<group>"; };
  989. 27A008E724BDA7070002452B /* AboutUsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutUsViewController.m; sourceTree = "<group>"; };
  990. 27A008E824BDA7070002452B /* AboutUsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutUsViewController.h; sourceTree = "<group>"; };
  991. 27A008EA24BDA70F0002452B /* AboutBodyView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AboutBodyView.xib; sourceTree = "<group>"; };
  992. 27A008EB24BDA7100002452B /* AboutBodyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AboutBodyView.m; sourceTree = "<group>"; };
  993. 27A008EC24BDA7100002452B /* AboutBodyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AboutBodyView.h; sourceTree = "<group>"; };
  994. 27A008EF24BDB1E20002452B /* SysUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SysUser.h; sourceTree = "<group>"; };
  995. 27A008F024BDB1E30002452B /* SysUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SysUser.m; sourceTree = "<group>"; };
  996. 27A008F124BDB1E30002452B /* UserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserInfo.h; sourceTree = "<group>"; };
  997. 27A008F224BDB1E50002452B /* UserInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserInfo.m; sourceTree = "<group>"; };
  998. 27A008F524BDB6220002452B /* UserBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserBodyView.h; sourceTree = "<group>"; };
  999. 27A008F624BDB6220002452B /* UserBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserBodyView.m; sourceTree = "<group>"; };
  1000. 27A008F824BDB6310002452B /* UserBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = UserBodyView.xib; sourceTree = "<group>"; };
  1001. 27A008FA24BECDC40002452B /* HomeBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeBodyView.h; sourceTree = "<group>"; };
  1002. 27A008FB24BECDC40002452B /* HomeBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeBodyView.m; sourceTree = "<group>"; };
  1003. 27A008FD24BECDFC0002452B /* HomeBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeBodyView.xib; sourceTree = "<group>"; };
  1004. 27D4149624CA741D000DBC0C /* RecordExamModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RecordExamModel.h; sourceTree = "<group>"; };
  1005. 27D4149724CA741D000DBC0C /* RecordExamModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RecordExamModel.m; sourceTree = "<group>"; };
  1006. 27D4149924CA757A000DBC0C /* SongModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SongModel.h; sourceTree = "<group>"; };
  1007. 27D4149A24CA757A000DBC0C /* SongModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SongModel.m; sourceTree = "<group>"; };
  1008. 27EF3EEC24BEE35E002068A2 /* MessageListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageListModel.h; sourceTree = "<group>"; };
  1009. 27EF3EED24BEE35E002068A2 /* MessageListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageListModel.m; sourceTree = "<group>"; };
  1010. 27EF3EEF24BEE885002068A2 /* NotifyMessageCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NotifyMessageCell.h; sourceTree = "<group>"; };
  1011. 27EF3EF024BEE885002068A2 /* NotifyMessageCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NotifyMessageCell.m; sourceTree = "<group>"; };
  1012. 27EF3EF124BEE885002068A2 /* NotifyMessageCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = NotifyMessageCell.xib; sourceTree = "<group>"; };
  1013. 27EF3EF424BEF1DA002068A2 /* TicketBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = TicketBodyView.h; sourceTree = "<group>"; };
  1014. 27EF3EF524BEF1DA002068A2 /* TicketBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = TicketBodyView.m; sourceTree = "<group>"; };
  1015. 27EF3EF724BEF1E8002068A2 /* TicketBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TicketBodyView.xib; sourceTree = "<group>"; };
  1016. 27EF3EF924BEFC79002068A2 /* WaitExamViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitExamViewController.h; sourceTree = "<group>"; };
  1017. 27EF3EFA24BEFC79002068A2 /* WaitExamViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitExamViewController.m; sourceTree = "<group>"; };
  1018. 27EF3EFC24BF015A002068A2 /* WaitExamBodyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WaitExamBodyView.h; sourceTree = "<group>"; };
  1019. 27EF3EFD24BF015A002068A2 /* WaitExamBodyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WaitExamBodyView.m; sourceTree = "<group>"; };
  1020. 27EF3EFF24BF016B002068A2 /* WaitExamBodyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = WaitExamBodyView.xib; sourceTree = "<group>"; };
  1021. 27EF3F0124BF0F11002068A2 /* TicketListModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketListModel.h; sourceTree = "<group>"; };
  1022. 27EF3F0224BF0F12002068A2 /* TicketListModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketListModel.m; sourceTree = "<group>"; };
  1023. 27EF3F0424BFF8A0002068A2 /* TicketDetailModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TicketDetailModel.m; sourceTree = "<group>"; };
  1024. 27EF3F0524BFF8A1002068A2 /* TicketDetailModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TicketDetailModel.h; sourceTree = "<group>"; };
  1025. 27EF3F0724C02B3E002068A2 /* LocalRenderManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LocalRenderManager.m; sourceTree = "<group>"; };
  1026. 27EF3F0824C02B3F002068A2 /* LocalRenderManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LocalRenderManager.h; sourceTree = "<group>"; };
  1027. 27EF3F0B24C02B67002068A2 /* KSTipsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSTipsView.m; sourceTree = "<group>"; };
  1028. 27EF3F0C24C02B67002068A2 /* KSTipsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSTipsView.h; sourceTree = "<group>"; };
  1029. 27EF3F0E24C02B67002068A2 /* KSNormalAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KSNormalAlertView.h; sourceTree = "<group>"; };
  1030. 27EF3F0F24C02B67002068A2 /* KSNormalAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KSNormalAlertView.m; sourceTree = "<group>"; };
  1031. 27EF3F1124C02B67002068A2 /* ClassTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassTitleView.h; sourceTree = "<group>"; };
  1032. 27EF3F1224C02B67002068A2 /* ClassTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassTitleView.m; sourceTree = "<group>"; };
  1033. 27EF3F1424C02B67002068A2 /* ClassVideoListView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListView.h; sourceTree = "<group>"; };
  1034. 27EF3F1524C02B68002068A2 /* ClassVideoListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassVideoListCell.h; sourceTree = "<group>"; };
  1035. 27EF3F1724C02B68002068A2 /* ClassVideoListView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListView.m; sourceTree = "<group>"; };
  1036. 27EF3F1924C02B68002068A2 /* ClassVideoListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassVideoListCell.m; sourceTree = "<group>"; };
  1037. 27EF3F1B24C02B68002068A2 /* MainToolView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MainToolView.m; sourceTree = "<group>"; };
  1038. 27EF3F1C24C02B68002068A2 /* MainToolView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MainToolView.h; sourceTree = "<group>"; };
  1039. 27EF3F1E24C02B68002068A2 /* ClassroomMainContainer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ClassroomMainContainer.h; sourceTree = "<group>"; };
  1040. 27EF3F1F24C02B68002068A2 /* ClassroomMainContainer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ClassroomMainContainer.m; sourceTree = "<group>"; };
  1041. 27EF3F2824C02DE8002068A2 /* EmptyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmptyView.m; sourceTree = "<group>"; };
  1042. 27EF3F2924C02DE9002068A2 /* EmptyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmptyView.h; sourceTree = "<group>"; };
  1043. 27EF3F2B24C0384E002068A2 /* HomeExamTicketCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeExamTicketCell.h; sourceTree = "<group>"; };
  1044. 27EF3F2C24C0384E002068A2 /* HomeExamTicketCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeExamTicketCell.m; sourceTree = "<group>"; };
  1045. 27EF3F2D24C0384E002068A2 /* HomeExamTicketCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = HomeExamTicketCell.xib; sourceTree = "<group>"; };
  1046. 2BB32BBE582672362BB6E017 /* Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig"; sourceTree = "<group>"; };
  1047. 2F7D3758362ED28D51286A60 /* Pods-MusicGradeExam.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam.debug.xcconfig"; sourceTree = "<group>"; };
  1048. 5402063E714DA9D9107F8070 /* Pods-MusicGradeExamTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExamTests.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExamTests/Pods-MusicGradeExamTests.debug.xcconfig"; sourceTree = "<group>"; };
  1049. 8BAA64634BC925E7C2CD7008 /* libPods-MusicGradeExamTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExamTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1050. E19677AAD7D01861E10F49D5 /* Pods-MusicGradeExamTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExamTests.release.xcconfig"; path = "Target Support Files/Pods-MusicGradeExamTests/Pods-MusicGradeExamTests.release.xcconfig"; sourceTree = "<group>"; };
  1051. E1DA29861866096EC2DBC683 /* Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig"; path = "Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig"; sourceTree = "<group>"; };
  1052. F8D13E0A14104E75F7922812 /* libPods-MusicGradeExam-MusicGradeExamUITests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MusicGradeExam-MusicGradeExamUITests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
  1053. /* End PBXFileReference section */
  1054. /* Begin PBXFrameworksBuildPhase section */
  1055. 27476F4024BBFB5900181362 /* Frameworks */ = {
  1056. isa = PBXFrameworksBuildPhase;
  1057. buildActionMask = 2147483647;
  1058. files = (
  1059. 278D113624CADC4800599421 /* Photos.framework in Frameworks */,
  1060. 274772B124BC0DEB00181362 /* libsqlite3.tbd in Frameworks */,
  1061. 274772AF24BC0DDF00181362 /* libiconv.tbd in Frameworks */,
  1062. 274772AD24BC0DD000181362 /* libbz2.tbd in Frameworks */,
  1063. 274772AB24BC0DC900181362 /* libz.tbd in Frameworks */,
  1064. 274772A924BC0DC100181362 /* libc++.tbd in Frameworks */,
  1065. 274772A724BC0DB500181362 /* VideoToolbox.framework in Frameworks */,
  1066. 274772A524BC0DAE00181362 /* AudioToolbox.framework in Frameworks */,
  1067. 274772A324BC0DA800181362 /* CFNetwork.framework in Frameworks */,
  1068. 274772A124BC0DA000181362 /* CoreVideo.framework in Frameworks */,
  1069. 2747729F24BC0D9B00181362 /* CoreAudio.framework in Frameworks */,
  1070. 2747729D24BC0D9300181362 /* CoreMedia.framework in Frameworks */,
  1071. 2747729B24BC0D8D00181362 /* CoreFoundation.framework in Frameworks */,
  1072. 2747729924BC0D8700181362 /* CoreTelephony.framework in Frameworks */,
  1073. 2747729724BC0D8100181362 /* CoreLocation.framework in Frameworks */,
  1074. 2747729524BC0D7A00181362 /* CoreGraphics.framework in Frameworks */,
  1075. 2747729324BC0D7300181362 /* OpenGLES.framework in Frameworks */,
  1076. 2747729124BC0D6C00181362 /* GLKit.framework in Frameworks */,
  1077. 2747728F24BC0D6500181362 /* AVFoundation.framework in Frameworks */,
  1078. 2747728D24BC0D5F00181362 /* QuartzCore.framework in Frameworks */,
  1079. 2747728B24BC0D5800181362 /* Security.framework in Frameworks */,
  1080. 2747728924BC0D5200181362 /* ImageIO.framework in Frameworks */,
  1081. 2747728724BC0D4800181362 /* MapKit.framework in Frameworks */,
  1082. 2747728524BC0D4300181362 /* AssetsLibrary.framework in Frameworks */,
  1083. 2747727824BC0C7C00181362 /* RongSight.framework in Frameworks */,
  1084. 2747727C24BC0C7C00181362 /* libopencore-amrnb.a in Frameworks */,
  1085. 2747727B24BC0C7C00181362 /* libopencore-amrwb.a in Frameworks */,
  1086. 2747728124BC0C7C00181362 /* RongIMKit.framework in Frameworks */,
  1087. 2747727D24BC0C7C00181362 /* libvo-amrwbenc.a in Frameworks */,
  1088. 52771C0027351695CEDB4C8E /* libPods-MusicGradeExam.a in Frameworks */,
  1089. 2747727A24BC0C7C00181362 /* RongIMLib.framework in Frameworks */,
  1090. 2747727924BC0C7C00181362 /* RongRTCLib.framework in Frameworks */,
  1091. );
  1092. runOnlyForDeploymentPostprocessing = 0;
  1093. };
  1094. 27476F5B24BBFB5C00181362 /* Frameworks */ = {
  1095. isa = PBXFrameworksBuildPhase;
  1096. buildActionMask = 2147483647;
  1097. files = (
  1098. 5577ECF41C84E1BDFEC99DBC /* libPods-MusicGradeExamTests.a in Frameworks */,
  1099. );
  1100. runOnlyForDeploymentPostprocessing = 0;
  1101. };
  1102. 27476F6624BBFB5C00181362 /* Frameworks */ = {
  1103. isa = PBXFrameworksBuildPhase;
  1104. buildActionMask = 2147483647;
  1105. files = (
  1106. A7C23B2E920E232C71C39B0E /* libPods-MusicGradeExam-MusicGradeExamUITests.a in Frameworks */,
  1107. );
  1108. runOnlyForDeploymentPostprocessing = 0;
  1109. };
  1110. /* End PBXFrameworksBuildPhase section */
  1111. /* Begin PBXGroup section */
  1112. 2729F7D424C81CA200E1F3C4 /* RecordExam */ = {
  1113. isa = PBXGroup;
  1114. children = (
  1115. 2729F7D524C81CA200E1F3C4 /* Controller */,
  1116. 2729F7D624C81CA300E1F3C4 /* Model */,
  1117. 2729F7D724C81CA300E1F3C4 /* View */,
  1118. );
  1119. path = RecordExam;
  1120. sourceTree = "<group>";
  1121. };
  1122. 2729F7D524C81CA200E1F3C4 /* Controller */ = {
  1123. isa = PBXGroup;
  1124. children = (
  1125. 2729F7E524C8326900E1F3C4 /* RecordExamViewController.h */,
  1126. 2729F7E624C8326900E1F3C4 /* RecordExamViewController.m */,
  1127. );
  1128. path = Controller;
  1129. sourceTree = "<group>";
  1130. };
  1131. 2729F7D624C81CA300E1F3C4 /* Model */ = {
  1132. isa = PBXGroup;
  1133. children = (
  1134. 27D4149624CA741D000DBC0C /* RecordExamModel.h */,
  1135. 27D4149724CA741D000DBC0C /* RecordExamModel.m */,
  1136. 27D4149924CA757A000DBC0C /* SongModel.h */,
  1137. 27D4149A24CA757A000DBC0C /* SongModel.m */,
  1138. );
  1139. path = Model;
  1140. sourceTree = "<group>";
  1141. };
  1142. 2729F7D724C81CA300E1F3C4 /* View */ = {
  1143. isa = PBXGroup;
  1144. children = (
  1145. 2729F7E824C8328700E1F3C4 /* RecordBodyView.h */,
  1146. 2729F7E924C8328700E1F3C4 /* RecordBodyView.m */,
  1147. 2729F7EB24C8329700E1F3C4 /* RecordBodyView.xib */,
  1148. 2729F7F724C8425E00E1F3C4 /* RecordTipsView.h */,
  1149. 2729F7F824C8425E00E1F3C4 /* RecordTipsView.m */,
  1150. 2729F7FA24C8427100E1F3C4 /* RecordTipsView.xib */,
  1151. 2729F7ED24C8379D00E1F3C4 /* RecordListCell.h */,
  1152. 2729F7EE24C8379D00E1F3C4 /* RecordListCell.m */,
  1153. 2729F7EF24C8379D00E1F3C4 /* RecordListCell.xib */,
  1154. 2729F7F224C8395300E1F3C4 /* RecordBottomView.h */,
  1155. 2729F7F324C8395300E1F3C4 /* RecordBottomView.m */,
  1156. 2729F7F524C8398B00E1F3C4 /* RecordBottomView.xib */,
  1157. );
  1158. path = View;
  1159. sourceTree = "<group>";
  1160. };
  1161. 27476F3A24BBFB5900181362 = {
  1162. isa = PBXGroup;
  1163. children = (
  1164. 27476F4524BBFB5900181362 /* MusicGradeExam */,
  1165. 27476F6124BBFB5C00181362 /* MusicGradeExamTests */,
  1166. 27476F6C24BBFB5C00181362 /* MusicGradeExamUITests */,
  1167. 27476F4424BBFB5900181362 /* Products */,
  1168. 3765A35FA865CF0E79E4496A /* Pods */,
  1169. 8478281B4E8B1E1D71EF685C /* Frameworks */,
  1170. );
  1171. sourceTree = "<group>";
  1172. };
  1173. 27476F4424BBFB5900181362 /* Products */ = {
  1174. isa = PBXGroup;
  1175. children = (
  1176. 27476F4324BBFB5900181362 /* 酷乐秀.app */,
  1177. 27476F5E24BBFB5C00181362 /* MusicGradeExamTests.xctest */,
  1178. 27476F6924BBFB5C00181362 /* MusicGradeExamUITests.xctest */,
  1179. );
  1180. name = Products;
  1181. sourceTree = "<group>";
  1182. };
  1183. 27476F4524BBFB5900181362 /* MusicGradeExam */ = {
  1184. isa = PBXGroup;
  1185. children = (
  1186. 2729F7CE24C7D43600E1F3C4 /* 酷乐秀.entitlements */,
  1187. 2747718624BC0C0400181362 /* KSRequestManager.h */,
  1188. 2747700224BC0C0000181362 /* KSRequestManager.m */,
  1189. 2747707524BC0C0200181362 /* Manager */,
  1190. 2747700324BC0C0100181362 /* UI */,
  1191. 27476FF524BC0C0000181362 /* Base */,
  1192. 2747707E24BC0C0200181362 /* Define */,
  1193. 27476F7B24BC0BFF00181362 /* ThirdPart */,
  1194. 2747708224BC0C0300181362 /* Tools */,
  1195. 27476F4624BBFB5900181362 /* AppDelegate.h */,
  1196. 27476F4724BBFB5900181362 /* AppDelegate.m */,
  1197. 27476F4C24BBFB5900181362 /* ViewController.h */,
  1198. 27476F4D24BBFB5900181362 /* ViewController.m */,
  1199. 27476F4F24BBFB5900181362 /* Main.storyboard */,
  1200. 27476F5224BBFB5C00181362 /* Assets.xcassets */,
  1201. 27476F5424BBFB5C00181362 /* LaunchScreen.storyboard */,
  1202. 27476F5724BBFB5C00181362 /* Info.plist */,
  1203. 27476F5824BBFB5C00181362 /* main.m */,
  1204. 2747726624BC0C7C00181362 /* RongCloud */,
  1205. );
  1206. path = MusicGradeExam;
  1207. sourceTree = "<group>";
  1208. };
  1209. 27476F6124BBFB5C00181362 /* MusicGradeExamTests */ = {
  1210. isa = PBXGroup;
  1211. children = (
  1212. 27476F6224BBFB5C00181362 /* MusicGradeExamTests.m */,
  1213. 27476F6424BBFB5C00181362 /* Info.plist */,
  1214. );
  1215. path = MusicGradeExamTests;
  1216. sourceTree = "<group>";
  1217. };
  1218. 27476F6C24BBFB5C00181362 /* MusicGradeExamUITests */ = {
  1219. isa = PBXGroup;
  1220. children = (
  1221. 27476F6D24BBFB5C00181362 /* MusicGradeExamUITests.m */,
  1222. 27476F6F24BBFB5C00181362 /* Info.plist */,
  1223. );
  1224. path = MusicGradeExamUITests;
  1225. sourceTree = "<group>";
  1226. };
  1227. 27476F7B24BC0BFF00181362 /* ThirdPart */ = {
  1228. isa = PBXGroup;
  1229. children = (
  1230. 27476FE124BC0BFF00181362 /* ALCalendarPicker */,
  1231. 27476FD524BC0BFF00181362 /* DZNSegmentedControl.h */,
  1232. 27476F7D24BC0BFF00181362 /* DZNSegmentedControl.m */,
  1233. 27476FCF24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.h */,
  1234. 27476F7C24BC0BFF00181362 /* JYEqualCellSpaceFlowLayout.m */,
  1235. 27476F8A24BC0BFF00181362 /* KSPickerView.h */,
  1236. 27476FDE24BC0BFF00181362 /* KSPickerView.m */,
  1237. 27476FB224BC0BFF00181362 /* MSSBrowse */,
  1238. 27476F7E24BC0BFF00181362 /* NSObject+ReadDocument.h */,
  1239. 27476FE024BC0BFF00181362 /* NSObject+ReadDocument.m */,
  1240. 27476FDD24BC0BFF00181362 /* QWNavigationBar */,
  1241. 27476FAB24BC0BFF00181362 /* SCIndexView */,
  1242. 27476FD624BC0BFF00181362 /* TYCyclePagerView */,
  1243. 27476F8B24BC0BFF00181362 /* TZImagePickerController */,
  1244. 27476FF424BC0BFF00181362 /* UIView+Animation.h */,
  1245. 27476FCE24BC0BFF00181362 /* UIView+Animation.m */,
  1246. 27476FDF24BC0BFF00181362 /* UIView+ShowProgress.h */,
  1247. 27476F8924BC0BFF00181362 /* UIView+ShowProgress.m */,
  1248. 27476F7F24BC0BFF00181362 /* WMPlayer */,
  1249. 27476FD024BC0BFF00181362 /* ZKCycleScrollView */,
  1250. );
  1251. path = ThirdPart;
  1252. sourceTree = "<group>";
  1253. };
  1254. 27476F7F24BC0BFF00181362 /* WMPlayer */ = {
  1255. isa = PBXGroup;
  1256. children = (
  1257. 27476F8024BC0BFF00181362 /* WMLightView.h */,
  1258. 27476F8124BC0BFF00181362 /* WMPlayerModel.m */,
  1259. 27476F8224BC0BFF00181362 /* FastForwardView.h */,
  1260. 27476F8324BC0BFF00181362 /* WMPlayer.bundle */,
  1261. 27476F8424BC0BFF00181362 /* WMPlayer.h */,
  1262. 27476F8524BC0BFF00181362 /* WMPlayerModel.h */,
  1263. 27476F8624BC0BFF00181362 /* WMLightView.m */,
  1264. 27476F8724BC0BFF00181362 /* FastForwardView.m */,
  1265. 27476F8824BC0BFF00181362 /* WMPlayer.m */,
  1266. );
  1267. path = WMPlayer;
  1268. sourceTree = "<group>";
  1269. };
  1270. 27476F8B24BC0BFF00181362 /* TZImagePickerController */ = {
  1271. isa = PBXGroup;
  1272. children = (
  1273. 27476F8C24BC0BFF00181362 /* TZPhotoPreviewCell.h */,
  1274. 27476F8D24BC0BFF00181362 /* TZPhotoPickerController.h */,
  1275. 27476F8E24BC0BFF00181362 /* TZImageCropManager.m */,
  1276. 27476F8F24BC0BFF00181362 /* TZImageManager.h */,
  1277. 27476F9024BC0BFF00181362 /* TZAssetCell.m */,
  1278. 27476F9124BC0BFF00181362 /* TZVideoPlayerController.m */,
  1279. 27476F9224BC0BFF00181362 /* TZAssetModel.m */,
  1280. 27476F9324BC0BFF00181362 /* NSBundle+TZImagePicker.m */,
  1281. 27476F9424BC0BFF00181362 /* TZLocationManager.h */,
  1282. 27476F9524BC0BFF00181362 /* TZImagePickerController.h */,
  1283. 27476F9624BC0BFF00181362 /* UIView+Layout.m */,
  1284. 27476F9724BC0BFF00181362 /* TZPhotoPreviewController.m */,
  1285. 27476F9824BC0BFF00181362 /* TZImagePickerController.bundle */,
  1286. 27476F9924BC0BFF00181362 /* TZProgressView.m */,
  1287. 27476F9A24BC0BFF00181362 /* TZGifPhotoPreviewController.h */,
  1288. 27476F9B24BC0BFF00181362 /* TZImageRequestOperation.h */,
  1289. 27476F9C24BC0BFF00181362 /* TZAssetCell.h */,
  1290. 27476F9D24BC0BFF00181362 /* TZImageManager.m */,
  1291. 27476F9E24BC0BFF00181362 /* TZImageCropManager.h */,
  1292. 27476F9F24BC0BFF00181362 /* TZPhotoPickerController.m */,
  1293. 27476FA024BC0BFF00181362 /* TZPhotoPreviewCell.m */,
  1294. 27476FA124BC0BFF00181362 /* NSBundle+TZImagePicker.h */,
  1295. 27476FA224BC0BFF00181362 /* TZAssetModel.h */,
  1296. 27476FA324BC0BFF00181362 /* TZVideoPlayerController.h */,
  1297. 27476FA424BC0BFF00181362 /* TZPhotoPreviewController.h */,
  1298. 27476FA524BC0BFF00181362 /* UIView+Layout.h */,
  1299. 27476FA624BC0BFF00181362 /* TZImagePickerController.m */,
  1300. 27476FA724BC0BFF00181362 /* TZLocationManager.m */,
  1301. 27476FA824BC0BFF00181362 /* TZGifPhotoPreviewController.m */,
  1302. 27476FA924BC0BFF00181362 /* TZImageRequestOperation.m */,
  1303. 27476FAA24BC0BFF00181362 /* TZProgressView.h */,
  1304. );
  1305. path = TZImagePickerController;
  1306. sourceTree = "<group>";
  1307. };
  1308. 27476FAB24BC0BFF00181362 /* SCIndexView */ = {
  1309. isa = PBXGroup;
  1310. children = (
  1311. 27476FAC24BC0BFF00181362 /* SCIndexViewConfiguration.m */,
  1312. 27476FAD24BC0BFF00181362 /* UITableView+SCIndexView.h */,
  1313. 27476FAE24BC0BFF00181362 /* SCIndexView.m */,
  1314. 27476FAF24BC0BFF00181362 /* SCIndexViewConfiguration.h */,
  1315. 27476FB024BC0BFF00181362 /* UITableView+SCIndexView.m */,
  1316. 27476FB124BC0BFF00181362 /* SCIndexView.h */,
  1317. );
  1318. path = SCIndexView;
  1319. sourceTree = "<group>";
  1320. };
  1321. 27476FB224BC0BFF00181362 /* MSSBrowse */ = {
  1322. isa = PBXGroup;
  1323. children = (
  1324. 27476FB324BC0BFF00181362 /* MSSBrowseRemindView.h */,
  1325. 27476FB424BC0BFF00181362 /* MSSBrowseZoomScrollView.h */,
  1326. 27476FB524BC0BFF00181362 /* MSSBrowseLoadingImageView.m */,
  1327. 27476FB624BC0BFF00181362 /* MSSBrowseBaseViewController.h */,
  1328. 27476FB724BC0BFF00181362 /* UIImage+MSSScale.h */,
  1329. 27476FB824BC0BFF00181362 /* MSSBrowseNetworkViewController.h */,
  1330. 27476FB924BC0BFF00181362 /* MSSBrowseActionSheet.h */,
  1331. 27476FBA24BC0BFF00181362 /* MSSBrowseActionSheetCell.h */,
  1332. 27476FBB24BC0BFF00181362 /* MSSBrowseLocalViewController.m */,
  1333. 27476FBC24BC0BFF00181362 /* MSSBrowseCollectionViewCell.m */,
  1334. 27476FBD24BC0BFF00181362 /* UIView+MSSLayout.h */,
  1335. 27476FBE24BC0BFF00181362 /* MSSBrowseModel.m */,
  1336. 27476FBF24BC0BFF00181362 /* MSSBrowseDefine.h */,
  1337. 27476FC024BC0BFF00181362 /* MSSBrowseActionSheet.m */,
  1338. 27476FC124BC0BFF00181362 /* MSSBrowseNetworkViewController.m */,
  1339. 27476FC224BC0BFF00181362 /* UIImage+MSSScale.m */,
  1340. 27476FC324BC0BFF00181362 /* MSSBrowseBaseViewController.m */,
  1341. 27476FC424BC0BFF00181362 /* MSSBrowseLoadingImageView.h */,
  1342. 27476FC524BC0BFF00181362 /* MSSBrowseZoomScrollView.m */,
  1343. 27476FC624BC0BFF00181362 /* MSSBrowseRemindView.m */,
  1344. 27476FC724BC0BFF00181362 /* mss_browseLoading@3x.png */,
  1345. 27476FC824BC0BFF00181362 /* MSSBrowseCollectionViewCell.h */,
  1346. 27476FC924BC0BFF00181362 /* MSSBrowseLocalViewController.h */,
  1347. 27476FCA24BC0BFF00181362 /* MSSBrowseActionSheetCell.m */,
  1348. 27476FCB24BC0BFF00181362 /* MSSBrowseModel.h */,
  1349. 27476FCC24BC0BFF00181362 /* mss_browseLoading@2x.png */,
  1350. 27476FCD24BC0BFF00181362 /* UIView+MSSLayout.m */,
  1351. );
  1352. path = MSSBrowse;
  1353. sourceTree = "<group>";
  1354. };
  1355. 27476FD024BC0BFF00181362 /* ZKCycleScrollView */ = {
  1356. isa = PBXGroup;
  1357. children = (
  1358. 27476FD124BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.h */,
  1359. 27476FD224BC0BFF00181362 /* ZKCycleScrollView.m */,
  1360. 27476FD324BC0BFF00181362 /* ZKCycleScrollView.h */,
  1361. 27476FD424BC0BFF00181362 /* ZKCycleScrollViewFlowLayout.m */,
  1362. );
  1363. path = ZKCycleScrollView;
  1364. sourceTree = "<group>";
  1365. };
  1366. 27476FD624BC0BFF00181362 /* TYCyclePagerView */ = {
  1367. isa = PBXGroup;
  1368. children = (
  1369. 27476FD724BC0BFF00181362 /* TYCyclePagerView.h */,
  1370. 27476FD824BC0BFF00181362 /* TYCyclePagerTransformLayout.h */,
  1371. 27476FD924BC0BFF00181362 /* TYPageControl.m */,
  1372. 27476FDA24BC0BFF00181362 /* TYCyclePagerView.m */,
  1373. 27476FDB24BC0BFF00181362 /* TYCyclePagerTransformLayout.m */,
  1374. 27476FDC24BC0BFF00181362 /* TYPageControl.h */,
  1375. );
  1376. path = TYCyclePagerView;
  1377. sourceTree = "<group>";
  1378. };
  1379. 27476FDD24BC0BFF00181362 /* QWNavigationBar */ = {
  1380. isa = PBXGroup;
  1381. children = (
  1382. );
  1383. path = QWNavigationBar;
  1384. sourceTree = "<group>";
  1385. };
  1386. 27476FE124BC0BFF00181362 /* ALCalendarPicker */ = {
  1387. isa = PBXGroup;
  1388. children = (
  1389. 27476FE224BC0BFF00181362 /* ALCalendarCell.m */,
  1390. 27476FE324BC0BFF00181362 /* ALCalendarConfig.m */,
  1391. 27476FE424BC0BFF00181362 /* ALCalendarHeader.m */,
  1392. 27476FE524BC0BFF00181362 /* ALCalendarDate.m */,
  1393. 27476FE624BC0BFF00181362 /* ALCalendarCollectionView.m */,
  1394. 27476FE724BC0BFF00181362 /* ALCalendarHelper.m */,
  1395. 27476FE824BC0BFF00181362 /* UIView+ALFrame.h */,
  1396. 27476FE924BC0BFF00181362 /* ALCalendarPicker.h */,
  1397. 27476FEA24BC0BFF00181362 /* ALCalendarManager.h */,
  1398. 27476FEB24BC0BFF00181362 /* ALCalendarCollectionView.h */,
  1399. 27476FEC24BC0BFF00181362 /* ALCalendarDate.h */,
  1400. 27476FED24BC0BFF00181362 /* ALCalendarHeader.h */,
  1401. 27476FEE24BC0BFF00181362 /* ALCalendarConfig.h */,
  1402. 27476FEF24BC0BFF00181362 /* ALCalendarCell.h */,
  1403. 27476FF024BC0BFF00181362 /* ALCalendarHelper.h */,
  1404. 27476FF124BC0BFF00181362 /* ALCalendarPicker.m */,
  1405. 27476FF224BC0BFF00181362 /* UIView+ALFrame.m */,
  1406. 27476FF324BC0BFF00181362 /* ALCalendarManager.m */,
  1407. );
  1408. path = ALCalendarPicker;
  1409. sourceTree = "<group>";
  1410. };
  1411. 27476FF524BC0C0000181362 /* Base */ = {
  1412. isa = PBXGroup;
  1413. children = (
  1414. 27A008C724BD9D550002452B /* KSNetTypeManager.h */,
  1415. 27A008C824BD9D550002452B /* KSNetTypeManager.m */,
  1416. 27476FF824BC0C0000181362 /* CustomNavViewController.h */,
  1417. 27476FFF24BC0C0000181362 /* CustomNavViewController.m */,
  1418. 27476FF724BC0C0000181362 /* KSBaseViewController.h */,
  1419. 27476FFC24BC0C0000181362 /* KSBaseViewController.m */,
  1420. 27476FF924BC0C0000181362 /* KSBaseWKWebViewController.h */,
  1421. 27476FFE24BC0C0000181362 /* KSBaseWKWebViewController.m */,
  1422. 27476FFA24BC0C0000181362 /* KSTabBarController.h */,
  1423. 2747700124BC0C0000181362 /* KSTabBarController.m */,
  1424. 27476FFB24BC0C0000181362 /* UINavigationController+KSNavigationBar.h */,
  1425. 2747700024BC0C0000181362 /* UINavigationController+KSNavigationBar.m */,
  1426. );
  1427. path = Base;
  1428. sourceTree = "<group>";
  1429. };
  1430. 2747700324BC0C0100181362 /* UI */ = {
  1431. isa = PBXGroup;
  1432. children = (
  1433. 2729F7D424C81CA200E1F3C4 /* RecordExam */,
  1434. 2747700424BC0C0100181362 /* Home */,
  1435. 2748F8EB24C05F30003F8E11 /* ExamLibrary */,
  1436. 2747705624BC0C0100181362 /* Exam */,
  1437. 2747700A24BC0C0100181362 /* UserCenter */,
  1438. 2747700E24BC0C0100181362 /* Classroom */,
  1439. 2747705A24BC0C0100181362 /* NotiferMessage */,
  1440. 2747706024BC0C0100181362 /* Login */,
  1441. );
  1442. path = UI;
  1443. sourceTree = "<group>";
  1444. };
  1445. 2747700424BC0C0100181362 /* Home */ = {
  1446. isa = PBXGroup;
  1447. children = (
  1448. 2747700524BC0C0100181362 /* Controller */,
  1449. 2747700824BC0C0100181362 /* Model */,
  1450. 2747700924BC0C0100181362 /* View */,
  1451. );
  1452. path = Home;
  1453. sourceTree = "<group>";
  1454. };
  1455. 2747700524BC0C0100181362 /* Controller */ = {
  1456. isa = PBXGroup;
  1457. children = (
  1458. 2747700724BC0C0100181362 /* HomeViewController.h */,
  1459. 2747700624BC0C0100181362 /* HomeViewController.m */,
  1460. 278D113224CA8E4D00599421 /* ExamDisplayViewController.h */,
  1461. 278D113324CA8E4D00599421 /* ExamDisplayViewController.m */,
  1462. );
  1463. path = Controller;
  1464. sourceTree = "<group>";
  1465. };
  1466. 2747700824BC0C0100181362 /* Model */ = {
  1467. isa = PBXGroup;
  1468. children = (
  1469. );
  1470. path = Model;
  1471. sourceTree = "<group>";
  1472. };
  1473. 2747700924BC0C0100181362 /* View */ = {
  1474. isa = PBXGroup;
  1475. children = (
  1476. 27A008FA24BECDC40002452B /* HomeBodyView.h */,
  1477. 27A008FB24BECDC40002452B /* HomeBodyView.m */,
  1478. 27A008FD24BECDFC0002452B /* HomeBodyView.xib */,
  1479. 27EF3F2B24C0384E002068A2 /* HomeExamTicketCell.h */,
  1480. 27EF3F2C24C0384E002068A2 /* HomeExamTicketCell.m */,
  1481. 27EF3F2D24C0384E002068A2 /* HomeExamTicketCell.xib */,
  1482. );
  1483. path = View;
  1484. sourceTree = "<group>";
  1485. };
  1486. 2747700A24BC0C0100181362 /* UserCenter */ = {
  1487. isa = PBXGroup;
  1488. children = (
  1489. 27A008BD24BD99820002452B /* Mine */,
  1490. 27A008B924BD99620002452B /* Setting */,
  1491. 27A0089924BD96C50002452B /* Networking */,
  1492. 27A008AA24BD96E50002452B /* DeviceCheck */,
  1493. 2747700B24BC0C0100181362 /* Controller */,
  1494. 2747700C24BC0C0100181362 /* Model */,
  1495. 2747700D24BC0C0100181362 /* View */,
  1496. );
  1497. path = UserCenter;
  1498. sourceTree = "<group>";
  1499. };
  1500. 2747700B24BC0C0100181362 /* Controller */ = {
  1501. isa = PBXGroup;
  1502. children = (
  1503. 27544CF924BC338900EF58AF /* UserCenterViewController.h */,
  1504. 27544CFA24BC338900EF58AF /* UserCenterViewController.m */,
  1505. );
  1506. path = Controller;
  1507. sourceTree = "<group>";
  1508. };
  1509. 2747700C24BC0C0100181362 /* Model */ = {
  1510. isa = PBXGroup;
  1511. children = (
  1512. );
  1513. path = Model;
  1514. sourceTree = "<group>";
  1515. };
  1516. 2747700D24BC0C0100181362 /* View */ = {
  1517. isa = PBXGroup;
  1518. children = (
  1519. 2794D1C024BD60D500BAF6F3 /* UserCenterBodyView.h */,
  1520. 2794D1C124BD60D500BAF6F3 /* UserCenterBodyView.m */,
  1521. 2794D1C324BD60E900BAF6F3 /* UserCenterBodyView.xib */,
  1522. );
  1523. path = View;
  1524. sourceTree = "<group>";
  1525. };
  1526. 2747700E24BC0C0100181362 /* Classroom */ = {
  1527. isa = PBXGroup;
  1528. children = (
  1529. 2747700F24BC0C0100181362 /* Controller */,
  1530. 2747701224BC0C0100181362 /* Model */,
  1531. 2747701524BC0C0100181362 /* View */,
  1532. 2747701624BC0C0100181362 /* Service */,
  1533. );
  1534. path = Classroom;
  1535. sourceTree = "<group>";
  1536. };
  1537. 2747700F24BC0C0100181362 /* Controller */ = {
  1538. isa = PBXGroup;
  1539. children = (
  1540. 2747701124BC0C0100181362 /* ClassroomViewController.h */,
  1541. 2747701024BC0C0100181362 /* ClassroomViewController.m */,
  1542. );
  1543. path = Controller;
  1544. sourceTree = "<group>";
  1545. };
  1546. 2747701224BC0C0100181362 /* Model */ = {
  1547. isa = PBXGroup;
  1548. children = (
  1549. 27EF3F0824C02B3F002068A2 /* LocalRenderManager.h */,
  1550. 27EF3F0724C02B3E002068A2 /* LocalRenderManager.m */,
  1551. 2747701324BC0C0100181362 /* RoomLoginHelper.h */,
  1552. 2747701424BC0C0100181362 /* RoomLoginHelper.m */,
  1553. );
  1554. path = Model;
  1555. sourceTree = "<group>";
  1556. };
  1557. 2747701524BC0C0100181362 /* View */ = {
  1558. isa = PBXGroup;
  1559. children = (
  1560. 27EF3F1D24C02B68002068A2 /* MainContainer */,
  1561. 27EF3F1A24C02B68002068A2 /* MainToolbar */,
  1562. 27EF3F0D24C02B67002068A2 /* NormalAlertView */,
  1563. 27EF3F0A24C02B67002068A2 /* TipsView */,
  1564. 27EF3F1024C02B67002068A2 /* TitleView */,
  1565. 27EF3F1324C02B67002068A2 /* VideoList */,
  1566. );
  1567. path = View;
  1568. sourceTree = "<group>";
  1569. };
  1570. 2747701624BC0C0100181362 /* Service */ = {
  1571. isa = PBXGroup;
  1572. children = (
  1573. 2747701B24BC0C0100181362 /* Classroom */,
  1574. 2747705324BC0C0100181362 /* IM */,
  1575. 2747701724BC0C0100181362 /* KSRemoteUserManager.h */,
  1576. 2747705224BC0C0100181362 /* KSRemoteUserManager.m */,
  1577. 2747701824BC0C0100181362 /* RTCService */,
  1578. );
  1579. path = Service;
  1580. sourceTree = "<group>";
  1581. };
  1582. 2747701824BC0C0100181362 /* RTCService */ = {
  1583. isa = PBXGroup;
  1584. children = (
  1585. 2747701A24BC0C0100181362 /* RTCService.h */,
  1586. 2747701924BC0C0100181362 /* RTCService.m */,
  1587. );
  1588. path = RTCService;
  1589. sourceTree = "<group>";
  1590. };
  1591. 2747701B24BC0C0100181362 /* Classroom */ = {
  1592. isa = PBXGroup;
  1593. children = (
  1594. 2747705024BC0C0100181362 /* ClassroomDefine.h */,
  1595. 2747702D24BC0C0100181362 /* ClassroomService.h */,
  1596. 2747705124BC0C0100181362 /* ClassroomService.m */,
  1597. 2747702E24BC0C0100181362 /* Message */,
  1598. 2747704924BC0C0100181362 /* Model */,
  1599. 2747701C24BC0C0100181362 /* Util */,
  1600. );
  1601. path = Classroom;
  1602. sourceTree = "<group>";
  1603. };
  1604. 2747701C24BC0C0100181362 /* Util */ = {
  1605. isa = PBXGroup;
  1606. children = (
  1607. 2747701D24BC0C0100181362 /* ErrorCode.h */,
  1608. 2747701E24BC0C0100181362 /* Category */,
  1609. 2747702124BC0C0100181362 /* Portrait */,
  1610. 2747702424BC0C0100181362 /* Macro.h */,
  1611. 2747702524BC0C0100181362 /* HTTP */,
  1612. 2747702A24BC0C0100181362 /* View */,
  1613. );
  1614. path = Util;
  1615. sourceTree = "<group>";
  1616. };
  1617. 2747701E24BC0C0100181362 /* Category */ = {
  1618. isa = PBXGroup;
  1619. children = (
  1620. 2747701F24BC0C0100181362 /* UIView+MBProgressHUD.h */,
  1621. 2747702024BC0C0100181362 /* UIView+MBProgressHUD.m */,
  1622. );
  1623. path = Category;
  1624. sourceTree = "<group>";
  1625. };
  1626. 2747702124BC0C0100181362 /* Portrait */ = {
  1627. isa = PBXGroup;
  1628. children = (
  1629. 2747702224BC0C0100181362 /* RolePortraitView.m */,
  1630. 2747702324BC0C0100181362 /* RolePortraitView.h */,
  1631. );
  1632. path = Portrait;
  1633. sourceTree = "<group>";
  1634. };
  1635. 2747702524BC0C0100181362 /* HTTP */ = {
  1636. isa = PBXGroup;
  1637. children = (
  1638. 2747702624BC0C0100181362 /* HTTPUtility.m */,
  1639. 2747702724BC0C0100181362 /* HTTPResult.m */,
  1640. 2747702824BC0C0100181362 /* HTTPUtility.h */,
  1641. 2747702924BC0C0100181362 /* HTTPResult.h */,
  1642. );
  1643. path = HTTP;
  1644. sourceTree = "<group>";
  1645. };
  1646. 2747702A24BC0C0100181362 /* View */ = {
  1647. isa = PBXGroup;
  1648. children = (
  1649. );
  1650. path = View;
  1651. sourceTree = "<group>";
  1652. };
  1653. 2747702E24BC0C0100181362 /* Message */ = {
  1654. isa = PBXGroup;
  1655. children = (
  1656. 2747702F24BC0C0100181362 /* RoleChangedMessage.h */,
  1657. 2747703024BC0C0100181362 /* AssistantTransferMessage.h */,
  1658. 2747703124BC0C0100181362 /* InviteUpgradeMessage.h */,
  1659. 2747703224BC0C0100181362 /* ApplySpeechMessage.m */,
  1660. 2747703324BC0C0100181362 /* ApplySpeechResultMessage.h */,
  1661. 2747703424BC0C0100181362 /* DisplayCommandMessage.m */,
  1662. 2747703524BC0C0100181362 /* MemberChangeMessage.h */,
  1663. 2747703624BC0C0100181362 /* DeviceMessage.h */,
  1664. 2747703724BC0C0100181362 /* ControlDeviceNotifyMessage.m */,
  1665. 2747703824BC0C0100181362 /* TicketExpiredMessage.m */,
  1666. 2747703924BC0C0100181362 /* NodePlayMessage.h */,
  1667. 2747703A24BC0C0100181362 /* TurnPageMessage.h */,
  1668. 2747703B24BC0C0100181362 /* WhiteboardMessage.m */,
  1669. 2747703C24BC0C0100181362 /* AssistantTransferMessage.m */,
  1670. 2747703D24BC0C0100181362 /* RoleChangedMessage.m */,
  1671. 2747703E24BC0C0100181362 /* InviteUpgradeMessage.m */,
  1672. 2747703F24BC0C0100181362 /* ControlDeviceNotifyMessage.h */,
  1673. 2747704024BC0C0100181362 /* DeviceMessage.m */,
  1674. 2747704124BC0C0100181362 /* MemberChangeMessage.m */,
  1675. 2747704224BC0C0100181362 /* DisplayCommandMessage.h */,
  1676. 2747704324BC0C0100181362 /* ApplySpeechResultMessage.m */,
  1677. 2747704424BC0C0100181362 /* ApplySpeechMessage.h */,
  1678. 2747704524BC0C0100181362 /* WhiteboardMessage.h */,
  1679. 2747704624BC0C0100181362 /* TurnPageMessage.m */,
  1680. 2747704724BC0C0100181362 /* NodePlayMessage.m */,
  1681. 2747704824BC0C0100181362 /* TicketExpiredMessage.h */,
  1682. );
  1683. path = Message;
  1684. sourceTree = "<group>";
  1685. };
  1686. 2747704924BC0C0100181362 /* Model */ = {
  1687. isa = PBXGroup;
  1688. children = (
  1689. 2747704E24BC0C0100181362 /* Classroom.h */,
  1690. 2747704C24BC0C0100181362 /* Classroom.m */,
  1691. 2747704F24BC0C0100181362 /* RoomMember.h */,
  1692. 2747704B24BC0C0100181362 /* RoomMember.m */,
  1693. 2747704D24BC0C0100181362 /* Whiteboard.h */,
  1694. 2747704A24BC0C0100181362 /* Whiteboard.m */,
  1695. );
  1696. path = Model;
  1697. sourceTree = "<group>";
  1698. };
  1699. 2747705324BC0C0100181362 /* IM */ = {
  1700. isa = PBXGroup;
  1701. children = (
  1702. 2747705424BC0C0100181362 /* KSIMService.h */,
  1703. 2747705524BC0C0100181362 /* KSIMService.m */,
  1704. );
  1705. path = IM;
  1706. sourceTree = "<group>";
  1707. };
  1708. 2747705624BC0C0100181362 /* Exam */ = {
  1709. isa = PBXGroup;
  1710. children = (
  1711. 2747705724BC0C0100181362 /* Controller */,
  1712. 2747705824BC0C0100181362 /* Model */,
  1713. 2747705924BC0C0100181362 /* View */,
  1714. );
  1715. path = Exam;
  1716. sourceTree = "<group>";
  1717. };
  1718. 2747705724BC0C0100181362 /* Controller */ = {
  1719. isa = PBXGroup;
  1720. children = (
  1721. 27544CF624BC337D00EF58AF /* ExamTicketViewController.h */,
  1722. 27544CF724BC337D00EF58AF /* ExamTicketViewController.m */,
  1723. 27EF3EF924BEFC79002068A2 /* WaitExamViewController.h */,
  1724. 27EF3EFA24BEFC79002068A2 /* WaitExamViewController.m */,
  1725. );
  1726. path = Controller;
  1727. sourceTree = "<group>";
  1728. };
  1729. 2747705824BC0C0100181362 /* Model */ = {
  1730. isa = PBXGroup;
  1731. children = (
  1732. 27EF3F0124BF0F11002068A2 /* TicketListModel.h */,
  1733. 27EF3F0224BF0F12002068A2 /* TicketListModel.m */,
  1734. 27EF3F0524BFF8A1002068A2 /* TicketDetailModel.h */,
  1735. 27EF3F0424BFF8A0002068A2 /* TicketDetailModel.m */,
  1736. );
  1737. path = Model;
  1738. sourceTree = "<group>";
  1739. };
  1740. 2747705924BC0C0100181362 /* View */ = {
  1741. isa = PBXGroup;
  1742. children = (
  1743. 27EF3EF424BEF1DA002068A2 /* TicketBodyView.h */,
  1744. 27EF3EF524BEF1DA002068A2 /* TicketBodyView.m */,
  1745. 27EF3EF724BEF1E8002068A2 /* TicketBodyView.xib */,
  1746. 27EF3EFC24BF015A002068A2 /* WaitExamBodyView.h */,
  1747. 27EF3EFD24BF015A002068A2 /* WaitExamBodyView.m */,
  1748. 27EF3EFF24BF016B002068A2 /* WaitExamBodyView.xib */,
  1749. );
  1750. path = View;
  1751. sourceTree = "<group>";
  1752. };
  1753. 2747705A24BC0C0100181362 /* NotiferMessage */ = {
  1754. isa = PBXGroup;
  1755. children = (
  1756. 2747705B24BC0C0100181362 /* Controller */,
  1757. 2747705E24BC0C0100181362 /* Model */,
  1758. 2747705F24BC0C0100181362 /* View */,
  1759. );
  1760. path = NotiferMessage;
  1761. sourceTree = "<group>";
  1762. };
  1763. 2747705B24BC0C0100181362 /* Controller */ = {
  1764. isa = PBXGroup;
  1765. children = (
  1766. 2747705C24BC0C0100181362 /* NotifyMessageViewController.h */,
  1767. 2747705D24BC0C0100181362 /* NotifyMessageViewController.m */,
  1768. );
  1769. path = Controller;
  1770. sourceTree = "<group>";
  1771. };
  1772. 2747705E24BC0C0100181362 /* Model */ = {
  1773. isa = PBXGroup;
  1774. children = (
  1775. 27EF3EEC24BEE35E002068A2 /* MessageListModel.h */,
  1776. 27EF3EED24BEE35E002068A2 /* MessageListModel.m */,
  1777. );
  1778. path = Model;
  1779. sourceTree = "<group>";
  1780. };
  1781. 2747705F24BC0C0100181362 /* View */ = {
  1782. isa = PBXGroup;
  1783. children = (
  1784. 27EF3EEF24BEE885002068A2 /* NotifyMessageCell.h */,
  1785. 27EF3EF024BEE885002068A2 /* NotifyMessageCell.m */,
  1786. 27EF3EF124BEE885002068A2 /* NotifyMessageCell.xib */,
  1787. );
  1788. path = View;
  1789. sourceTree = "<group>";
  1790. };
  1791. 2747706024BC0C0100181362 /* Login */ = {
  1792. isa = PBXGroup;
  1793. children = (
  1794. 2747706124BC0C0100181362 /* Controller */,
  1795. 2747706C24BC0C0100181362 /* Model */,
  1796. 2747707124BC0C0100181362 /* View */,
  1797. );
  1798. path = Login;
  1799. sourceTree = "<group>";
  1800. };
  1801. 2747706124BC0C0100181362 /* Controller */ = {
  1802. isa = PBXGroup;
  1803. children = (
  1804. 2747706A24BC0C0100181362 /* FirstSettingViewController.h */,
  1805. 2747706424BC0C0100181362 /* FirstSettingViewController.m */,
  1806. 2747706924BC0C0100181362 /* LoginViewController.h */,
  1807. 2747706524BC0C0100181362 /* LoginViewController.m */,
  1808. 2747706224BC0C0100181362 /* ModifyViewController.h */,
  1809. 2747706824BC0C0100181362 /* ModifyViewController.m */,
  1810. 2747706B24BC0C0100181362 /* RegisterViewController.h */,
  1811. 2747706624BC0C0100181362 /* RegisterViewController.m */,
  1812. 2747706324BC0C0100181362 /* VefiLoginViewController.h */,
  1813. 2747706724BC0C0100181362 /* VefiLoginViewController.m */,
  1814. );
  1815. path = Controller;
  1816. sourceTree = "<group>";
  1817. };
  1818. 2747706C24BC0C0100181362 /* Model */ = {
  1819. isa = PBXGroup;
  1820. children = (
  1821. 2747706E24BC0C0100181362 /* UserInfoManager.h */,
  1822. 2747706F24BC0C0100181362 /* UserInfoManager.m */,
  1823. 27A008EF24BDB1E20002452B /* SysUser.h */,
  1824. 27A008F024BDB1E30002452B /* SysUser.m */,
  1825. 27A008F124BDB1E30002452B /* UserInfo.h */,
  1826. 27A008F224BDB1E50002452B /* UserInfo.m */,
  1827. );
  1828. path = Model;
  1829. sourceTree = "<group>";
  1830. };
  1831. 2747707124BC0C0100181362 /* View */ = {
  1832. isa = PBXGroup;
  1833. children = (
  1834. 2747707424BC0C0100181362 /* LoginBodyView.h */,
  1835. 2747707224BC0C0100181362 /* LoginBodyView.m */,
  1836. 2747707324BC0C0100181362 /* LoginBodyView.xib */,
  1837. 2794D1AE24BC604800BAF6F3 /* VefiBodyView.h */,
  1838. 2794D1AF24BC604800BAF6F3 /* VefiBodyView.m */,
  1839. 2794D1B124BC605600BAF6F3 /* VefiBodyView.xib */,
  1840. 2794D1B324BC662600BAF6F3 /* VeriCheckView.h */,
  1841. 2794D1B424BC662600BAF6F3 /* VeriCheckView.m */,
  1842. 2794D1B624BC699700BAF6F3 /* RegisterBodyView.h */,
  1843. 2794D1B724BC699700BAF6F3 /* RegisterBodyView.m */,
  1844. 2794D1B924BC69A400BAF6F3 /* RegisterBodyView.xib */,
  1845. 2794D1BB24BD4CF800BAF6F3 /* FSBodyView.h */,
  1846. 2794D1BC24BD4CF800BAF6F3 /* FSBodyView.m */,
  1847. 2794D1BE24BD4D0C00BAF6F3 /* FSBodyView.xib */,
  1848. 2794D1C524BD62FB00BAF6F3 /* ModifyBodyView.h */,
  1849. 2794D1C624BD62FB00BAF6F3 /* ModifyBodyView.m */,
  1850. 2794D1C824BD631A00BAF6F3 /* ModifyBodyView.xib */,
  1851. );
  1852. path = View;
  1853. sourceTree = "<group>";
  1854. };
  1855. 2747707524BC0C0200181362 /* Manager */ = {
  1856. isa = PBXGroup;
  1857. children = (
  1858. 2747707724BC0C0200181362 /* KSRCIMDataSource.h */,
  1859. 2747707A24BC0C0200181362 /* KSRCIMDataSource.m */,
  1860. 2747707924BC0C0200181362 /* KSUpdateManager.h */,
  1861. 2747707D24BC0C0200181362 /* KSUpdateManager.m */,
  1862. 2747707B24BC0C0200181362 /* OnlineRoomManager.h */,
  1863. 2747707624BC0C0200181362 /* OnlineRoomManager.m */,
  1864. 2747707824BC0C0200181362 /* RCConnectionManager.h */,
  1865. 2747707C24BC0C0200181362 /* RCConnectionManager.m */,
  1866. );
  1867. path = Manager;
  1868. sourceTree = "<group>";
  1869. };
  1870. 2747707E24BC0C0200181362 /* Define */ = {
  1871. isa = PBXGroup;
  1872. children = (
  1873. 2747707F24BC0C0200181362 /* UserKeyHeader.h */,
  1874. 2747708024BC0C0200181362 /* Common.h */,
  1875. 2747708124BC0C0200181362 /* PrefixHeader.pch */,
  1876. );
  1877. path = Define;
  1878. sourceTree = "<group>";
  1879. };
  1880. 2747708224BC0C0300181362 /* Tools */ = {
  1881. isa = PBXGroup;
  1882. children = (
  1883. 2747708324BC0C0300181362 /* NetworkManager */,
  1884. 2747709124BC0C0300181362 /* SafeControl */,
  1885. 274770A124BC0C0300181362 /* Extension */,
  1886. 274770D824BC0C0400181362 /* Category */,
  1887. 274770F524BC0C0400181362 /* Custom */,
  1888. );
  1889. path = Tools;
  1890. sourceTree = "<group>";
  1891. };
  1892. 2747708324BC0C0300181362 /* NetworkManager */ = {
  1893. isa = PBXGroup;
  1894. children = (
  1895. 2747708624BC0C0300181362 /* Cache */,
  1896. 2747708F24BC0C0300181362 /* KSNetworking.h */,
  1897. 2747708524BC0C0300181362 /* KSNetworking.m */,
  1898. 2747709024BC0C0300181362 /* KSNetworking+RequestOperation.h */,
  1899. 2747708424BC0C0300181362 /* KSNetworking+RequestOperation.m */,
  1900. );
  1901. path = NetworkManager;
  1902. sourceTree = "<group>";
  1903. };
  1904. 2747708624BC0C0300181362 /* Cache */ = {
  1905. isa = PBXGroup;
  1906. children = (
  1907. 2747708924BC0C0300181362 /* KSCacheManager.h */,
  1908. 2747708E24BC0C0300181362 /* KSCacheManager.m */,
  1909. 2747708A24BC0C0300181362 /* KSDiskCache.h */,
  1910. 2747708D24BC0C0300181362 /* KSDiskCache.m */,
  1911. 2747708724BC0C0300181362 /* KSLRUManager.h */,
  1912. 2747708B24BC0C0300181362 /* KSLRUManager.m */,
  1913. 2747708824BC0C0300181362 /* KSMemoryCache.h */,
  1914. 2747708C24BC0C0300181362 /* KSMemoryCache.m */,
  1915. );
  1916. path = Cache;
  1917. sourceTree = "<group>";
  1918. };
  1919. 2747709124BC0C0300181362 /* SafeControl */ = {
  1920. isa = PBXGroup;
  1921. children = (
  1922. 2747709224BC0C0300181362 /* KSSafeObject.h */,
  1923. 2747709324BC0C0300181362 /* NSObject+KSSwizzling.h */,
  1924. 2747709424BC0C0300181362 /* NSDictionary+KSSafe.m */,
  1925. 2747709524BC0C0300181362 /* NSObject+KSImpChangeTool.h */,
  1926. 2747709624BC0C0300181362 /* NSMutableDictionary+KSSafe.m */,
  1927. 2747709724BC0C0300181362 /* NSMutableString+KSSafe.h */,
  1928. 2747709824BC0C0300181362 /* NSArray+KSSafe.m */,
  1929. 2747709924BC0C0300181362 /* NSMutableArray+KSSafe.m */,
  1930. 2747709A24BC0C0300181362 /* NSDictionary+KSSafe.h */,
  1931. 2747709B24BC0C0300181362 /* NSObject+KSSwizzling.m */,
  1932. 2747709C24BC0C0300181362 /* NSObject+KSImpChangeTool.m */,
  1933. 2747709D24BC0C0300181362 /* NSMutableArray+KSSafe.h */,
  1934. 2747709E24BC0C0300181362 /* NSArray+KSSafe.h */,
  1935. 2747709F24BC0C0300181362 /* NSMutableString+KSSafe.m */,
  1936. 274770A024BC0C0300181362 /* NSMutableDictionary+KSSafe.h */,
  1937. );
  1938. path = SafeControl;
  1939. sourceTree = "<group>";
  1940. };
  1941. 274770A124BC0C0300181362 /* Extension */ = {
  1942. isa = PBXGroup;
  1943. children = (
  1944. 274770A224BC0C0300181362 /* NSObject+AssociatedObject.m */,
  1945. 274770A324BC0C0300181362 /* UIView+Hints.h */,
  1946. 274770A424BC0C0300181362 /* UIControl+ButtonAction.m */,
  1947. 274770A524BC0C0300181362 /* UIDevice+zhDeviceType.m */,
  1948. 274770A624BC0C0300181362 /* NSString+zh_SafeAccess.m */,
  1949. 274770A724BC0C0300181362 /* NSDictionary+Extension.h */,
  1950. 274770A824BC0C0300181362 /* UIViewController+zhStatusBarStyle.m */,
  1951. 274770A924BC0C0300181362 /* UITextView+ZWPlaceHolder.m */,
  1952. 274770AA24BC0C0300181362 /* NSString+CZHSizeExtension.h */,
  1953. 274770AB24BC0C0300181362 /* CALayer+Color.m */,
  1954. 274770AC24BC0C0300181362 /* NSDate+Transform.h */,
  1955. 274770AD24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.m */,
  1956. 274770AE24BC0C0300181362 /* NSString+Extension.h */,
  1957. 274770AF24BC0C0300181362 /* UITextView+ZWLimitCounter.m */,
  1958. 274770B024BC0C0300181362 /* UILabel+Extension.m */,
  1959. 274770B124BC0C0300181362 /* NSDate+Extension.h */,
  1960. 274770B224BC0C0300181362 /* NSArray+ks_SafeAccess.h */,
  1961. 274770B324BC0C0300181362 /* UIImage+Color.h */,
  1962. 274770B424BC0C0300181362 /* NSObject+ReadDocument.h */,
  1963. 274770B524BC0C0300181362 /* UIAlertController+Extend.m */,
  1964. 274770B624BC0C0300181362 /* UIImageView+CornerRadius.h */,
  1965. 274770B724BC0C0300181362 /* CALayer+KSLayout.h */,
  1966. 274770B824BC0C0300181362 /* UIScreen+Extend.h */,
  1967. 274770B924BC0C0300181362 /* UIColor+Extend.m */,
  1968. 274770BA24BC0C0300181362 /* UIView+Dealloc.m */,
  1969. 274770BB24BC0C0300181362 /* NSObject+Parse.m */,
  1970. 274770BC24BC0C0300181362 /* UIView+AddConstraints.m */,
  1971. 274770BD24BC0C0300181362 /* NSString+CZHSizeExtension.m */,
  1972. 274770BE24BC0C0300181362 /* UITextView+ZWPlaceHolder.h */,
  1973. 274770BF24BC0C0300181362 /* NSDictionary+Extension.m */,
  1974. 274770C024BC0C0300181362 /* UIViewController+zhStatusBarStyle.h */,
  1975. 274770C124BC0C0300181362 /* NSString+zh_SafeAccess.h */,
  1976. 274770C224BC0C0300181362 /* UIDevice+zhDeviceType.h */,
  1977. 274770C324BC0C0300181362 /* UIControl+ButtonAction.h */,
  1978. 274770C424BC0C0300181362 /* UIView+Hints.m */,
  1979. 274770C524BC0C0300181362 /* NSObject+AssociatedObject.h */,
  1980. 274770C624BC0C0300181362 /* NSArray+ks_SafeAccess.m */,
  1981. 274770C724BC0C0300181362 /* UILabel+Extension.h */,
  1982. 274770C824BC0C0300181362 /* NSDate+Extension.m */,
  1983. 274770C924BC0C0300181362 /* UITextView+ZWLimitCounter.h */,
  1984. 274770CA24BC0C0300181362 /* NSString+Extension.m */,
  1985. 274770CB24BC0C0300181362 /* NSDate+Transform.m */,
  1986. 274770CC24BC0C0300181362 /* NSMutableAttributedString+CZHExtention.h */,
  1987. 274770CD24BC0C0300181362 /* CALayer+Color.h */,
  1988. 274770CE24BC0C0300181362 /* UIScreen+Extend.m */,
  1989. 274770CF24BC0C0300181362 /* CALayer+KSLayout.m */,
  1990. 274770D024BC0C0300181362 /* UIAlertController+Extend.h */,
  1991. 274770D124BC0C0300181362 /* UIImageView+CornerRadius.m */,
  1992. 274770D224BC0C0300181362 /* NSObject+ReadDocument.m */,
  1993. 274770D324BC0C0300181362 /* UIImage+Color.m */,
  1994. 274770D424BC0C0300181362 /* NSObject+Parse.h */,
  1995. 274770D524BC0C0300181362 /* UIView+AddConstraints.h */,
  1996. 274770D624BC0C0300181362 /* UIView+Dealloc.h */,
  1997. 274770D724BC0C0300181362 /* UIColor+Extend.h */,
  1998. );
  1999. path = Extension;
  2000. sourceTree = "<group>";
  2001. };
  2002. 274770D824BC0C0400181362 /* Category */ = {
  2003. isa = PBXGroup;
  2004. children = (
  2005. 274770D924BC0C0400181362 /* UIImage+Addtions.m */,
  2006. 274770DA24BC0C0400181362 /* UIView+XIBView.m */,
  2007. 274770DB24BC0C0400181362 /* UrlDecode.m */,
  2008. 274770DC24BC0C0400181362 /* UIButton+Property.m */,
  2009. 274770DD24BC0C0400181362 /* UIDevice+TFDevice.m */,
  2010. 274770DE24BC0C0400181362 /* UIColor+Hex.m */,
  2011. 274770DF24BC0C0400181362 /* MBProgressHUD+KSShow.h */,
  2012. 274770E024BC0C0400181362 /* UIImage+Property.m */,
  2013. 274770E124BC0C0400181362 /* UIImage+ResizeImage.m */,
  2014. 274770E224BC0C0400181362 /* UIButton+EnlargeEdge.h */,
  2015. 274770E324BC0C0400181362 /* UIButton+HasChooseImage.m */,
  2016. 274770E424BC0C0400181362 /* NSObject+AutoProperty.m */,
  2017. 274770E524BC0C0400181362 /* UIImage+UIImageScale.m */,
  2018. 274770E624BC0C0400181362 /* UIImage+Resize.h */,
  2019. 274770E724BC0C0400181362 /* UIView+XIBView.h */,
  2020. 274770E824BC0C0400181362 /* UIImage+Addtions.h */,
  2021. 274770E924BC0C0400181362 /* UIColor+Hex.h */,
  2022. 274770EA24BC0C0400181362 /* UIDevice+TFDevice.h */,
  2023. 274770EB24BC0C0400181362 /* UIButton+Property.h */,
  2024. 274770EC24BC0C0400181362 /* UrlDecode.h */,
  2025. 274770ED24BC0C0400181362 /* UIImage+UIImageScale.h */,
  2026. 274770EE24BC0C0400181362 /* NSObject+AutoProperty.h */,
  2027. 274770EF24BC0C0400181362 /* UIButton+EnlargeEdge.m */,
  2028. 274770F024BC0C0400181362 /* UIButton+HasChooseImage.h */,
  2029. 274770F124BC0C0400181362 /* UIImage+ResizeImage.h */,
  2030. 274770F224BC0C0400181362 /* UIImage+Property.h */,
  2031. 274770F324BC0C0400181362 /* MBProgressHUD+KSShow.m */,
  2032. 274770F424BC0C0400181362 /* UIImage+Resize.m */,
  2033. );
  2034. path = Category;
  2035. sourceTree = "<group>";
  2036. };
  2037. 274770F524BC0C0400181362 /* Custom */ = {
  2038. isa = PBXGroup;
  2039. children = (
  2040. 2747716E24BC0C0400181362 /* GRCreateManager.h */,
  2041. 274770F624BC0C0400181362 /* GRCreateManager.m */,
  2042. 274770F724BC0C0400181362 /* GRScanManager.h */,
  2043. 2747716D24BC0C0400181362 /* GRScanManager.m */,
  2044. 2747710C24BC0C0400181362 /* JXView */,
  2045. 2747717324BC0C0400181362 /* KSChoosePicker.h */,
  2046. 274770F824BC0C0400181362 /* KSChoosePicker.m */,
  2047. 2747717124BC0C0400181362 /* KSFullDatePicker.h */,
  2048. 2747710724BC0C0400181362 /* KSFullDatePicker.m */,
  2049. 2747710624BC0C0400181362 /* KSImageButton.h */,
  2050. 2747717224BC0C0400181362 /* KSImageButton.m */,
  2051. 2747716024BC0C0400181362 /* KSInputView */,
  2052. 2747716C24BC0C0400181362 /* KSInputView.h */,
  2053. 2747717724BC0C0400181362 /* KSInputView.m */,
  2054. 2747716F24BC0C0400181362 /* KSMediaManager.h */,
  2055. 2747710924BC0C0400181362 /* KSMediaManager.m */,
  2056. 2747710A24BC0C0400181362 /* KSMessageInputView.h */,
  2057. 2747717624BC0C0400181362 /* KSMessageInputView.m */,
  2058. 2747717A24BC0C0400181362 /* LLPhotoBrowser */,
  2059. 2747717424BC0C0400181362 /* MBProgressHUD+NJ.h */,
  2060. 2747715F24BC0C0400181362 /* MBProgressHUD+NJ.m */,
  2061. 2747716A24BC0C0400181362 /* NSDate+KSBaseDatePicker.h */,
  2062. 2747717924BC0C0400181362 /* NSDate+KSBaseDatePicker.m */,
  2063. 2747710B24BC0C0400181362 /* NSString+MD5.h */,
  2064. 2747717524BC0C0400181362 /* NSString+MD5.m */,
  2065. 2747710824BC0C0400181362 /* NSString+phone.h */,
  2066. 2747717024BC0C0400181362 /* NSString+phone.m */,
  2067. 274770F924BC0C0400181362 /* PressRecord */,
  2068. 2747716B24BC0C0400181362 /* StateView.h */,
  2069. 2747717824BC0C0400181362 /* StateView.m */,
  2070. );
  2071. path = Custom;
  2072. sourceTree = "<group>";
  2073. };
  2074. 274770F924BC0C0400181362 /* PressRecord */ = {
  2075. isa = PBXGroup;
  2076. children = (
  2077. 274770FA24BC0C0400181362 /* KSAudioRecordManager.h */,
  2078. 274770FB24BC0C0400181362 /* KSRecordStatusView.h */,
  2079. 274770FC24BC0C0400181362 /* KSHoldButton.m */,
  2080. 274770FD24BC0C0400181362 /* KSRecordPowerAnimationView.h */,
  2081. 274770FE24BC0C0400181362 /* KSAudioRecordFileManager.m */,
  2082. 274770FF24BC0C0400181362 /* UIView+KSAdditions.m */,
  2083. 2747710024BC0C0400181362 /* KSRecordStatusView.m */,
  2084. 2747710124BC0C0400181362 /* KSAudioRecordManager.m */,
  2085. 2747710224BC0C0400181362 /* KSHoldButton.h */,
  2086. 2747710324BC0C0400181362 /* UIView+KSAdditions.h */,
  2087. 2747710424BC0C0400181362 /* KSRecordPowerAnimationView.m */,
  2088. 2747710524BC0C0400181362 /* KSAudioRecordFileManager.h */,
  2089. );
  2090. path = PressRecord;
  2091. sourceTree = "<group>";
  2092. };
  2093. 2747710C24BC0C0400181362 /* JXView */ = {
  2094. isa = PBXGroup;
  2095. children = (
  2096. 2747710D24BC0C0400181362 /* JXPagerView */,
  2097. 2747711624BC0C0400181362 /* JXCategoryView */,
  2098. );
  2099. path = JXView;
  2100. sourceTree = "<group>";
  2101. };
  2102. 2747710D24BC0C0400181362 /* JXPagerView */ = {
  2103. isa = PBXGroup;
  2104. children = (
  2105. 2747710E24BC0C0400181362 /* JXPagerListContainerView.m */,
  2106. 2747710F24BC0C0400181362 /* JXPagerMainTableView.m */,
  2107. 2747711024BC0C0400181362 /* JXPagerView.m */,
  2108. 2747711124BC0C0400181362 /* JXPagerListRefreshView.h */,
  2109. 2747711224BC0C0400181362 /* JXPagerView.h */,
  2110. 2747711324BC0C0400181362 /* JXPagerListContainerView.h */,
  2111. 2747711424BC0C0400181362 /* JXPagerMainTableView.h */,
  2112. 2747711524BC0C0400181362 /* JXPagerListRefreshView.m */,
  2113. );
  2114. path = JXPagerView;
  2115. sourceTree = "<group>";
  2116. };
  2117. 2747711624BC0C0400181362 /* JXCategoryView */ = {
  2118. isa = PBXGroup;
  2119. children = (
  2120. 2747711724BC0C0400181362 /* Indicator */,
  2121. 2747712B24BC0C0400181362 /* Dot */,
  2122. 2747713224BC0C0400181362 /* TitleImage */,
  2123. 2747713924BC0C0400181362 /* Title */,
  2124. 2747714024BC0C0400181362 /* JXCategoryView.h */,
  2125. 2747714124BC0C0400181362 /* Image */,
  2126. 2747714824BC0C0400181362 /* Number */,
  2127. 2747714F24BC0C0400181362 /* Common */,
  2128. 2747715824BC0C0400181362 /* Base */,
  2129. );
  2130. path = JXCategoryView;
  2131. sourceTree = "<group>";
  2132. };
  2133. 2747711724BC0C0400181362 /* Indicator */ = {
  2134. isa = PBXGroup;
  2135. children = (
  2136. 2747711824BC0C0400181362 /* JXCategoryIndicatorCell.h */,
  2137. 2747711924BC0C0400181362 /* JXCategoryIndicatorCellModel.h */,
  2138. 2747711A24BC0C0400181362 /* JXCategoryIndicatorView.h */,
  2139. 2747711B24BC0C0400181362 /* IndicatorViews */,
  2140. 2747712824BC0C0400181362 /* JXCategoryIndicatorCellModel.m */,
  2141. 2747712924BC0C0400181362 /* JXCategoryIndicatorCell.m */,
  2142. 2747712A24BC0C0400181362 /* JXCategoryIndicatorView.m */,
  2143. );
  2144. path = Indicator;
  2145. sourceTree = "<group>";
  2146. };
  2147. 2747711B24BC0C0400181362 /* IndicatorViews */ = {
  2148. isa = PBXGroup;
  2149. children = (
  2150. 2747711C24BC0C0400181362 /* JXCategoryIndicatorLineView.m */,
  2151. 2747711D24BC0C0400181362 /* JXCategoryIndicatorTriangleView.m */,
  2152. 2747711E24BC0C0400181362 /* JXCategoryIndicatorBackgroundView.h */,
  2153. 2747711F24BC0C0400181362 /* JXCategoryIndicatorImageView.m */,
  2154. 2747712024BC0C0400181362 /* JXCategoryIndicatorBallView.m */,
  2155. 2747712124BC0C0400181362 /* JXCategoryIndicatorComponentView.m */,
  2156. 2747712224BC0C0400181362 /* JXCategoryIndicatorLineView.h */,
  2157. 2747712324BC0C0400181362 /* JXCategoryIndicatorTriangleView.h */,
  2158. 2747712424BC0C0400181362 /* JXCategoryIndicatorBallView.h */,
  2159. 2747712524BC0C0400181362 /* JXCategoryIndicatorImageView.h */,
  2160. 2747712624BC0C0400181362 /* JXCategoryIndicatorBackgroundView.m */,
  2161. 2747712724BC0C0400181362 /* JXCategoryIndicatorComponentView.h */,
  2162. );
  2163. path = IndicatorViews;
  2164. sourceTree = "<group>";
  2165. };
  2166. 2747712B24BC0C0400181362 /* Dot */ = {
  2167. isa = PBXGroup;
  2168. children = (
  2169. 2747712C24BC0C0400181362 /* JXCategoryDotCell.m */,
  2170. 2747712D24BC0C0400181362 /* JXCategoryDotCellModel.h */,
  2171. 2747712E24BC0C0400181362 /* JXCategoryDotView.m */,
  2172. 2747712F24BC0C0400181362 /* JXCategoryDotCell.h */,
  2173. 2747713024BC0C0400181362 /* JXCategoryDotView.h */,
  2174. 2747713124BC0C0400181362 /* JXCategoryDotCellModel.m */,
  2175. );
  2176. path = Dot;
  2177. sourceTree = "<group>";
  2178. };
  2179. 2747713224BC0C0400181362 /* TitleImage */ = {
  2180. isa = PBXGroup;
  2181. children = (
  2182. 2747713324BC0C0400181362 /* JXCategoryTitleImageView.m */,
  2183. 2747713424BC0C0400181362 /* JXCategoryTitleImageCell.m */,
  2184. 2747713524BC0C0400181362 /* JXCategoryTitleImageCellModel.h */,
  2185. 2747713624BC0C0400181362 /* JXCategoryTitleImageView.h */,
  2186. 2747713724BC0C0400181362 /* JXCategoryTitleImageCellModel.m */,
  2187. 2747713824BC0C0400181362 /* JXCategoryTitleImageCell.h */,
  2188. );
  2189. path = TitleImage;
  2190. sourceTree = "<group>";
  2191. };
  2192. 2747713924BC0C0400181362 /* Title */ = {
  2193. isa = PBXGroup;
  2194. children = (
  2195. 2747713A24BC0C0400181362 /* JXCategoryTitleCellModel.h */,
  2196. 2747713B24BC0C0400181362 /* JXCategoryTitleCell.h */,
  2197. 2747713C24BC0C0400181362 /* JXCategoryTitleView.h */,
  2198. 2747713D24BC0C0400181362 /* JXCategoryTitleCellModel.m */,
  2199. 2747713E24BC0C0400181362 /* JXCategoryTitleCell.m */,
  2200. 2747713F24BC0C0400181362 /* JXCategoryTitleView.m */,
  2201. );
  2202. path = Title;
  2203. sourceTree = "<group>";
  2204. };
  2205. 2747714124BC0C0400181362 /* Image */ = {
  2206. isa = PBXGroup;
  2207. children = (
  2208. 2747714224BC0C0400181362 /* JXCategoryImageView.m */,
  2209. 2747714324BC0C0400181362 /* JXCategoryImageCell.m */,
  2210. 2747714424BC0C0400181362 /* JXCategoryImageCellModel.h */,
  2211. 2747714524BC0C0400181362 /* JXCategoryImageView.h */,
  2212. 2747714624BC0C0400181362 /* JXCategoryImageCell.h */,
  2213. 2747714724BC0C0400181362 /* JXCategoryImageCellModel.m */,
  2214. );
  2215. path = Image;
  2216. sourceTree = "<group>";
  2217. };
  2218. 2747714824BC0C0400181362 /* Number */ = {
  2219. isa = PBXGroup;
  2220. children = (
  2221. 2747714924BC0C0400181362 /* JXCategoryNumberCellModel.h */,
  2222. 2747714A24BC0C0400181362 /* JXCategoryNumberView.m */,
  2223. 2747714B24BC0C0400181362 /* JXCategoryNumberCell.m */,
  2224. 2747714C24BC0C0400181362 /* JXCategoryNumberCellModel.m */,
  2225. 2747714D24BC0C0400181362 /* JXCategoryNumberView.h */,
  2226. 2747714E24BC0C0400181362 /* JXCategoryNumberCell.h */,
  2227. );
  2228. path = Number;
  2229. sourceTree = "<group>";
  2230. };
  2231. 2747714F24BC0C0400181362 /* Common */ = {
  2232. isa = PBXGroup;
  2233. children = (
  2234. 2747715024BC0C0400181362 /* JXCategoryCollectionView.h */,
  2235. 2747715124BC0C0400181362 /* JXCategoryIndicatorProtocol.h */,
  2236. 2747715224BC0C0400181362 /* JXCategoryViewDefines.h */,
  2237. 2747715324BC0C0400181362 /* JXCategoryFactory.m */,
  2238. 2747715424BC0C0400181362 /* UIColor+JXAdd.h */,
  2239. 2747715524BC0C0400181362 /* JXCategoryCollectionView.m */,
  2240. 2747715624BC0C0400181362 /* UIColor+JXAdd.m */,
  2241. 2747715724BC0C0400181362 /* JXCategoryFactory.h */,
  2242. );
  2243. path = Common;
  2244. sourceTree = "<group>";
  2245. };
  2246. 2747715824BC0C0400181362 /* Base */ = {
  2247. isa = PBXGroup;
  2248. children = (
  2249. 2747715924BC0C0400181362 /* JXCategoryBaseView.h */,
  2250. 2747715A24BC0C0400181362 /* JXCategoryBaseCell.h */,
  2251. 2747715B24BC0C0400181362 /* JXCategoryBaseCellModel.h */,
  2252. 2747715C24BC0C0400181362 /* JXCategoryBaseView.m */,
  2253. 2747715D24BC0C0400181362 /* JXCategoryBaseCell.m */,
  2254. 2747715E24BC0C0400181362 /* JXCategoryBaseCellModel.m */,
  2255. );
  2256. path = Base;
  2257. sourceTree = "<group>";
  2258. };
  2259. 2747716024BC0C0400181362 /* KSInputView */ = {
  2260. isa = PBXGroup;
  2261. children = (
  2262. 2747716124BC0C0400181362 /* UITextField_Toolbar.m */,
  2263. 2747716224BC0C0400181362 /* SkipTextField.m */,
  2264. 2747716324BC0C0400181362 /* SkipTextProtocol.h */,
  2265. 2747716424BC0C0400181362 /* SkipTextView.h */,
  2266. 2747716524BC0C0400181362 /* UITextView_Toolbar.m */,
  2267. 2747716624BC0C0400181362 /* UITextField_Toolbar.h */,
  2268. 2747716724BC0C0400181362 /* SkipTextField.h */,
  2269. 2747716824BC0C0400181362 /* SkipTextView.m */,
  2270. 2747716924BC0C0400181362 /* UITextView_Toolbar.h */,
  2271. );
  2272. path = KSInputView;
  2273. sourceTree = "<group>";
  2274. };
  2275. 2747717A24BC0C0400181362 /* LLPhotoBrowser */ = {
  2276. isa = PBXGroup;
  2277. children = (
  2278. 2747717B24BC0C0400181362 /* LLPhotoBrowser.m */,
  2279. 2747717C24BC0C0400181362 /* LLCollectionViewCell.h */,
  2280. 2747717D24BC0C0400181362 /* LLClasses */,
  2281. 2747718224BC0C0400181362 /* LLPhoto.m */,
  2282. 2747718324BC0C0400181362 /* LLCollectionViewCell.m */,
  2283. 2747718424BC0C0400181362 /* LLPhotoBrowser.h */,
  2284. 2747718524BC0C0400181362 /* LLPhoto.h */,
  2285. );
  2286. path = LLPhotoBrowser;
  2287. sourceTree = "<group>";
  2288. };
  2289. 2747717D24BC0C0400181362 /* LLClasses */ = {
  2290. isa = PBXGroup;
  2291. children = (
  2292. 2747717E24BC0C0400181362 /* LLImageCache.m */,
  2293. 2747717F24BC0C0400181362 /* LLFileManager.m */,
  2294. 2747718024BC0C0400181362 /* LLImageCache.h */,
  2295. 2747718124BC0C0400181362 /* LLFileManager.h */,
  2296. );
  2297. path = LLClasses;
  2298. sourceTree = "<group>";
  2299. };
  2300. 2747726624BC0C7C00181362 /* RongCloud */ = {
  2301. isa = PBXGroup;
  2302. children = (
  2303. 2747726924BC0C7C00181362 /* RongRTCLib.framework */,
  2304. 2747726724BC0C7C00181362 /* Sight */,
  2305. 2747726A24BC0C7C00181362 /* IMLib */,
  2306. 2747727024BC0C7C00181362 /* IMKit */,
  2307. );
  2308. path = RongCloud;
  2309. sourceTree = "<group>";
  2310. };
  2311. 2747726724BC0C7C00181362 /* Sight */ = {
  2312. isa = PBXGroup;
  2313. children = (
  2314. 2747726824BC0C7C00181362 /* RongSight.framework */,
  2315. );
  2316. path = Sight;
  2317. sourceTree = "<group>";
  2318. };
  2319. 2747726A24BC0C7C00181362 /* IMLib */ = {
  2320. isa = PBXGroup;
  2321. children = (
  2322. 2747726B24BC0C7C00181362 /* RongIMLib.framework */,
  2323. 2747726C24BC0C7C00181362 /* libopencore-amrwb.a */,
  2324. 2747726D24BC0C7C00181362 /* libopencore-amrnb.a */,
  2325. 2747726E24BC0C7C00181362 /* libvo-amrwbenc.a */,
  2326. 2747726F24BC0C7C00181362 /* RCConfig.plist */,
  2327. );
  2328. path = IMLib;
  2329. sourceTree = "<group>";
  2330. };
  2331. 2747727024BC0C7C00181362 /* IMKit */ = {
  2332. isa = PBXGroup;
  2333. children = (
  2334. 2747727124BC0C7C00181362 /* RCColor.plist */,
  2335. 2747727224BC0C7C00181362 /* RongCloudKit.strings */,
  2336. 2747727524BC0C7C00181362 /* RongIMKit.framework */,
  2337. 2747727624BC0C7C00181362 /* Emoji.plist */,
  2338. 2747727724BC0C7C00181362 /* RongCloud.bundle */,
  2339. );
  2340. path = IMKit;
  2341. sourceTree = "<group>";
  2342. };
  2343. 2748F8EB24C05F30003F8E11 /* ExamLibrary */ = {
  2344. isa = PBXGroup;
  2345. children = (
  2346. 2748F8EC24C05F30003F8E11 /* Controller */,
  2347. 2748F8ED24C05F30003F8E11 /* Model */,
  2348. 2748F8EE24C05F30003F8E11 /* View */,
  2349. );
  2350. path = ExamLibrary;
  2351. sourceTree = "<group>";
  2352. };
  2353. 2748F8EC24C05F30003F8E11 /* Controller */ = {
  2354. isa = PBXGroup;
  2355. children = (
  2356. 2729F7D824C81E9B00E1F3C4 /* ExamViewController.h */,
  2357. 2729F7D924C81E9B00E1F3C4 /* ExamViewController.m */,
  2358. 2748F8EF24C05F4C003F8E11 /* ExamLibraryController.h */,
  2359. 2748F8F024C05F4C003F8E11 /* ExamLibraryController.m */,
  2360. 2729F7C524C6C87400E1F3C4 /* OpenFileViewController.h */,
  2361. 2729F7C624C6C87400E1F3C4 /* OpenFileViewController.m */,
  2362. );
  2363. path = Controller;
  2364. sourceTree = "<group>";
  2365. };
  2366. 2748F8ED24C05F30003F8E11 /* Model */ = {
  2367. isa = PBXGroup;
  2368. children = (
  2369. 2729F7FD24C851FA00E1F3C4 /* BaseExamModel.h */,
  2370. 2729F7FC24C851F900E1F3C4 /* BaseExamModel.m */,
  2371. 2729F7C824C6EB4900E1F3C4 /* SubjectNameModel.h */,
  2372. 2729F7C924C6EB4A00E1F3C4 /* SubjectNameModel.m */,
  2373. 2729F7CB24C6F3F300E1F3C4 /* SongListModel.h */,
  2374. 2729F7CC24C6F3F300E1F3C4 /* SongListModel.m */,
  2375. );
  2376. path = Model;
  2377. sourceTree = "<group>";
  2378. };
  2379. 2748F8EE24C05F30003F8E11 /* View */ = {
  2380. isa = PBXGroup;
  2381. children = (
  2382. 2729F7E024C8244100E1F3C4 /* ExamListCell.h */,
  2383. 2729F7E124C8244100E1F3C4 /* ExamListCell.m */,
  2384. 2729F7E224C8244100E1F3C4 /* ExamListCell.xib */,
  2385. 2748F8F224C1389F003F8E11 /* ExamLibraryListCell.h */,
  2386. 2748F8F324C1389F003F8E11 /* ExamLibraryListCell.m */,
  2387. 2748F8F424C1389F003F8E11 /* ExamLibraryListCell.xib */,
  2388. 2729F7CF24C8174A00E1F3C4 /* FileNameView.h */,
  2389. 2729F7D024C8174A00E1F3C4 /* FileNameView.m */,
  2390. 2729F7D224C8175E00E1F3C4 /* FileNameView.xib */,
  2391. 2729F7DB24C81FA200E1F3C4 /* LibraryTipsView.h */,
  2392. 2729F7DC24C81FA200E1F3C4 /* LibraryTipsView.m */,
  2393. 2729F7DE24C81FB000E1F3C4 /* LibraryTipsView.xib */,
  2394. );
  2395. path = View;
  2396. sourceTree = "<group>";
  2397. };
  2398. 27A0089924BD96C50002452B /* Networking */ = {
  2399. isa = PBXGroup;
  2400. children = (
  2401. 27A0089A24BD96C50002452B /* Controller */,
  2402. 27A0089D24BD96C50002452B /* Model */,
  2403. 27A0089E24BD96C50002452B /* View */,
  2404. );
  2405. path = Networking;
  2406. sourceTree = "<group>";
  2407. };
  2408. 27A0089A24BD96C50002452B /* Controller */ = {
  2409. isa = PBXGroup;
  2410. children = (
  2411. 27A0089B24BD96C50002452B /* NetworkingCheckController.h */,
  2412. 27A0089C24BD96C50002452B /* NetworkingCheckController.m */,
  2413. );
  2414. path = Controller;
  2415. sourceTree = "<group>";
  2416. };
  2417. 27A0089D24BD96C50002452B /* Model */ = {
  2418. isa = PBXGroup;
  2419. children = (
  2420. );
  2421. path = Model;
  2422. sourceTree = "<group>";
  2423. };
  2424. 27A0089E24BD96C50002452B /* View */ = {
  2425. isa = PBXGroup;
  2426. children = (
  2427. 27A0089F24BD96C50002452B /* KSNetworkAlert.h */,
  2428. 27A008A024BD96C50002452B /* NetworkBodyView.m */,
  2429. 27A008A124BD96C50002452B /* NetworkBodyView.xib */,
  2430. 27A008A224BD96C50002452B /* KSNetworkAlert.m */,
  2431. 27A008A324BD96C50002452B /* NetworkBodyView.h */,
  2432. 27A008A424BD96C50002452B /* KSNetworkAlert.xib */,
  2433. );
  2434. path = View;
  2435. sourceTree = "<group>";
  2436. };
  2437. 27A008AA24BD96E50002452B /* DeviceCheck */ = {
  2438. isa = PBXGroup;
  2439. children = (
  2440. 27A008B624BD98170002452B /* AudioPlayManager.h */,
  2441. 27A008B724BD98170002452B /* AudioPlayManager.m */,
  2442. 27A008B324BD97FE0002452B /* AudioRecordManager.h */,
  2443. 27A008B424BD97FE0002452B /* AudioRecordManager.m */,
  2444. 27A008AD24BD96E50002452B /* DeviceCheckView.h */,
  2445. 27A008AC24BD96E50002452B /* DeviceCheckView.m */,
  2446. 27A008AB24BD96E50002452B /* DeviceCheckView.xib */,
  2447. );
  2448. path = DeviceCheck;
  2449. sourceTree = "<group>";
  2450. };
  2451. 27A008B924BD99620002452B /* Setting */ = {
  2452. isa = PBXGroup;
  2453. children = (
  2454. 27A008BA24BD99620002452B /* Controller */,
  2455. 27A008BB24BD99620002452B /* Model */,
  2456. 27A008BC24BD99620002452B /* View */,
  2457. );
  2458. path = Setting;
  2459. sourceTree = "<group>";
  2460. };
  2461. 27A008BA24BD99620002452B /* Controller */ = {
  2462. isa = PBXGroup;
  2463. children = (
  2464. 27A008C124BD99B10002452B /* SettingViewController.h */,
  2465. 27A008C224BD99B10002452B /* SettingViewController.m */,
  2466. 27A008CF24BDA67E0002452B /* ModifyPhoneChangeController.h */,
  2467. 27A008D024BDA67E0002452B /* ModifyPhoneChangeController.m */,
  2468. 27A008D124BDA67E0002452B /* ModifyPhoneCheckController.h */,
  2469. 27A008D224BDA67F0002452B /* ModifyPhoneCheckController.m */,
  2470. 27A008E024BDA6B40002452B /* FeedbackViewController.h */,
  2471. 27A008DF24BDA6B30002452B /* FeedbackViewController.m */,
  2472. 27A008E824BDA7070002452B /* AboutUsViewController.h */,
  2473. 27A008E724BDA7070002452B /* AboutUsViewController.m */,
  2474. );
  2475. path = Controller;
  2476. sourceTree = "<group>";
  2477. };
  2478. 27A008BB24BD99620002452B /* Model */ = {
  2479. isa = PBXGroup;
  2480. children = (
  2481. );
  2482. path = Model;
  2483. sourceTree = "<group>";
  2484. };
  2485. 27A008BC24BD99620002452B /* View */ = {
  2486. isa = PBXGroup;
  2487. children = (
  2488. 27A008CA24BD9E8A0002452B /* SettingBodyView.h */,
  2489. 27A008CB24BD9E8A0002452B /* SettingBodyView.m */,
  2490. 27A008CD24BD9E950002452B /* SettingBodyView.xib */,
  2491. 27A008D824BDA6950002452B /* PhoneChangeBodyView.h */,
  2492. 27A008D624BDA6940002452B /* PhoneChangeBodyView.m */,
  2493. 27A008D524BDA6940002452B /* PhoneChangeBodyView.xib */,
  2494. 27A008D724BDA6940002452B /* PhoneCheckBodyView.h */,
  2495. 27A008D924BDA6950002452B /* PhoneCheckBodyView.m */,
  2496. 27A008DA24BDA6950002452B /* PhoneCheckBodyView.xib */,
  2497. 27A008E424BDA6C40002452B /* FeedbackBodyView.h */,
  2498. 27A008E324BDA6C30002452B /* FeedbackBodyView.m */,
  2499. 27A008E224BDA6C30002452B /* FeedbackBodyView.xib */,
  2500. 27A008EC24BDA7100002452B /* AboutBodyView.h */,
  2501. 27A008EB24BDA7100002452B /* AboutBodyView.m */,
  2502. 27A008EA24BDA70F0002452B /* AboutBodyView.xib */,
  2503. );
  2504. path = View;
  2505. sourceTree = "<group>";
  2506. };
  2507. 27A008BD24BD99820002452B /* Mine */ = {
  2508. isa = PBXGroup;
  2509. children = (
  2510. 27A008BE24BD99820002452B /* Controller */,
  2511. 27A008BF24BD99820002452B /* Model */,
  2512. 27A008C024BD99820002452B /* View */,
  2513. );
  2514. name = Mine;
  2515. path = Controller/Mine;
  2516. sourceTree = "<group>";
  2517. };
  2518. 27A008BE24BD99820002452B /* Controller */ = {
  2519. isa = PBXGroup;
  2520. children = (
  2521. 27A008C424BD99BD0002452B /* UserViewController.h */,
  2522. 27A008C524BD99BD0002452B /* UserViewController.m */,
  2523. );
  2524. path = Controller;
  2525. sourceTree = "<group>";
  2526. };
  2527. 27A008BF24BD99820002452B /* Model */ = {
  2528. isa = PBXGroup;
  2529. children = (
  2530. );
  2531. path = Model;
  2532. sourceTree = "<group>";
  2533. };
  2534. 27A008C024BD99820002452B /* View */ = {
  2535. isa = PBXGroup;
  2536. children = (
  2537. 27A008F524BDB6220002452B /* UserBodyView.h */,
  2538. 27A008F624BDB6220002452B /* UserBodyView.m */,
  2539. 27A008F824BDB6310002452B /* UserBodyView.xib */,
  2540. );
  2541. path = View;
  2542. sourceTree = "<group>";
  2543. };
  2544. 27EF3F0A24C02B67002068A2 /* TipsView */ = {
  2545. isa = PBXGroup;
  2546. children = (
  2547. 27EF3F0B24C02B67002068A2 /* KSTipsView.m */,
  2548. 27EF3F0C24C02B67002068A2 /* KSTipsView.h */,
  2549. );
  2550. path = TipsView;
  2551. sourceTree = "<group>";
  2552. };
  2553. 27EF3F0D24C02B67002068A2 /* NormalAlertView */ = {
  2554. isa = PBXGroup;
  2555. children = (
  2556. 27EF3F0E24C02B67002068A2 /* KSNormalAlertView.h */,
  2557. 27EF3F0F24C02B67002068A2 /* KSNormalAlertView.m */,
  2558. );
  2559. path = NormalAlertView;
  2560. sourceTree = "<group>";
  2561. };
  2562. 27EF3F1024C02B67002068A2 /* TitleView */ = {
  2563. isa = PBXGroup;
  2564. children = (
  2565. 27EF3F1124C02B67002068A2 /* ClassTitleView.h */,
  2566. 27EF3F1224C02B67002068A2 /* ClassTitleView.m */,
  2567. );
  2568. path = TitleView;
  2569. sourceTree = "<group>";
  2570. };
  2571. 27EF3F1324C02B67002068A2 /* VideoList */ = {
  2572. isa = PBXGroup;
  2573. children = (
  2574. 27EF3F1524C02B68002068A2 /* ClassVideoListCell.h */,
  2575. 27EF3F1924C02B68002068A2 /* ClassVideoListCell.m */,
  2576. 27EF3F1424C02B67002068A2 /* ClassVideoListView.h */,
  2577. 27EF3F1724C02B68002068A2 /* ClassVideoListView.m */,
  2578. );
  2579. path = VideoList;
  2580. sourceTree = "<group>";
  2581. };
  2582. 27EF3F1A24C02B68002068A2 /* MainToolbar */ = {
  2583. isa = PBXGroup;
  2584. children = (
  2585. 27EF3F1B24C02B68002068A2 /* MainToolView.m */,
  2586. 27EF3F1C24C02B68002068A2 /* MainToolView.h */,
  2587. );
  2588. path = MainToolbar;
  2589. sourceTree = "<group>";
  2590. };
  2591. 27EF3F1D24C02B68002068A2 /* MainContainer */ = {
  2592. isa = PBXGroup;
  2593. children = (
  2594. 27EF3F1E24C02B68002068A2 /* ClassroomMainContainer.h */,
  2595. 27EF3F1F24C02B68002068A2 /* ClassroomMainContainer.m */,
  2596. 27EF3F2924C02DE9002068A2 /* EmptyView.h */,
  2597. 27EF3F2824C02DE8002068A2 /* EmptyView.m */,
  2598. );
  2599. path = MainContainer;
  2600. sourceTree = "<group>";
  2601. };
  2602. 3765A35FA865CF0E79E4496A /* Pods */ = {
  2603. isa = PBXGroup;
  2604. children = (
  2605. 2F7D3758362ED28D51286A60 /* Pods-MusicGradeExam.debug.xcconfig */,
  2606. 1AA4DFCEF527585287BEBFE0 /* Pods-MusicGradeExam.release.xcconfig */,
  2607. E1DA29861866096EC2DBC683 /* Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig */,
  2608. 2BB32BBE582672362BB6E017 /* Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig */,
  2609. 5402063E714DA9D9107F8070 /* Pods-MusicGradeExamTests.debug.xcconfig */,
  2610. E19677AAD7D01861E10F49D5 /* Pods-MusicGradeExamTests.release.xcconfig */,
  2611. );
  2612. path = Pods;
  2613. sourceTree = "<group>";
  2614. };
  2615. 8478281B4E8B1E1D71EF685C /* Frameworks */ = {
  2616. isa = PBXGroup;
  2617. children = (
  2618. 278D113524CADC4800599421 /* Photos.framework */,
  2619. 274772B024BC0DEB00181362 /* libsqlite3.tbd */,
  2620. 274772AE24BC0DDE00181362 /* libiconv.tbd */,
  2621. 274772AC24BC0DD000181362 /* libbz2.tbd */,
  2622. 274772AA24BC0DC900181362 /* libz.tbd */,
  2623. 274772A824BC0DC000181362 /* libc++.tbd */,
  2624. 274772A624BC0DB500181362 /* VideoToolbox.framework */,
  2625. 274772A424BC0DAE00181362 /* AudioToolbox.framework */,
  2626. 274772A224BC0DA800181362 /* CFNetwork.framework */,
  2627. 274772A024BC0DA000181362 /* CoreVideo.framework */,
  2628. 2747729E24BC0D9B00181362 /* CoreAudio.framework */,
  2629. 2747729C24BC0D9300181362 /* CoreMedia.framework */,
  2630. 2747729A24BC0D8D00181362 /* CoreFoundation.framework */,
  2631. 2747729824BC0D8700181362 /* CoreTelephony.framework */,
  2632. 2747729624BC0D8000181362 /* CoreLocation.framework */,
  2633. 2747729424BC0D7A00181362 /* CoreGraphics.framework */,
  2634. 2747729224BC0D7300181362 /* OpenGLES.framework */,
  2635. 2747729024BC0D6B00181362 /* GLKit.framework */,
  2636. 2747728E24BC0D6500181362 /* AVFoundation.framework */,
  2637. 2747728C24BC0D5F00181362 /* QuartzCore.framework */,
  2638. 2747728A24BC0D5800181362 /* Security.framework */,
  2639. 2747728824BC0D5200181362 /* ImageIO.framework */,
  2640. 2747728624BC0D4800181362 /* MapKit.framework */,
  2641. 2747728424BC0D4200181362 /* AssetsLibrary.framework */,
  2642. 1C12DE728E343C25BB5998D7 /* libPods-MusicGradeExam.a */,
  2643. F8D13E0A14104E75F7922812 /* libPods-MusicGradeExam-MusicGradeExamUITests.a */,
  2644. 8BAA64634BC925E7C2CD7008 /* libPods-MusicGradeExamTests.a */,
  2645. );
  2646. name = Frameworks;
  2647. sourceTree = "<group>";
  2648. };
  2649. /* End PBXGroup section */
  2650. /* Begin PBXNativeTarget section */
  2651. 27476F4224BBFB5900181362 /* MusicGradeExam */ = {
  2652. isa = PBXNativeTarget;
  2653. buildConfigurationList = 27476F7224BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExam" */;
  2654. buildPhases = (
  2655. A2CFBEEEA280BC5D8A12DDFF /* [CP] Check Pods Manifest.lock */,
  2656. 27476F3F24BBFB5900181362 /* Sources */,
  2657. 27476F4024BBFB5900181362 /* Frameworks */,
  2658. 27476F4124BBFB5900181362 /* Resources */,
  2659. FB27AFBA470BD4CA0203D584 /* [CP] Copy Pods Resources */,
  2660. );
  2661. buildRules = (
  2662. );
  2663. dependencies = (
  2664. );
  2665. name = MusicGradeExam;
  2666. productName = MusicGradeExam;
  2667. productReference = 27476F4324BBFB5900181362 /* 酷乐秀.app */;
  2668. productType = "com.apple.product-type.application";
  2669. };
  2670. 27476F5D24BBFB5C00181362 /* MusicGradeExamTests */ = {
  2671. isa = PBXNativeTarget;
  2672. buildConfigurationList = 27476F7524BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExamTests" */;
  2673. buildPhases = (
  2674. 1CF0D64E1EAEBE124C36BB82 /* [CP] Check Pods Manifest.lock */,
  2675. 27476F5A24BBFB5C00181362 /* Sources */,
  2676. 27476F5B24BBFB5C00181362 /* Frameworks */,
  2677. 27476F5C24BBFB5C00181362 /* Resources */,
  2678. );
  2679. buildRules = (
  2680. );
  2681. dependencies = (
  2682. 27476F6024BBFB5C00181362 /* PBXTargetDependency */,
  2683. );
  2684. name = MusicGradeExamTests;
  2685. productName = MusicGradeExamTests;
  2686. productReference = 27476F5E24BBFB5C00181362 /* MusicGradeExamTests.xctest */;
  2687. productType = "com.apple.product-type.bundle.unit-test";
  2688. };
  2689. 27476F6824BBFB5C00181362 /* MusicGradeExamUITests */ = {
  2690. isa = PBXNativeTarget;
  2691. buildConfigurationList = 27476F7824BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExamUITests" */;
  2692. buildPhases = (
  2693. AC2303F321F3E3EDB53A3E35 /* [CP] Check Pods Manifest.lock */,
  2694. 27476F6524BBFB5C00181362 /* Sources */,
  2695. 27476F6624BBFB5C00181362 /* Frameworks */,
  2696. 27476F6724BBFB5C00181362 /* Resources */,
  2697. 224760B7408CF475A1025795 /* [CP] Copy Pods Resources */,
  2698. );
  2699. buildRules = (
  2700. );
  2701. dependencies = (
  2702. 27476F6B24BBFB5C00181362 /* PBXTargetDependency */,
  2703. );
  2704. name = MusicGradeExamUITests;
  2705. productName = MusicGradeExamUITests;
  2706. productReference = 27476F6924BBFB5C00181362 /* MusicGradeExamUITests.xctest */;
  2707. productType = "com.apple.product-type.bundle.ui-testing";
  2708. };
  2709. /* End PBXNativeTarget section */
  2710. /* Begin PBXProject section */
  2711. 27476F3B24BBFB5900181362 /* Project object */ = {
  2712. isa = PBXProject;
  2713. attributes = {
  2714. LastUpgradeCheck = 1160;
  2715. ORGANIZATIONNAME = DayaMusic;
  2716. TargetAttributes = {
  2717. 27476F4224BBFB5900181362 = {
  2718. CreatedOnToolsVersion = 11.5;
  2719. };
  2720. 27476F5D24BBFB5C00181362 = {
  2721. CreatedOnToolsVersion = 11.5;
  2722. TestTargetID = 27476F4224BBFB5900181362;
  2723. };
  2724. 27476F6824BBFB5C00181362 = {
  2725. CreatedOnToolsVersion = 11.5;
  2726. TestTargetID = 27476F4224BBFB5900181362;
  2727. };
  2728. };
  2729. };
  2730. buildConfigurationList = 27476F3E24BBFB5900181362 /* Build configuration list for PBXProject "MusicGradeExam" */;
  2731. compatibilityVersion = "Xcode 9.3";
  2732. developmentRegion = en;
  2733. hasScannedForEncodings = 0;
  2734. knownRegions = (
  2735. en,
  2736. Base,
  2737. "zh-Hans",
  2738. );
  2739. mainGroup = 27476F3A24BBFB5900181362;
  2740. productRefGroup = 27476F4424BBFB5900181362 /* Products */;
  2741. projectDirPath = "";
  2742. projectRoot = "";
  2743. targets = (
  2744. 27476F4224BBFB5900181362 /* MusicGradeExam */,
  2745. 27476F5D24BBFB5C00181362 /* MusicGradeExamTests */,
  2746. 27476F6824BBFB5C00181362 /* MusicGradeExamUITests */,
  2747. );
  2748. };
  2749. /* End PBXProject section */
  2750. /* Begin PBXResourcesBuildPhase section */
  2751. 27476F4124BBFB5900181362 /* Resources */ = {
  2752. isa = PBXResourcesBuildPhase;
  2753. buildActionMask = 2147483647;
  2754. files = (
  2755. 27A008ED24BDA7100002452B /* AboutBodyView.xib in Resources */,
  2756. 274771AE24BC0C0500181362 /* mss_browseLoading@2x.png in Resources */,
  2757. 27A008CE24BD9E950002452B /* SettingBodyView.xib in Resources */,
  2758. 2794D1BF24BD4D0C00BAF6F3 /* FSBodyView.xib in Resources */,
  2759. 2729F7E424C8244100E1F3C4 /* ExamListCell.xib in Resources */,
  2760. 27A008E524BDA6C40002452B /* FeedbackBodyView.xib in Resources */,
  2761. 2747718A24BC0C0500181362 /* WMPlayer.bundle in Resources */,
  2762. 27476F5624BBFB5C00181362 /* LaunchScreen.storyboard in Resources */,
  2763. 2747727F24BC0C7C00181362 /* RCColor.plist in Resources */,
  2764. 2729F7EC24C8329700E1F3C4 /* RecordBodyView.xib in Resources */,
  2765. 27EF3EF824BEF1E8002068A2 /* TicketBodyView.xib in Resources */,
  2766. 27A008F924BDB6310002452B /* UserBodyView.xib in Resources */,
  2767. 2794D1C424BD60E900BAF6F3 /* UserCenterBodyView.xib in Resources */,
  2768. 2729F7FB24C8427200E1F3C4 /* RecordTipsView.xib in Resources */,
  2769. 2794D1B224BC605600BAF6F3 /* VefiBodyView.xib in Resources */,
  2770. 2747728324BC0C7D00181362 /* RongCloud.bundle in Resources */,
  2771. 27A008A724BD96C50002452B /* NetworkBodyView.xib in Resources */,
  2772. 2794D1C924BD631A00BAF6F3 /* ModifyBodyView.xib in Resources */,
  2773. 27A008DB24BDA6950002452B /* PhoneChangeBodyView.xib in Resources */,
  2774. 2729F7DF24C81FB000E1F3C4 /* LibraryTipsView.xib in Resources */,
  2775. 27A008FE24BECDFC0002452B /* HomeBodyView.xib in Resources */,
  2776. 274771AC24BC0C0500181362 /* mss_browseLoading@3x.png in Resources */,
  2777. 274771ED24BC0C0500181362 /* LoginBodyView.xib in Resources */,
  2778. 2729F7F624C8398B00E1F3C4 /* RecordBottomView.xib in Resources */,
  2779. 2729F7F124C8379D00E1F3C4 /* RecordListCell.xib in Resources */,
  2780. 2794D1BA24BC69A400BAF6F3 /* RegisterBodyView.xib in Resources */,
  2781. 2747719624BC0C0500181362 /* TZImagePickerController.bundle in Resources */,
  2782. 27A008DE24BDA6950002452B /* PhoneCheckBodyView.xib in Resources */,
  2783. 2747727E24BC0C7C00181362 /* RCConfig.plist in Resources */,
  2784. 27476F5324BBFB5C00181362 /* Assets.xcassets in Resources */,
  2785. 27A008AE24BD96E50002452B /* DeviceCheckView.xib in Resources */,
  2786. 2747728224BC0C7D00181362 /* Emoji.plist in Resources */,
  2787. 2747728024BC0C7C00181362 /* RongCloudKit.strings in Resources */,
  2788. 2748F8F624C138A0003F8E11 /* ExamLibraryListCell.xib in Resources */,
  2789. 27476F5124BBFB5900181362 /* Main.storyboard in Resources */,
  2790. 2729F7D324C8175E00E1F3C4 /* FileNameView.xib in Resources */,
  2791. 27EF3EF324BEE885002068A2 /* NotifyMessageCell.xib in Resources */,
  2792. 27EF3F0024BF016B002068A2 /* WaitExamBodyView.xib in Resources */,
  2793. 27A008A924BD96C50002452B /* KSNetworkAlert.xib in Resources */,
  2794. 27EF3F2F24C0384E002068A2 /* HomeExamTicketCell.xib in Resources */,
  2795. );
  2796. runOnlyForDeploymentPostprocessing = 0;
  2797. };
  2798. 27476F5C24BBFB5C00181362 /* Resources */ = {
  2799. isa = PBXResourcesBuildPhase;
  2800. buildActionMask = 2147483647;
  2801. files = (
  2802. );
  2803. runOnlyForDeploymentPostprocessing = 0;
  2804. };
  2805. 27476F6724BBFB5C00181362 /* Resources */ = {
  2806. isa = PBXResourcesBuildPhase;
  2807. buildActionMask = 2147483647;
  2808. files = (
  2809. );
  2810. runOnlyForDeploymentPostprocessing = 0;
  2811. };
  2812. /* End PBXResourcesBuildPhase section */
  2813. /* Begin PBXShellScriptBuildPhase section */
  2814. 1CF0D64E1EAEBE124C36BB82 /* [CP] Check Pods Manifest.lock */ = {
  2815. isa = PBXShellScriptBuildPhase;
  2816. buildActionMask = 2147483647;
  2817. files = (
  2818. );
  2819. inputFileListPaths = (
  2820. );
  2821. inputPaths = (
  2822. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2823. "${PODS_ROOT}/Manifest.lock",
  2824. );
  2825. name = "[CP] Check Pods Manifest.lock";
  2826. outputFileListPaths = (
  2827. );
  2828. outputPaths = (
  2829. "$(DERIVED_FILE_DIR)/Pods-MusicGradeExamTests-checkManifestLockResult.txt",
  2830. );
  2831. runOnlyForDeploymentPostprocessing = 0;
  2832. shellPath = /bin/sh;
  2833. 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";
  2834. showEnvVarsInLog = 0;
  2835. };
  2836. 224760B7408CF475A1025795 /* [CP] Copy Pods Resources */ = {
  2837. isa = PBXShellScriptBuildPhase;
  2838. buildActionMask = 2147483647;
  2839. files = (
  2840. );
  2841. inputFileListPaths = (
  2842. "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources-${CONFIGURATION}-input-files.xcfilelist",
  2843. );
  2844. name = "[CP] Copy Pods Resources";
  2845. outputFileListPaths = (
  2846. "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources-${CONFIGURATION}-output-files.xcfilelist",
  2847. );
  2848. runOnlyForDeploymentPostprocessing = 0;
  2849. shellPath = /bin/sh;
  2850. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam-MusicGradeExamUITests/Pods-MusicGradeExam-MusicGradeExamUITests-resources.sh\"\n";
  2851. showEnvVarsInLog = 0;
  2852. };
  2853. A2CFBEEEA280BC5D8A12DDFF /* [CP] Check Pods Manifest.lock */ = {
  2854. isa = PBXShellScriptBuildPhase;
  2855. buildActionMask = 2147483647;
  2856. files = (
  2857. );
  2858. inputFileListPaths = (
  2859. );
  2860. inputPaths = (
  2861. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2862. "${PODS_ROOT}/Manifest.lock",
  2863. );
  2864. name = "[CP] Check Pods Manifest.lock";
  2865. outputFileListPaths = (
  2866. );
  2867. outputPaths = (
  2868. "$(DERIVED_FILE_DIR)/Pods-MusicGradeExam-checkManifestLockResult.txt",
  2869. );
  2870. runOnlyForDeploymentPostprocessing = 0;
  2871. shellPath = /bin/sh;
  2872. 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";
  2873. showEnvVarsInLog = 0;
  2874. };
  2875. AC2303F321F3E3EDB53A3E35 /* [CP] Check Pods Manifest.lock */ = {
  2876. isa = PBXShellScriptBuildPhase;
  2877. buildActionMask = 2147483647;
  2878. files = (
  2879. );
  2880. inputFileListPaths = (
  2881. );
  2882. inputPaths = (
  2883. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2884. "${PODS_ROOT}/Manifest.lock",
  2885. );
  2886. name = "[CP] Check Pods Manifest.lock";
  2887. outputFileListPaths = (
  2888. );
  2889. outputPaths = (
  2890. "$(DERIVED_FILE_DIR)/Pods-MusicGradeExam-MusicGradeExamUITests-checkManifestLockResult.txt",
  2891. );
  2892. runOnlyForDeploymentPostprocessing = 0;
  2893. shellPath = /bin/sh;
  2894. 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";
  2895. showEnvVarsInLog = 0;
  2896. };
  2897. FB27AFBA470BD4CA0203D584 /* [CP] Copy Pods Resources */ = {
  2898. isa = PBXShellScriptBuildPhase;
  2899. buildActionMask = 2147483647;
  2900. files = (
  2901. );
  2902. inputFileListPaths = (
  2903. "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources-${CONFIGURATION}-input-files.xcfilelist",
  2904. );
  2905. name = "[CP] Copy Pods Resources";
  2906. outputFileListPaths = (
  2907. "${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources-${CONFIGURATION}-output-files.xcfilelist",
  2908. );
  2909. runOnlyForDeploymentPostprocessing = 0;
  2910. shellPath = /bin/sh;
  2911. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-MusicGradeExam/Pods-MusicGradeExam-resources.sh\"\n";
  2912. showEnvVarsInLog = 0;
  2913. };
  2914. /* End PBXShellScriptBuildPhase section */
  2915. /* Begin PBXSourcesBuildPhase section */
  2916. 27476F3F24BBFB5900181362 /* Sources */ = {
  2917. isa = PBXSourcesBuildPhase;
  2918. buildActionMask = 2147483647;
  2919. files = (
  2920. 2729F7F924C8425E00E1F3C4 /* RecordTipsView.m in Sources */,
  2921. 2747722A24BC0C0500181362 /* KSHoldButton.m in Sources */,
  2922. 2747719A24BC0C0500181362 /* TZPhotoPreviewCell.m in Sources */,
  2923. 274771E324BC0C0500181362 /* KSIMService.m in Sources */,
  2924. 2747721D24BC0C0500181362 /* UIButton+Property.m in Sources */,
  2925. 27EF3F2024C02B68002068A2 /* KSTipsView.m in Sources */,
  2926. 27A008B824BD98170002452B /* AudioPlayManager.m in Sources */,
  2927. 2747725224BC0C0500181362 /* JXCategoryBaseCell.m in Sources */,
  2928. 2747723824BC0C0500181362 /* JXCategoryIndicatorImageView.m in Sources */,
  2929. 2747725024BC0C0500181362 /* UIColor+JXAdd.m in Sources */,
  2930. 2747723924BC0C0500181362 /* JXCategoryIndicatorBallView.m in Sources */,
  2931. 2747721724BC0C0500181362 /* UIImageView+CornerRadius.m in Sources */,
  2932. 2747722E24BC0C0500181362 /* KSAudioRecordManager.m in Sources */,
  2933. 274771B024BC0C0500181362 /* UIView+Animation.m in Sources */,
  2934. 274771CA24BC0C0500181362 /* RoomLoginHelper.m in Sources */,
  2935. 27EF3F0924C02B3F002068A2 /* LocalRenderManager.m in Sources */,
  2936. 2794D1C724BD62FB00BAF6F3 /* ModifyBodyView.m in Sources */,
  2937. 274771A624BC0C0500181362 /* MSSBrowseActionSheet.m in Sources */,
  2938. 2747720124BC0C0500181362 /* UIDevice+zhDeviceType.m in Sources */,
  2939. 274771F124BC0C0500181362 /* KSUpdateManager.m in Sources */,
  2940. 2747721424BC0C0500181362 /* NSDate+Transform.m in Sources */,
  2941. 27EF3F2324C02B68002068A2 /* ClassVideoListView.m in Sources */,
  2942. 27A008DD24BDA6950002452B /* PhoneCheckBodyView.m in Sources */,
  2943. 2747724824BC0C0500181362 /* JXCategoryImageView.m in Sources */,
  2944. 2747723424BC0C0500181362 /* JXPagerView.m in Sources */,
  2945. 274771A524BC0C0500181362 /* MSSBrowseModel.m in Sources */,
  2946. 274771E124BC0C0500181362 /* ClassroomService.m in Sources */,
  2947. 274771DD24BC0C0500181362 /* NodePlayMessage.m in Sources */,
  2948. 2747718E24BC0C0500181362 /* UIView+ShowProgress.m in Sources */,
  2949. 2747718924BC0C0500181362 /* WMPlayerModel.m in Sources */,
  2950. 27A008AF24BD96E50002452B /* DeviceCheckView.m in Sources */,
  2951. 2748F8F524C138A0003F8E11 /* ExamLibraryListCell.m in Sources */,
  2952. 274771E524BC0C0500181362 /* FirstSettingViewController.m in Sources */,
  2953. 27A008DC24BDA6950002452B /* PhoneChangeBodyView.m in Sources */,
  2954. 2747719024BC0C0500181362 /* TZAssetCell.m in Sources */,
  2955. 2747718824BC0C0500181362 /* DZNSegmentedControl.m in Sources */,
  2956. 2747719B24BC0C0500181362 /* TZImagePickerController.m in Sources */,
  2957. 2747726024BC0C0500181362 /* NSDate+KSBaseDatePicker.m in Sources */,
  2958. 2747722C24BC0C0500181362 /* UIView+KSAdditions.m in Sources */,
  2959. 2747719524BC0C0500181362 /* TZPhotoPreviewController.m in Sources */,
  2960. 2747720324BC0C0500181362 /* UIViewController+zhStatusBarStyle.m in Sources */,
  2961. 274771DF24BC0C0500181362 /* RoomMember.m in Sources */,
  2962. 2747720624BC0C0500181362 /* NSMutableAttributedString+CZHExtention.m in Sources */,
  2963. 2747720F24BC0C0500181362 /* NSDictionary+Extension.m in Sources */,
  2964. 2747720824BC0C0500181362 /* UILabel+Extension.m in Sources */,
  2965. 274771D924BC0C0500181362 /* DeviceMessage.m in Sources */,
  2966. 2747719124BC0C0500181362 /* TZVideoPlayerController.m in Sources */,
  2967. 2747721E24BC0C0500181362 /* UIDevice+TFDevice.m in Sources */,
  2968. 2747721624BC0C0500181362 /* CALayer+KSLayout.m in Sources */,
  2969. 2747721524BC0C0500181362 /* UIScreen+Extend.m in Sources */,
  2970. 274771A324BC0C0500181362 /* MSSBrowseLocalViewController.m in Sources */,
  2971. 2747723024BC0C0500181362 /* KSFullDatePicker.m in Sources */,
  2972. 2794D1B824BC699700BAF6F3 /* RegisterBodyView.m in Sources */,
  2973. 2747720A24BC0C0500181362 /* UIColor+Extend.m in Sources */,
  2974. 274771B524BC0C0500181362 /* TYCyclePagerTransformLayout.m in Sources */,
  2975. 274771CF24BC0C0500181362 /* HTTPResult.m in Sources */,
  2976. 274771D424BC0C0500181362 /* TicketExpiredMessage.m in Sources */,
  2977. 274771F924BC0C0500181362 /* NSMutableDictionary+KSSafe.m in Sources */,
  2978. 274771D624BC0C0500181362 /* AssistantTransferMessage.m in Sources */,
  2979. 27A008E624BDA6C40002452B /* FeedbackBodyView.m in Sources */,
  2980. 274771F524BC0C0500181362 /* KSMemoryCache.m in Sources */,
  2981. 274771A024BC0C0500181362 /* SCIndexView.m in Sources */,
  2982. 2747723324BC0C0500181362 /* JXPagerMainTableView.m in Sources */,
  2983. 2747724424BC0C0500181362 /* JXCategoryTitleImageCellModel.m in Sources */,
  2984. 2747725624BC0C0500181362 /* SkipTextField.m in Sources */,
  2985. 274771B324BC0C0500181362 /* TYPageControl.m in Sources */,
  2986. 274771C524BC0C0500181362 /* UINavigationController+KSNavigationBar.m in Sources */,
  2987. 2747725524BC0C0500181362 /* UITextField_Toolbar.m in Sources */,
  2988. 274771C924BC0C0500181362 /* ClassroomViewController.m in Sources */,
  2989. 2747726524BC0C0500181362 /* LLCollectionViewCell.m in Sources */,
  2990. 274771BF24BC0C0500181362 /* UIView+ALFrame.m in Sources */,
  2991. 2747722624BC0C0500181362 /* MBProgressHUD+KSShow.m in Sources */,
  2992. 2747722124BC0C0500181362 /* UIImage+ResizeImage.m in Sources */,
  2993. 274771E024BC0C0500181362 /* Classroom.m in Sources */,
  2994. 2747719F24BC0C0500181362 /* SCIndexViewConfiguration.m in Sources */,
  2995. 2747720D24BC0C0500181362 /* UIView+AddConstraints.m in Sources */,
  2996. 2729F7EA24C8328700E1F3C4 /* RecordBodyView.m in Sources */,
  2997. 274771BC24BC0C0500181362 /* ALCalendarCollectionView.m in Sources */,
  2998. 27EF3EF224BEE885002068A2 /* NotifyMessageCell.m in Sources */,
  2999. 274771F424BC0C0500181362 /* KSLRUManager.m in Sources */,
  3000. 2747718C24BC0C0500181362 /* FastForwardView.m in Sources */,
  3001. 2729F7FE24C851FA00E1F3C4 /* BaseExamModel.m in Sources */,
  3002. 2747718724BC0C0500181362 /* JYEqualCellSpaceFlowLayout.m in Sources */,
  3003. 274771E624BC0C0500181362 /* LoginViewController.m in Sources */,
  3004. 2747726424BC0C0500181362 /* LLPhoto.m in Sources */,
  3005. 27A008C924BD9D550002452B /* KSNetTypeManager.m in Sources */,
  3006. 27EF3F2124C02B68002068A2 /* KSNormalAlertView.m in Sources */,
  3007. 2747723524BC0C0500181362 /* JXPagerListRefreshView.m in Sources */,
  3008. 274771A824BC0C0500181362 /* UIImage+MSSScale.m in Sources */,
  3009. 27A008F724BDB6220002452B /* UserBodyView.m in Sources */,
  3010. 274771D224BC0C0500181362 /* DisplayCommandMessage.m in Sources */,
  3011. 2747722F24BC0C0500181362 /* KSRecordPowerAnimationView.m in Sources */,
  3012. 2747723C24BC0C0500181362 /* JXCategoryIndicatorCellModel.m in Sources */,
  3013. 27EF3F0624BFF8A1002068A2 /* TicketDetailModel.m in Sources */,
  3014. 274771FD24BC0C0500181362 /* NSObject+KSImpChangeTool.m in Sources */,
  3015. 2747718B24BC0C0500181362 /* WMLightView.m in Sources */,
  3016. 2747721024BC0C0500181362 /* UIView+Hints.m in Sources */,
  3017. 274771A424BC0C0500181362 /* MSSBrowseCollectionViewCell.m in Sources */,
  3018. 274771AF24BC0C0500181362 /* UIView+MSSLayout.m in Sources */,
  3019. 27A008E124BDA6B40002452B /* FeedbackViewController.m in Sources */,
  3020. 27EF3EF624BEF1DA002068A2 /* TicketBodyView.m in Sources */,
  3021. 274771CC24BC0C0500181362 /* UIView+MBProgressHUD.m in Sources */,
  3022. 274771F624BC0C0500181362 /* KSDiskCache.m in Sources */,
  3023. 2729F7E324C8244100E1F3C4 /* ExamListCell.m in Sources */,
  3024. 2747721224BC0C0500181362 /* NSDate+Extension.m in Sources */,
  3025. 2747720924BC0C0500181362 /* UIAlertController+Extend.m in Sources */,
  3026. 27A008C624BD99BD0002452B /* UserViewController.m in Sources */,
  3027. 27A008EE24BDA7100002452B /* AboutBodyView.m in Sources */,
  3028. 2729F7F424C8395300E1F3C4 /* RecordBottomView.m in Sources */,
  3029. 27476F4E24BBFB5900181362 /* ViewController.m in Sources */,
  3030. 274771DC24BC0C0500181362 /* TurnPageMessage.m in Sources */,
  3031. 2747721124BC0C0500181362 /* NSArray+ks_SafeAccess.m in Sources */,
  3032. 2747722924BC0C0500181362 /* KSChoosePicker.m in Sources */,
  3033. 274771B224BC0C0500181362 /* ZKCycleScrollViewFlowLayout.m in Sources */,
  3034. 274771BB24BC0C0500181362 /* ALCalendarDate.m in Sources */,
  3035. 2729F7CA24C6EB4A00E1F3C4 /* SubjectNameModel.m in Sources */,
  3036. 2747724D24BC0C0500181362 /* JXCategoryNumberCellModel.m in Sources */,
  3037. 274771C024BC0C0500181362 /* ALCalendarManager.m in Sources */,
  3038. 2747724C24BC0C0500181362 /* JXCategoryNumberCell.m in Sources */,
  3039. 274771B824BC0C0500181362 /* ALCalendarCell.m in Sources */,
  3040. 2747723F24BC0C0500181362 /* JXCategoryDotCell.m in Sources */,
  3041. 274771F224BC0C0500181362 /* KSNetworking+RequestOperation.m in Sources */,
  3042. 2747720E24BC0C0500181362 /* NSString+CZHSizeExtension.m in Sources */,
  3043. 2747720024BC0C0500181362 /* UIControl+ButtonAction.m in Sources */,
  3044. 2747719924BC0C0500181362 /* TZPhotoPickerController.m in Sources */,
  3045. 274771E924BC0C0500181362 /* ModifyViewController.m in Sources */,
  3046. 2747725D24BC0C0500181362 /* KSMessageInputView.m in Sources */,
  3047. 274771CB24BC0C0500181362 /* RTCService.m in Sources */,
  3048. 274771CD24BC0C0500181362 /* RolePortraitView.m in Sources */,
  3049. 2729F7E724C8326900E1F3C4 /* RecordExamViewController.m in Sources */,
  3050. 2747722024BC0C0500181362 /* UIImage+Property.m in Sources */,
  3051. 274771C624BC0C0500181362 /* KSTabBarController.m in Sources */,
  3052. 27D4149824CA741D000DBC0C /* RecordExamModel.m in Sources */,
  3053. 27EF3F2A24C02DE9002068A2 /* EmptyView.m in Sources */,
  3054. 2747724524BC0C0500181362 /* JXCategoryTitleCellModel.m in Sources */,
  3055. 2747720B24BC0C0500181362 /* UIView+Dealloc.m in Sources */,
  3056. 2747724024BC0C0500181362 /* JXCategoryDotView.m in Sources */,
  3057. 274771A224BC0C0500181362 /* MSSBrowseLoadingImageView.m in Sources */,
  3058. 274771CE24BC0C0500181362 /* HTTPUtility.m in Sources */,
  3059. 274771D324BC0C0500181362 /* ControlDeviceNotifyMessage.m in Sources */,
  3060. 2747719324BC0C0500181362 /* NSBundle+TZImagePicker.m in Sources */,
  3061. 27A008B524BD97FE0002452B /* AudioRecordManager.m in Sources */,
  3062. 2747721924BC0C0500181362 /* UIImage+Color.m in Sources */,
  3063. 27EF3F2E24C0384E002068A2 /* HomeExamTicketCell.m in Sources */,
  3064. 2747722B24BC0C0500181362 /* KSAudioRecordFileManager.m in Sources */,
  3065. 27A008D424BDA67F0002452B /* ModifyPhoneCheckController.m in Sources */,
  3066. 2747726224BC0C0500181362 /* LLImageCache.m in Sources */,
  3067. 274771E724BC0C0500181362 /* RegisterViewController.m in Sources */,
  3068. 274771F824BC0C0500181362 /* NSDictionary+KSSafe.m in Sources */,
  3069. 274771BD24BC0C0500181362 /* ALCalendarHelper.m in Sources */,
  3070. 274771B624BC0C0500181362 /* KSPickerView.m in Sources */,
  3071. 274771B424BC0C0500181362 /* TYCyclePagerView.m in Sources */,
  3072. 2747719824BC0C0500181362 /* TZImageManager.m in Sources */,
  3073. 27A008E924BDA7070002452B /* AboutUsViewController.m in Sources */,
  3074. 27544CF824BC337D00EF58AF /* ExamTicketViewController.m in Sources */,
  3075. 2794D1B024BC604800BAF6F3 /* VefiBodyView.m in Sources */,
  3076. 274771C824BC0C0500181362 /* HomeViewController.m in Sources */,
  3077. 27544CFB24BC338900EF58AF /* UserCenterViewController.m in Sources */,
  3078. 27EF3EFB24BEFC79002068A2 /* WaitExamViewController.m in Sources */,
  3079. 274771B124BC0C0500181362 /* ZKCycleScrollView.m in Sources */,
  3080. 274771A724BC0C0500181362 /* MSSBrowseNetworkViewController.m in Sources */,
  3081. 2747724924BC0C0500181362 /* JXCategoryImageCell.m in Sources */,
  3082. 2747720C24BC0C0500181362 /* NSObject+Parse.m in Sources */,
  3083. 274771B724BC0C0500181362 /* NSObject+ReadDocument.m in Sources */,
  3084. 274771BE24BC0C0500181362 /* ALCalendarPicker.m in Sources */,
  3085. 274771D824BC0C0500181362 /* InviteUpgradeMessage.m in Sources */,
  3086. 2747725324BC0C0500181362 /* JXCategoryBaseCellModel.m in Sources */,
  3087. 2748F8F124C05F4D003F8E11 /* ExamLibraryController.m in Sources */,
  3088. 2747722324BC0C0500181362 /* NSObject+AutoProperty.m in Sources */,
  3089. 274771D524BC0C0500181362 /* WhiteboardMessage.m in Sources */,
  3090. 2747725F24BC0C0500181362 /* StateView.m in Sources */,
  3091. 274771A124BC0C0500181362 /* UITableView+SCIndexView.m in Sources */,
  3092. 2747720224BC0C0500181362 /* NSString+zh_SafeAccess.m in Sources */,
  3093. 2747724B24BC0C0500181362 /* JXCategoryNumberView.m in Sources */,
  3094. 2747721324BC0C0500181362 /* NSString+Extension.m in Sources */,
  3095. 27A008CC24BD9E8A0002452B /* SettingBodyView.m in Sources */,
  3096. 2729F7DA24C81E9B00E1F3C4 /* ExamViewController.m in Sources */,
  3097. 2747721B24BC0C0500181362 /* UIView+XIBView.m in Sources */,
  3098. 2747723E24BC0C0500181362 /* JXCategoryIndicatorView.m in Sources */,
  3099. 2747725424BC0C0500181362 /* MBProgressHUD+NJ.m in Sources */,
  3100. 27A008D324BDA67F0002452B /* ModifyPhoneChangeController.m in Sources */,
  3101. 2747724A24BC0C0500181362 /* JXCategoryImageCellModel.m in Sources */,
  3102. 27EF3F0324BF0F12002068A2 /* TicketListModel.m in Sources */,
  3103. 2747721C24BC0C0500181362 /* UrlDecode.m in Sources */,
  3104. 2747724724BC0C0500181362 /* JXCategoryTitleView.m in Sources */,
  3105. 274771F724BC0C0500181362 /* KSCacheManager.m in Sources */,
  3106. 2747722224BC0C0500181362 /* UIButton+HasChooseImage.m in Sources */,
  3107. 2747719E24BC0C0500181362 /* TZImageRequestOperation.m in Sources */,
  3108. 2747725C24BC0C0500181362 /* NSString+MD5.m in Sources */,
  3109. 2747724124BC0C0500181362 /* JXCategoryDotCellModel.m in Sources */,
  3110. 274771E224BC0C0500181362 /* KSRemoteUserManager.m in Sources */,
  3111. 2747725B24BC0C0500181362 /* KSImageButton.m in Sources */,
  3112. 2747719724BC0C0500181362 /* TZProgressView.m in Sources */,
  3113. 274771AB24BC0C0500181362 /* MSSBrowseRemindView.m in Sources */,
  3114. 274771A924BC0C0500181362 /* MSSBrowseBaseViewController.m in Sources */,
  3115. 27A008A524BD96C50002452B /* NetworkingCheckController.m in Sources */,
  3116. 2729F7D124C8174A00E1F3C4 /* FileNameView.m in Sources */,
  3117. 27EF3EFE24BF015A002068A2 /* WaitExamBodyView.m in Sources */,
  3118. 274771C724BC0C0500181362 /* KSRequestManager.m in Sources */,
  3119. 2747722824BC0C0500181362 /* GRCreateManager.m in Sources */,
  3120. 2747720724BC0C0500181362 /* UITextView+ZWLimitCounter.m in Sources */,
  3121. 2747723A24BC0C0500181362 /* JXCategoryIndicatorComponentView.m in Sources */,
  3122. 27476F4824BBFB5900181362 /* AppDelegate.m in Sources */,
  3123. 2747725A24BC0C0500181362 /* NSString+phone.m in Sources */,
  3124. 2747725124BC0C0500181362 /* JXCategoryBaseView.m in Sources */,
  3125. 2729F7DD24C81FA200E1F3C4 /* LibraryTipsView.m in Sources */,
  3126. 274771E424BC0C0500181362 /* NotifyMessageViewController.m in Sources */,
  3127. 2747724F24BC0C0500181362 /* JXCategoryCollectionView.m in Sources */,
  3128. 274771AA24BC0C0500181362 /* MSSBrowseZoomScrollView.m in Sources */,
  3129. 274771DE24BC0C0500181362 /* Whiteboard.m in Sources */,
  3130. 2747723B24BC0C0500181362 /* JXCategoryIndicatorBackgroundView.m in Sources */,
  3131. 274771FB24BC0C0500181362 /* NSMutableArray+KSSafe.m in Sources */,
  3132. 278D113424CA8E4D00599421 /* ExamDisplayViewController.m in Sources */,
  3133. 274771D724BC0C0500181362 /* RoleChangedMessage.m in Sources */,
  3134. 27A008F324BDB1E50002452B /* SysUser.m in Sources */,
  3135. 27EF3EEE24BEE35E002068A2 /* MessageListModel.m in Sources */,
  3136. 2747725824BC0C0500181362 /* SkipTextView.m in Sources */,
  3137. 2747725E24BC0C0500181362 /* KSInputView.m in Sources */,
  3138. 27EF3F2224C02B68002068A2 /* ClassTitleView.m in Sources */,
  3139. 2747719C24BC0C0500181362 /* TZLocationManager.m in Sources */,
  3140. 2747720524BC0C0500181362 /* CALayer+Color.m in Sources */,
  3141. 274771D124BC0C0500181362 /* ApplySpeechMessage.m in Sources */,
  3142. 274771FF24BC0C0500181362 /* NSObject+AssociatedObject.m in Sources */,
  3143. 27A008F424BDB1E50002452B /* UserInfo.m in Sources */,
  3144. 2747726124BC0C0500181362 /* LLPhotoBrowser.m in Sources */,
  3145. 2794D1BD24BD4CF800BAF6F3 /* FSBodyView.m in Sources */,
  3146. 27A008A624BD96C50002452B /* NetworkBodyView.m in Sources */,
  3147. 274771C224BC0C0500181362 /* KSBaseViewController.m in Sources */,
  3148. 2794D1B524BC662600BAF6F3 /* VeriCheckView.m in Sources */,
  3149. 27A008FC24BECDC40002452B /* HomeBodyView.m in Sources */,
  3150. 2747722D24BC0C0500181362 /* KSRecordStatusView.m in Sources */,
  3151. 27A008A824BD96C50002452B /* KSNetworkAlert.m in Sources */,
  3152. 2747719224BC0C0500181362 /* TZAssetModel.m in Sources */,
  3153. 274771DB24BC0C0500181362 /* ApplySpeechResultMessage.m in Sources */,
  3154. 2747723624BC0C0500181362 /* JXCategoryIndicatorLineView.m in Sources */,
  3155. 2747719424BC0C0500181362 /* UIView+Layout.m in Sources */,
  3156. 2747719D24BC0C0500181362 /* TZGifPhotoPreviewController.m in Sources */,
  3157. 2747724E24BC0C0500181362 /* JXCategoryFactory.m in Sources */,
  3158. 27EF3F2524C02B68002068A2 /* ClassVideoListCell.m in Sources */,
  3159. 2747722524BC0C0500181362 /* UIButton+EnlargeEdge.m in Sources */,
  3160. 27EF3F2724C02B68002068A2 /* ClassroomMainContainer.m in Sources */,
  3161. 2747722724BC0C0500181362 /* UIImage+Resize.m in Sources */,
  3162. 274771EE24BC0C0500181362 /* OnlineRoomManager.m in Sources */,
  3163. 2747721F24BC0C0500181362 /* UIColor+Hex.m in Sources */,
  3164. 2747723124BC0C0500181362 /* KSMediaManager.m in Sources */,
  3165. 2794D1C224BD60D500BAF6F3 /* UserCenterBodyView.m in Sources */,
  3166. 274771AD24BC0C0500181362 /* MSSBrowseActionSheetCell.m in Sources */,
  3167. 274771EF24BC0C0500181362 /* KSRCIMDataSource.m in Sources */,
  3168. 274771EB24BC0C0500181362 /* UserInfoManager.m in Sources */,
  3169. 2747723224BC0C0500181362 /* JXPagerListContainerView.m in Sources */,
  3170. 2729F7F024C8379D00E1F3C4 /* RecordListCell.m in Sources */,
  3171. 27A008C324BD99B10002452B /* SettingViewController.m in Sources */,
  3172. 2747725724BC0C0500181362 /* UITextView_Toolbar.m in Sources */,
  3173. 274771DA24BC0C0500181362 /* MemberChangeMessage.m in Sources */,
  3174. 2747721824BC0C0500181362 /* NSObject+ReadDocument.m in Sources */,
  3175. 27EF3F2624C02B68002068A2 /* MainToolView.m in Sources */,
  3176. 2747718F24BC0C0500181362 /* TZImageCropManager.m in Sources */,
  3177. 2729F7C724C6C87400E1F3C4 /* OpenFileViewController.m in Sources */,
  3178. 2747725924BC0C0500181362 /* GRScanManager.m in Sources */,
  3179. 2747724224BC0C0500181362 /* JXCategoryTitleImageView.m in Sources */,
  3180. 2747720424BC0C0500181362 /* UITextView+ZWPlaceHolder.m in Sources */,
  3181. 2747724324BC0C0500181362 /* JXCategoryTitleImageCell.m in Sources */,
  3182. 274771E824BC0C0500181362 /* VefiLoginViewController.m in Sources */,
  3183. 274771F024BC0C0500181362 /* RCConnectionManager.m in Sources */,
  3184. 27476F5924BBFB5C00181362 /* main.m in Sources */,
  3185. 274771B924BC0C0500181362 /* ALCalendarConfig.m in Sources */,
  3186. 2747726324BC0C0500181362 /* LLFileManager.m in Sources */,
  3187. 274771FE24BC0C0500181362 /* NSMutableString+KSSafe.m in Sources */,
  3188. 2729F7CD24C6F3F300E1F3C4 /* SongListModel.m in Sources */,
  3189. 27D4149B24CA757A000DBC0C /* SongModel.m in Sources */,
  3190. 2747723D24BC0C0500181362 /* JXCategoryIndicatorCell.m in Sources */,
  3191. 2747721A24BC0C0500181362 /* UIImage+Addtions.m in Sources */,
  3192. 274771EC24BC0C0500181362 /* LoginBodyView.m in Sources */,
  3193. 274771BA24BC0C0500181362 /* ALCalendarHeader.m in Sources */,
  3194. 274771FA24BC0C0500181362 /* NSArray+KSSafe.m in Sources */,
  3195. 2747724624BC0C0500181362 /* JXCategoryTitleCell.m in Sources */,
  3196. 274771FC24BC0C0500181362 /* NSObject+KSSwizzling.m in Sources */,
  3197. 274771C324BC0C0500181362 /* KSBaseWKWebViewController.m in Sources */,
  3198. 2747723724BC0C0500181362 /* JXCategoryIndicatorTriangleView.m in Sources */,
  3199. 274771F324BC0C0500181362 /* KSNetworking.m in Sources */,
  3200. 274771C424BC0C0500181362 /* CustomNavViewController.m in Sources */,
  3201. 2747722424BC0C0500181362 /* UIImage+UIImageScale.m in Sources */,
  3202. 2747718D24BC0C0500181362 /* WMPlayer.m in Sources */,
  3203. );
  3204. runOnlyForDeploymentPostprocessing = 0;
  3205. };
  3206. 27476F5A24BBFB5C00181362 /* Sources */ = {
  3207. isa = PBXSourcesBuildPhase;
  3208. buildActionMask = 2147483647;
  3209. files = (
  3210. 27476F6324BBFB5C00181362 /* MusicGradeExamTests.m in Sources */,
  3211. );
  3212. runOnlyForDeploymentPostprocessing = 0;
  3213. };
  3214. 27476F6524BBFB5C00181362 /* Sources */ = {
  3215. isa = PBXSourcesBuildPhase;
  3216. buildActionMask = 2147483647;
  3217. files = (
  3218. 27476F6E24BBFB5C00181362 /* MusicGradeExamUITests.m in Sources */,
  3219. );
  3220. runOnlyForDeploymentPostprocessing = 0;
  3221. };
  3222. /* End PBXSourcesBuildPhase section */
  3223. /* Begin PBXTargetDependency section */
  3224. 27476F6024BBFB5C00181362 /* PBXTargetDependency */ = {
  3225. isa = PBXTargetDependency;
  3226. target = 27476F4224BBFB5900181362 /* MusicGradeExam */;
  3227. targetProxy = 27476F5F24BBFB5C00181362 /* PBXContainerItemProxy */;
  3228. };
  3229. 27476F6B24BBFB5C00181362 /* PBXTargetDependency */ = {
  3230. isa = PBXTargetDependency;
  3231. target = 27476F4224BBFB5900181362 /* MusicGradeExam */;
  3232. targetProxy = 27476F6A24BBFB5C00181362 /* PBXContainerItemProxy */;
  3233. };
  3234. /* End PBXTargetDependency section */
  3235. /* Begin PBXVariantGroup section */
  3236. 27476F4F24BBFB5900181362 /* Main.storyboard */ = {
  3237. isa = PBXVariantGroup;
  3238. children = (
  3239. 27476F5024BBFB5900181362 /* Base */,
  3240. );
  3241. name = Main.storyboard;
  3242. sourceTree = "<group>";
  3243. };
  3244. 27476F5424BBFB5C00181362 /* LaunchScreen.storyboard */ = {
  3245. isa = PBXVariantGroup;
  3246. children = (
  3247. 27476F5524BBFB5C00181362 /* Base */,
  3248. );
  3249. name = LaunchScreen.storyboard;
  3250. sourceTree = "<group>";
  3251. };
  3252. 2747727224BC0C7C00181362 /* RongCloudKit.strings */ = {
  3253. isa = PBXVariantGroup;
  3254. children = (
  3255. 2747727324BC0C7C00181362 /* zh-Hans */,
  3256. 2747727424BC0C7C00181362 /* en */,
  3257. );
  3258. name = RongCloudKit.strings;
  3259. sourceTree = "<group>";
  3260. };
  3261. /* End PBXVariantGroup section */
  3262. /* Begin XCBuildConfiguration section */
  3263. 27476F7024BBFB5C00181362 /* Debug */ = {
  3264. isa = XCBuildConfiguration;
  3265. buildSettings = {
  3266. ALWAYS_SEARCH_USER_PATHS = NO;
  3267. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3268. CLANG_ANALYZER_NONNULL = YES;
  3269. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3270. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3271. CLANG_CXX_LIBRARY = "libc++";
  3272. CLANG_ENABLE_MODULES = YES;
  3273. CLANG_ENABLE_OBJC_ARC = YES;
  3274. CLANG_ENABLE_OBJC_WEAK = YES;
  3275. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3276. CLANG_WARN_BOOL_CONVERSION = YES;
  3277. CLANG_WARN_COMMA = YES;
  3278. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3279. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3280. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3281. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3282. CLANG_WARN_EMPTY_BODY = YES;
  3283. CLANG_WARN_ENUM_CONVERSION = YES;
  3284. CLANG_WARN_INFINITE_RECURSION = YES;
  3285. CLANG_WARN_INT_CONVERSION = YES;
  3286. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3287. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3288. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3289. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3290. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3291. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3292. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3293. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3294. CLANG_WARN_UNREACHABLE_CODE = YES;
  3295. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3296. COPY_PHASE_STRIP = NO;
  3297. DEBUG_INFORMATION_FORMAT = dwarf;
  3298. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3299. ENABLE_TESTABILITY = YES;
  3300. GCC_C_LANGUAGE_STANDARD = gnu11;
  3301. GCC_DYNAMIC_NO_PIC = NO;
  3302. GCC_NO_COMMON_BLOCKS = YES;
  3303. GCC_OPTIMIZATION_LEVEL = 0;
  3304. GCC_PREPROCESSOR_DEFINITIONS = (
  3305. "DEBUG=1",
  3306. "$(inherited)",
  3307. );
  3308. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3309. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3310. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3311. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3312. GCC_WARN_UNUSED_FUNCTION = YES;
  3313. GCC_WARN_UNUSED_VARIABLE = YES;
  3314. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3315. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  3316. MTL_FAST_MATH = YES;
  3317. ONLY_ACTIVE_ARCH = YES;
  3318. SDKROOT = iphoneos;
  3319. VALID_ARCHS = "arm64 arm64e armv7s";
  3320. };
  3321. name = Debug;
  3322. };
  3323. 27476F7124BBFB5C00181362 /* Release */ = {
  3324. isa = XCBuildConfiguration;
  3325. buildSettings = {
  3326. ALWAYS_SEARCH_USER_PATHS = NO;
  3327. CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
  3328. CLANG_ANALYZER_NONNULL = YES;
  3329. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  3330. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  3331. CLANG_CXX_LIBRARY = "libc++";
  3332. CLANG_ENABLE_MODULES = YES;
  3333. CLANG_ENABLE_OBJC_ARC = YES;
  3334. CLANG_ENABLE_OBJC_WEAK = YES;
  3335. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  3336. CLANG_WARN_BOOL_CONVERSION = YES;
  3337. CLANG_WARN_COMMA = YES;
  3338. CLANG_WARN_CONSTANT_CONVERSION = YES;
  3339. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  3340. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  3341. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  3342. CLANG_WARN_EMPTY_BODY = YES;
  3343. CLANG_WARN_ENUM_CONVERSION = YES;
  3344. CLANG_WARN_INFINITE_RECURSION = YES;
  3345. CLANG_WARN_INT_CONVERSION = YES;
  3346. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  3347. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  3348. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  3349. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  3350. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  3351. CLANG_WARN_STRICT_PROTOTYPES = YES;
  3352. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  3353. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  3354. CLANG_WARN_UNREACHABLE_CODE = YES;
  3355. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  3356. COPY_PHASE_STRIP = NO;
  3357. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  3358. ENABLE_NS_ASSERTIONS = NO;
  3359. ENABLE_STRICT_OBJC_MSGSEND = YES;
  3360. GCC_C_LANGUAGE_STANDARD = gnu11;
  3361. GCC_NO_COMMON_BLOCKS = YES;
  3362. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  3363. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  3364. GCC_WARN_UNDECLARED_SELECTOR = YES;
  3365. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  3366. GCC_WARN_UNUSED_FUNCTION = YES;
  3367. GCC_WARN_UNUSED_VARIABLE = YES;
  3368. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3369. MTL_ENABLE_DEBUG_INFO = NO;
  3370. MTL_FAST_MATH = YES;
  3371. SDKROOT = iphoneos;
  3372. VALIDATE_PRODUCT = YES;
  3373. VALID_ARCHS = "arm64 arm64e armv7s";
  3374. };
  3375. name = Release;
  3376. };
  3377. 27476F7324BBFB5C00181362 /* Debug */ = {
  3378. isa = XCBuildConfiguration;
  3379. baseConfigurationReference = 2F7D3758362ED28D51286A60 /* Pods-MusicGradeExam.debug.xcconfig */;
  3380. buildSettings = {
  3381. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3382. CODE_SIGN_ENTITLEMENTS = "MusicGradeExam/酷乐秀.entitlements";
  3383. CODE_SIGN_STYLE = Automatic;
  3384. CURRENT_PROJECT_VERSION = 1.0.0;
  3385. DEVELOPMENT_TEAM = 2K89M44X82;
  3386. ENABLE_BITCODE = NO;
  3387. FRAMEWORK_SEARCH_PATHS = (
  3388. "$(inherited)",
  3389. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/Sight",
  3390. "$(PROJECT_DIR)/MusicGradeExam/RongCloud",
  3391. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
  3392. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMKit",
  3393. );
  3394. GCC_PREFIX_HEADER = "$(SRCROOT)/MusicGradeExam/Define/PrefixHeader.pch";
  3395. INFOPLIST_FILE = MusicGradeExam/Info.plist;
  3396. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3397. LD_RUNPATH_SEARCH_PATHS = (
  3398. "$(inherited)",
  3399. "@executable_path/Frameworks",
  3400. );
  3401. LIBRARY_SEARCH_PATHS = (
  3402. "$(inherited)",
  3403. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
  3404. );
  3405. MARKETING_VERSION = 1.0.0;
  3406. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExam;
  3407. PRODUCT_NAME = "酷乐秀";
  3408. TARGETED_DEVICE_FAMILY = "1,2";
  3409. };
  3410. name = Debug;
  3411. };
  3412. 27476F7424BBFB5C00181362 /* Release */ = {
  3413. isa = XCBuildConfiguration;
  3414. baseConfigurationReference = 1AA4DFCEF527585287BEBFE0 /* Pods-MusicGradeExam.release.xcconfig */;
  3415. buildSettings = {
  3416. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  3417. CODE_SIGN_ENTITLEMENTS = "MusicGradeExam/酷乐秀.entitlements";
  3418. CODE_SIGN_STYLE = Automatic;
  3419. CURRENT_PROJECT_VERSION = 1.0.0;
  3420. DEVELOPMENT_TEAM = 2K89M44X82;
  3421. ENABLE_BITCODE = NO;
  3422. FRAMEWORK_SEARCH_PATHS = (
  3423. "$(inherited)",
  3424. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/Sight",
  3425. "$(PROJECT_DIR)/MusicGradeExam/RongCloud",
  3426. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
  3427. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMKit",
  3428. );
  3429. GCC_PREFIX_HEADER = "$(SRCROOT)/MusicGradeExam/Define/PrefixHeader.pch";
  3430. INFOPLIST_FILE = MusicGradeExam/Info.plist;
  3431. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  3432. LD_RUNPATH_SEARCH_PATHS = (
  3433. "$(inherited)",
  3434. "@executable_path/Frameworks",
  3435. );
  3436. LIBRARY_SEARCH_PATHS = (
  3437. "$(inherited)",
  3438. "$(PROJECT_DIR)/MusicGradeExam/RongCloud/IMLib",
  3439. );
  3440. MARKETING_VERSION = 1.0.0;
  3441. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExam;
  3442. PRODUCT_NAME = "酷乐秀";
  3443. TARGETED_DEVICE_FAMILY = "1,2";
  3444. };
  3445. name = Release;
  3446. };
  3447. 27476F7624BBFB5C00181362 /* Debug */ = {
  3448. isa = XCBuildConfiguration;
  3449. baseConfigurationReference = 5402063E714DA9D9107F8070 /* Pods-MusicGradeExamTests.debug.xcconfig */;
  3450. buildSettings = {
  3451. BUNDLE_LOADER = "$(TEST_HOST)";
  3452. CODE_SIGN_STYLE = Automatic;
  3453. DEVELOPMENT_TEAM = 2K89M44X82;
  3454. INFOPLIST_FILE = MusicGradeExamTests/Info.plist;
  3455. IPHONEOS_DEPLOYMENT_TARGET = 13.5;
  3456. LD_RUNPATH_SEARCH_PATHS = (
  3457. "$(inherited)",
  3458. "@executable_path/Frameworks",
  3459. "@loader_path/Frameworks",
  3460. );
  3461. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamTests;
  3462. PRODUCT_NAME = "$(TARGET_NAME)";
  3463. TARGETED_DEVICE_FAMILY = "1,2";
  3464. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicGradeExam.app/MusicGradeExam";
  3465. };
  3466. name = Debug;
  3467. };
  3468. 27476F7724BBFB5C00181362 /* Release */ = {
  3469. isa = XCBuildConfiguration;
  3470. baseConfigurationReference = E19677AAD7D01861E10F49D5 /* Pods-MusicGradeExamTests.release.xcconfig */;
  3471. buildSettings = {
  3472. BUNDLE_LOADER = "$(TEST_HOST)";
  3473. CODE_SIGN_STYLE = Automatic;
  3474. DEVELOPMENT_TEAM = 2K89M44X82;
  3475. INFOPLIST_FILE = MusicGradeExamTests/Info.plist;
  3476. IPHONEOS_DEPLOYMENT_TARGET = 13.5;
  3477. LD_RUNPATH_SEARCH_PATHS = (
  3478. "$(inherited)",
  3479. "@executable_path/Frameworks",
  3480. "@loader_path/Frameworks",
  3481. );
  3482. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamTests;
  3483. PRODUCT_NAME = "$(TARGET_NAME)";
  3484. TARGETED_DEVICE_FAMILY = "1,2";
  3485. TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MusicGradeExam.app/MusicGradeExam";
  3486. };
  3487. name = Release;
  3488. };
  3489. 27476F7924BBFB5C00181362 /* Debug */ = {
  3490. isa = XCBuildConfiguration;
  3491. baseConfigurationReference = E1DA29861866096EC2DBC683 /* Pods-MusicGradeExam-MusicGradeExamUITests.debug.xcconfig */;
  3492. buildSettings = {
  3493. CODE_SIGN_STYLE = Automatic;
  3494. DEVELOPMENT_TEAM = 2K89M44X82;
  3495. INFOPLIST_FILE = MusicGradeExamUITests/Info.plist;
  3496. LD_RUNPATH_SEARCH_PATHS = (
  3497. "$(inherited)",
  3498. "@executable_path/Frameworks",
  3499. "@loader_path/Frameworks",
  3500. );
  3501. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamUITests;
  3502. PRODUCT_NAME = "$(TARGET_NAME)";
  3503. TARGETED_DEVICE_FAMILY = "1,2";
  3504. TEST_TARGET_NAME = MusicGradeExam;
  3505. };
  3506. name = Debug;
  3507. };
  3508. 27476F7A24BBFB5C00181362 /* Release */ = {
  3509. isa = XCBuildConfiguration;
  3510. baseConfigurationReference = 2BB32BBE582672362BB6E017 /* Pods-MusicGradeExam-MusicGradeExamUITests.release.xcconfig */;
  3511. buildSettings = {
  3512. CODE_SIGN_STYLE = Automatic;
  3513. DEVELOPMENT_TEAM = 2K89M44X82;
  3514. INFOPLIST_FILE = MusicGradeExamUITests/Info.plist;
  3515. LD_RUNPATH_SEARCH_PATHS = (
  3516. "$(inherited)",
  3517. "@executable_path/Frameworks",
  3518. "@loader_path/Frameworks",
  3519. );
  3520. PRODUCT_BUNDLE_IDENTIFIER = com.DayaMusic.MusicGradeExamUITests;
  3521. PRODUCT_NAME = "$(TARGET_NAME)";
  3522. TARGETED_DEVICE_FAMILY = "1,2";
  3523. TEST_TARGET_NAME = MusicGradeExam;
  3524. };
  3525. name = Release;
  3526. };
  3527. /* End XCBuildConfiguration section */
  3528. /* Begin XCConfigurationList section */
  3529. 27476F3E24BBFB5900181362 /* Build configuration list for PBXProject "MusicGradeExam" */ = {
  3530. isa = XCConfigurationList;
  3531. buildConfigurations = (
  3532. 27476F7024BBFB5C00181362 /* Debug */,
  3533. 27476F7124BBFB5C00181362 /* Release */,
  3534. );
  3535. defaultConfigurationIsVisible = 0;
  3536. defaultConfigurationName = Release;
  3537. };
  3538. 27476F7224BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExam" */ = {
  3539. isa = XCConfigurationList;
  3540. buildConfigurations = (
  3541. 27476F7324BBFB5C00181362 /* Debug */,
  3542. 27476F7424BBFB5C00181362 /* Release */,
  3543. );
  3544. defaultConfigurationIsVisible = 0;
  3545. defaultConfigurationName = Release;
  3546. };
  3547. 27476F7524BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExamTests" */ = {
  3548. isa = XCConfigurationList;
  3549. buildConfigurations = (
  3550. 27476F7624BBFB5C00181362 /* Debug */,
  3551. 27476F7724BBFB5C00181362 /* Release */,
  3552. );
  3553. defaultConfigurationIsVisible = 0;
  3554. defaultConfigurationName = Release;
  3555. };
  3556. 27476F7824BBFB5C00181362 /* Build configuration list for PBXNativeTarget "MusicGradeExamUITests" */ = {
  3557. isa = XCConfigurationList;
  3558. buildConfigurations = (
  3559. 27476F7924BBFB5C00181362 /* Debug */,
  3560. 27476F7A24BBFB5C00181362 /* Release */,
  3561. );
  3562. defaultConfigurationIsVisible = 0;
  3563. defaultConfigurationName = Release;
  3564. };
  3565. /* End XCConfigurationList section */
  3566. };
  3567. rootObject = 27476F3B24BBFB5900181362 /* Project object */;
  3568. }