project.pbxproj 249 KB

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