project.pbxproj 275 KB

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