2
0

project.pbxproj 201 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 56;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 3D19CBEA29E6480E0041A6B8 /* SLFriendsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D19CBE929E6480E0041A6B8 /* SLFriendsModel.m */; };
  10. 3D19CBEE29E682C20041A6B8 /* SLChatListModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D19CBED29E682C20041A6B8 /* SLChatListModel.m */; };
  11. 3D19CBF829E7ABFD0041A6B8 /* UITableView+CYLTableViewPlaceHolder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D19CBF229E7ABFD0041A6B8 /* UITableView+CYLTableViewPlaceHolder.m */; };
  12. 3D19CBF929E7ABFD0041A6B8 /* UITableView+Refresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D19CBF329E7ABFD0041A6B8 /* UITableView+Refresh.m */; };
  13. 3D19CBFA29E7ABFD0041A6B8 /* TTTableViewPlaceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D19CBF629E7ABFD0041A6B8 /* TTTableViewPlaceView.m */; };
  14. 3D19CBFE29E7DF6B0041A6B8 /* SLMomentsCommentVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D19CBFC29E7DF6B0041A6B8 /* SLMomentsCommentVc.m */; };
  15. 3D19CBFF29E7DF6B0041A6B8 /* SLMomentsCommentVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D19CBFD29E7DF6B0041A6B8 /* SLMomentsCommentVc.xib */; };
  16. 3D19CC0229E7E9340041A6B8 /* SLMomentDetailTableVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D19CC0129E7E9340041A6B8 /* SLMomentDetailTableVc.m */; };
  17. 3D1B986529BEAF2F0008D01A /* SLHorScrBtns.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B986429BEAF2F0008D01A /* SLHorScrBtns.m */; };
  18. 3D1B986929BEAFEB0008D01A /* SLHorScrBtns.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B986829BEAFEB0008D01A /* SLHorScrBtns.xib */; };
  19. 3D1B987229BEB35B0008D01A /* SLHorScrBtnsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B987029BEB35B0008D01A /* SLHorScrBtnsCell.m */; };
  20. 3D1B987329BEB35B0008D01A /* SLHorScrBtnsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B987129BEB35B0008D01A /* SLHorScrBtnsCell.xib */; };
  21. 3D1B987729BEE6640008D01A /* SLLxTopView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B987629BEE6640008D01A /* SLLxTopView.m */; };
  22. 3D1B987B29BEE6800008D01A /* SLLxTopView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B987A29BEE6800008D01A /* SLLxTopView.xib */; };
  23. 3D1B987E29BEEA5A0008D01A /* SLVocabularyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B987D29BEEA5A0008D01A /* SLVocabularyView.m */; };
  24. 3D1B988029BEEA670008D01A /* SLVocabularyView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B987F29BEEA670008D01A /* SLVocabularyView.xib */; };
  25. 3D1B988A29BEF1020008D01A /* SLLxTopCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B988829BEF1020008D01A /* SLLxTopCell.m */; };
  26. 3D1B988B29BEF1020008D01A /* SLLxTopCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B988929BEF1020008D01A /* SLLxTopCell.xib */; };
  27. 3D1B988F29BEF1AC0008D01A /* SLVocabularyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B988D29BEF1AC0008D01A /* SLVocabularyCell.m */; };
  28. 3D1B989029BEF1AC0008D01A /* SLVocabularyCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B988E29BEF1AC0008D01A /* SLVocabularyCell.xib */; };
  29. 3D1B989329BEF5960008D01A /* SLLxView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B989229BEF5960008D01A /* SLLxView.m */; };
  30. 3D1B989629BF08A70008D01A /* SLLineScaleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B989529BF08A70008D01A /* SLLineScaleView.m */; };
  31. 3D1B9CEC29C038280008D01A /* SLTargetViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9CEA29C038280008D01A /* SLTargetViewController.m */; };
  32. 3D1B9CED29C038280008D01A /* SLTargetViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B9CEB29C038280008D01A /* SLTargetViewController.xib */; };
  33. 3D1B9CF029C03B8B0008D01A /* SLDatePickView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9CEF29C03B8B0008D01A /* SLDatePickView.m */; };
  34. 3D1B9CF329C044AA0008D01A /* SLPickView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9CF229C044AA0008D01A /* SLPickView.m */; };
  35. 3D1B9CF829C071AD0008D01A /* SLFeedbackVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9CF629C071AD0008D01A /* SLFeedbackVc.m */; };
  36. 3D1B9CF929C071AD0008D01A /* SLFeedbackVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B9CF729C071AD0008D01A /* SLFeedbackVc.xib */; };
  37. 3D1B9CFF29C157620008D01A /* PlaceholderTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9CFE29C157620008D01A /* PlaceholderTextView.m */; };
  38. 3D1B9D0229C16DD00008D01A /* SLTargetModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9D0129C16DD00008D01A /* SLTargetModel.m */; };
  39. 3D1B9D0529C1A14A0008D01A /* UIImagePickerController+YMBlocks.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9D0429C1A14A0008D01A /* UIImagePickerController+YMBlocks.m */; };
  40. 3D1B9D0829C1B7A90008D01A /* SLImagePickerAndUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9D0729C1B7A90008D01A /* SLImagePickerAndUpload.m */; };
  41. 3D1B9D0C29C2A1360008D01A /* SLPlaceholderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1B9D0A29C2A1360008D01A /* SLPlaceholderCell.m */; };
  42. 3D1B9D0D29C2A1360008D01A /* SLPlaceholderCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D1B9D0B29C2A1360008D01A /* SLPlaceholderCell.xib */; };
  43. 3D1F17AE2A0DE55D00F030AD /* SLLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1F17AD2A0DE55D00F030AD /* SLLocationManager.m */; };
  44. 3D1F17B22A0DE60100F030AD /* JZLocationConverter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D1F17B02A0DE60100F030AD /* JZLocationConverter.m */; };
  45. 3D24986529AC7224003C3AFA /* SLBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24986429AC7224003C3AFA /* SLBaseViewController.m */; };
  46. 3D24986C29AC72E2003C3AFA /* SLLoginVCViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24986A29AC72E2003C3AFA /* SLLoginVCViewController.m */; };
  47. 3D24986D29AC72E2003C3AFA /* SLLoginVCViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D24986B29AC72E2003C3AFA /* SLLoginVCViewController.xib */; };
  48. 3D24987429AC7909003C3AFA /* UIViewController+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24987329AC7909003C3AFA /* UIViewController+Extension.m */; };
  49. 3D24D40229DE96A700014D1C /* SLAddressBookVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24D40029DE96A700014D1C /* SLAddressBookVc.m */; };
  50. 3D24D40329DE96A700014D1C /* SLAddressBookVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D24D40129DE96A700014D1C /* SLAddressBookVc.xib */; };
  51. 3D24D40729DEAF3200014D1C /* SLCreatMomentsVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24D40529DEAF3200014D1C /* SLCreatMomentsVc.m */; };
  52. 3D24D40829DEAF3200014D1C /* SLCreatMomentsVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D24D40629DEAF3200014D1C /* SLCreatMomentsVc.xib */; };
  53. 3D24D41029DEB23C00014D1C /* ZLPhotoBrowerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24D40B29DEB23C00014D1C /* ZLPhotoBrowerModel.m */; };
  54. 3D24D41129DEB23C00014D1C /* ZLPhotoBrowerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24D40D29DEB23C00014D1C /* ZLPhotoBrowerView.m */; };
  55. 3D24D41229DEB23C00014D1C /* ImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24D40F29DEB23C00014D1C /* ImageCell.m */; };
  56. 3D24D67B29DFA1F100014D1C /* SLRemidLookView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D24D67A29DFA1F100014D1C /* SLRemidLookView.m */; };
  57. 3D24D67D29DFA23200014D1C /* SLRemidLookView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D24D67C29DFA23200014D1C /* SLRemidLookView.xib */; };
  58. 3D25105629AC8FE1000AE530 /* SLRegistViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25105429AC8FE1000AE530 /* SLRegistViewController.m */; };
  59. 3D25105729AC8FE1000AE530 /* SLRegistViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D25105529AC8FE1000AE530 /* SLRegistViewController.xib */; };
  60. 3D25105B29AC9475000AE530 /* SLForgetPWViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25105929AC9475000AE530 /* SLForgetPWViewController.m */; };
  61. 3D25105C29AC9475000AE530 /* SLForgetPWViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D25105A29AC9475000AE530 /* SLForgetPWViewController.xib */; };
  62. 3D25106029AC95A9000AE530 /* SLRetrievePWViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25105E29AC95A9000AE530 /* SLRetrievePWViewController.m */; };
  63. 3D25106129AC95A9000AE530 /* SLRetrievePWViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D25105F29AC95A9000AE530 /* SLRetrievePWViewController.xib */; };
  64. 3D25106529AC9694000AE530 /* SLBaseNavigationController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25106429AC9694000AE530 /* SLBaseNavigationController.m */; };
  65. 3D25106929ACA629000AE530 /* SLVerifiButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25106729ACA629000AE530 /* SLVerifiButton.m */; };
  66. 3D25106F29AD8AA9000AE530 /* SLRoleLabelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25106D29AD8AA9000AE530 /* SLRoleLabelViewController.m */; };
  67. 3D25107029AD8AA9000AE530 /* SLRoleLabelViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D25106E29AD8AA9000AE530 /* SLRoleLabelViewController.xib */; };
  68. 3D25107729AD8C13000AE530 /* RoleModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25107629AD8C13000AE530 /* RoleModel.m */; };
  69. 3D25107A29AD8DB0000AE530 /* SLPageControlSlideRound.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25107829AD8DB0000AE530 /* SLPageControlSlideRound.m */; };
  70. 3D25107E29AD8FF1000AE530 /* SLPageControlView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25107D29AD8FF1000AE530 /* SLPageControlView.m */; };
  71. 3D25108129AD9999000AE530 /* UIColor+YMAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25107F29AD9999000AE530 /* UIColor+YMAdditions.m */; };
  72. 3D25108429ADA027000AE530 /* SLInterestView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25108329ADA027000AE530 /* SLInterestView.m */; };
  73. 3D25108829ADD46C000AE530 /* SLRoleLabelView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25108729ADD46C000AE530 /* SLRoleLabelView.m */; };
  74. 3D25108A29ADD490000AE530 /* SLRoleLabelView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D25108929ADD490000AE530 /* SLRoleLabelView.xib */; };
  75. 3D25109129ADD729000AE530 /* SLCustomSegment.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25108F29ADD729000AE530 /* SLCustomSegment.m */; };
  76. 3D25109529AEDD7A000AE530 /* SLRoleCreatSucView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25109429AEDD7A000AE530 /* SLRoleCreatSucView.m */; };
  77. 3D25109729AEDD8F000AE530 /* SLRoleCreatSucView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D25109629AEDD8F000AE530 /* SLRoleCreatSucView.xib */; };
  78. 3D25109D29AEEDBE000AE530 /* UIView+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D25109C29AEEDBE000AE530 /* UIView+Extension.m */; };
  79. 3D2510A729AEF4F0000AE530 /* SLMessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510A529AEF4F0000AE530 /* SLMessageViewController.m */; };
  80. 3D2510A829AEF4F0000AE530 /* SLMessageViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D2510A629AEF4F0000AE530 /* SLMessageViewController.xib */; };
  81. 3D2510AB29AF00E3000AE530 /* NSLayoutConstraint+IBDesignable.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510AA29AF00E3000AE530 /* NSLayoutConstraint+IBDesignable.m */; };
  82. 3D2510B929AF1970000AE530 /* SLHttpCenter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510B129AF1970000AE530 /* SLHttpCenter.m */; };
  83. 3D2510BA29AF1970000AE530 /* SPRequestError.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510B329AF1970000AE530 /* SPRequestError.m */; };
  84. 3D2510BB29AF1970000AE530 /* TFFileUploadManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510B629AF1970000AE530 /* TFFileUploadManager.m */; };
  85. 3D2510BC29AF1970000AE530 /* SPEncryption.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510B829AF1970000AE530 /* SPEncryption.m */; };
  86. 3D2510C029AF1A8F000AE530 /* MBProgressHUD+Addition.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510BE29AF1A8F000AE530 /* MBProgressHUD+Addition.m */; };
  87. 3D2510C429AF1B24000AE530 /* ZFToast.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510C229AF1B24000AE530 /* ZFToast.m */; };
  88. 3D2510C729AF1D29000AE530 /* NSString+Category.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510C629AF1D29000AE530 /* NSString+Category.m */; };
  89. 3D2510CB29AF3306000AE530 /* SLUserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510CA29AF3306000AE530 /* SLUserModel.m */; };
  90. 3D2510CE29AF375B000AE530 /* SLGlobalInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510CD29AF375B000AE530 /* SLGlobalInfo.m */; };
  91. 3D2510D129AF3DC4000AE530 /* SLLoginInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2510D029AF3DC4000AE530 /* SLLoginInfo.m */; };
  92. 3D2D8BD529DE5402009392DA /* AddressBookCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BCF29DE5402009392DA /* AddressBookCell.m */; };
  93. 3D2D8BD629DE5402009392DA /* AddressBookCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D2D8BD129DE5402009392DA /* AddressBookCell.xib */; };
  94. 3D2D8BE929DE55A9009392DA /* NSString+PinYin4Cocoa.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BDE29DE55A9009392DA /* NSString+PinYin4Cocoa.m */; };
  95. 3D2D8BEA29DE55A9009392DA /* PinyinHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BE129DE55A9009392DA /* PinyinHelper.m */; };
  96. 3D2D8BEB29DE55A9009392DA /* HanyuPinyinOutputFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BE329DE55A9009392DA /* HanyuPinyinOutputFormat.m */; };
  97. 3D2D8BEC29DE55A9009392DA /* ChineseToPinyinResource.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BE429DE55A9009392DA /* ChineseToPinyinResource.m */; };
  98. 3D2D8BED29DE55A9009392DA /* PinyinFormatter.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BE529DE55A9009392DA /* PinyinFormatter.m */; };
  99. 3D2D8BEE29DE55A9009392DA /* unicode_to_hanyu_pinyin.txt in Resources */ = {isa = PBXBuildFile; fileRef = 3D2D8BE829DE55A9009392DA /* unicode_to_hanyu_pinyin.txt */; };
  100. 3D2D8BF829DE5AE4009392DA /* SCIndexViewConfiguration.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BF229DE5AE4009392DA /* SCIndexViewConfiguration.m */; };
  101. 3D2D8BF929DE5AE4009392DA /* SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BF429DE5AE4009392DA /* SCIndexView.m */; };
  102. 3D2D8BFA29DE5AE5009392DA /* UITableView+SCIndexView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8BF629DE5AE4009392DA /* UITableView+SCIndexView.m */; };
  103. 3D2D8C0329DE7288009392DA /* SLCustNavView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8C0129DE7287009392DA /* SLCustNavView.m */; };
  104. 3D2D8C0729DE7404009392DA /* LeftImageDesignTxtxField.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2D8C0529DE7404009392DA /* LeftImageDesignTxtxField.m */; };
  105. 3D2DC3B529B06D6D0041A729 /* nuisdk.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D2DC3B329B06D200041A729 /* nuisdk.framework */; };
  106. 3D2DC3B629B06D6D0041A729 /* nuisdk.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 3D2DC3B329B06D200041A729 /* nuisdk.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
  107. 3D2DC3BF29B0709F0041A729 /* NLSRingBuffer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3BB29B0709F0041A729 /* NLSRingBuffer.mm */; };
  108. 3D2DC3C029B0709F0041A729 /* NLSVoiceRecorder.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3BC29B0709F0041A729 /* NLSVoiceRecorder.m */; };
  109. 3D2DC3C129B0709F0041A729 /* NLSPlayAudio.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3BE29B0709F0041A729 /* NLSPlayAudio.mm */; };
  110. 3D2DC3C429B0716E0041A729 /* SLNuisdkPlay.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3C329B0716E0041A729 /* SLNuisdkPlay.m */; };
  111. 3D2DC3C629B078FE0041A729 /* Resources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 3D2DC3C529B078FE0041A729 /* Resources.bundle */; };
  112. 3D2DC3C929B07A6F0041A729 /* NuiSdkUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3C729B07A6F0041A729 /* NuiSdkUtils.m */; };
  113. 3D2DC3DB29B0991E0041A729 /* YMNextGrowingTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3CE29B0991E0041A729 /* YMNextGrowingTextView.m */; };
  114. 3D2DC3DC29B0991E0041A729 /* YMCustServiceAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3CF29B0991E0041A729 /* YMCustServiceAlertView.m */; };
  115. 3D2DC3DD29B0991E0041A729 /* YMNextGrowingInternalTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3D029B0991E0041A729 /* YMNextGrowingInternalTextView.m */; };
  116. 3D2DC3DE29B0991E0041A729 /* YMIMBaseMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3D429B0991E0041A729 /* YMIMBaseMessageCell.m */; };
  117. 3D2DC3DF29B0991E0041A729 /* YMIMHintView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3D529B0991E0041A729 /* YMIMHintView.m */; };
  118. 3D2DC3E029B0991E0041A729 /* YMIMMessageCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3D629B0991E0041A729 /* YMIMMessageCollectionView.m */; };
  119. 3D2DC3E429B099B50041A729 /* YMChatBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3E229B099B50041A729 /* YMChatBottomView.m */; };
  120. 3D2DC3E729B099C90041A729 /* YMChatServiceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3E629B099C90041A729 /* YMChatServiceView.m */; };
  121. 3D2DC3EA29B09B070041A729 /* UICollectionView+YMHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3E829B09B070041A729 /* UICollectionView+YMHelper.m */; };
  122. 3D2DC3ED29B09B3B0041A729 /* UICollectionViewCell+YMHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3EB29B09B3B0041A729 /* UICollectionViewCell+YMHelper.m */; };
  123. 3D2DC3F129B191C80041A729 /* MessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3F029B191C80041A729 /* MessageModel.m */; };
  124. 3D2DC3F429B1E6320041A729 /* SLMikeInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D2DC3F329B1E6320041A729 /* SLMikeInputView.m */; };
  125. 3D2DC3F629B1E6510041A729 /* SLMikeInputView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D2DC3F529B1E6510041A729 /* SLMikeInputView.xib */; };
  126. 3D3BC1C02A2587D700AEEE8E /* SLNewMsgBgView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3BC1BF2A2587D700AEEE8E /* SLNewMsgBgView.m */; };
  127. 3D3BC1C22A2587E900AEEE8E /* SLNewMsgBgView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D3BC1C12A2587E900AEEE8E /* SLNewMsgBgView.xib */; };
  128. 3D3BC1C62A25903700AEEE8E /* SLMomentsNewsVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3BC1C42A25903700AEEE8E /* SLMomentsNewsVc.m */; };
  129. 3D3BC1C72A25903700AEEE8E /* SLMomentsNewsVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D3BC1C52A25903700AEEE8E /* SLMomentsNewsVc.xib */; };
  130. 3D3BC1CC2A25933400AEEE8E /* SLMomentsNewsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3BC1CA2A25933400AEEE8E /* SLMomentsNewsCell.m */; };
  131. 3D3BC1CD2A25933400AEEE8E /* SLMomentsNewsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D3BC1CB2A25933400AEEE8E /* SLMomentsNewsCell.xib */; };
  132. 3D3BC34B2A25E73800AEEE8E /* icon_yb_bg.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 3D3BC34A2A25E73800AEEE8E /* icon_yb_bg.jpg */; };
  133. 3D3BC34F2A26D7D300AEEE8E /* SLAiSetVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3BC34D2A26D7D300AEEE8E /* SLAiSetVc.m */; };
  134. 3D3BC3502A26D7D300AEEE8E /* SLAiSetVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D3BC34E2A26D7D300AEEE8E /* SLAiSetVc.xib */; };
  135. 3D3BC3542A26E2B000AEEE8E /* SLMySpeedCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3BC3522A26E2B000AEEE8E /* SLMySpeedCell.m */; };
  136. 3D3BC3552A26E2B000AEEE8E /* SLMySpeedCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D3BC3532A26E2B000AEEE8E /* SLMySpeedCell.xib */; };
  137. 3D3BC35A2A27283600AEEE8E /* SLSexSetVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D3BC3582A27283600AEEE8E /* SLSexSetVc.m */; };
  138. 3D3BC35B2A27283600AEEE8E /* SLSexSetVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D3BC3592A27283600AEEE8E /* SLSexSetVc.xib */; };
  139. 3D3BC35D2A273E7500AEEE8E /* icon_yb_bg_01.jpg in Resources */ = {isa = PBXBuildFile; fileRef = 3D3BC35C2A273E7400AEEE8E /* icon_yb_bg_01.jpg */; };
  140. 3D58825D2A28397D00F1B38E /* SLCitySetVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D58825B2A28397D00F1B38E /* SLCitySetVc.m */; };
  141. 3D58825E2A28397D00F1B38E /* SLCitySetVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D58825C2A28397D00F1B38E /* SLCitySetVc.xib */; };
  142. 3D58828B2A2976CD00F1B38E /* SLMsgBgSetVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5882892A2976CD00F1B38E /* SLMsgBgSetVc.m */; };
  143. 3D58828C2A2976CD00F1B38E /* SLMsgBgSetVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D58828A2A2976CD00F1B38E /* SLMsgBgSetVc.xib */; };
  144. 3D58829F2A29C17D00F1B38E /* SLMomentsNewsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D58829E2A29C17D00F1B38E /* SLMomentsNewsModel.m */; };
  145. 3D5BC38B29E3E77400748197 /* SLMoentsChatView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5BC38A29E3E77400748197 /* SLMoentsChatView.m */; };
  146. 3D5BC38F29E3F87100748197 /* SLFriensInfoVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D5BC38D29E3F87100748197 /* SLFriensInfoVc.m */; };
  147. 3D5BC39029E3F87100748197 /* SLFriensInfoVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D5BC38E29E3F87100748197 /* SLFriensInfoVc.xib */; };
  148. 3D6EE45329F2568000B02EBB /* SLRecomFriendsVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D6EE45129F2568000B02EBB /* SLRecomFriendsVc.m */; };
  149. 3D6EE45429F2568000B02EBB /* SLRecomFriendsVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D6EE45229F2568000B02EBB /* SLRecomFriendsVc.xib */; };
  150. 3D6EE45829F25AB400B02EBB /* SLRecomFriendsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D6EE45629F25AB400B02EBB /* SLRecomFriendsCell.m */; };
  151. 3D6EE45929F25AB400B02EBB /* SLRecomFriendsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D6EE45729F25AB400B02EBB /* SLRecomFriendsCell.xib */; };
  152. 3D6EE45C29F27BCB00B02EBB /* SLRecomFriendModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D6EE45B29F27BCB00B02EBB /* SLRecomFriendModel.m */; };
  153. 3D796C6C29B8305C00B7B28A /* NSObject+FBKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D796C6929B8305C00B7B28A /* NSObject+FBKVOController.m */; };
  154. 3D796C6D29B8305C00B7B28A /* FBKVOController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D796C6A29B8305C00B7B28A /* FBKVOController.m */; };
  155. 3D8515D729CD92A400418BAB /* JXCategoryTitleBackgroundCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8515D129CD92A400418BAB /* JXCategoryTitleBackgroundCellModel.m */; };
  156. 3D8515D829CD92A400418BAB /* JXCategoryTitleBackgroundCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8515D229CD92A400418BAB /* JXCategoryTitleBackgroundCell.m */; };
  157. 3D8515D929CD92A400418BAB /* JXCategoryTitleBackgroundView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8515D429CD92A400418BAB /* JXCategoryTitleBackgroundView.m */; };
  158. 3D8C9F7C29AC57F200678283 /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3D8C9F7B29AC57F200678283 /* AppDelegate.mm */; };
  159. 3D8C9F8229AC57F200678283 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8C9F8129AC57F200678283 /* ViewController.m */; };
  160. 3D8C9F8529AC57F200678283 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3D8C9F8329AC57F200678283 /* Main.storyboard */; };
  161. 3D8C9F8729AC57F300678283 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3D8C9F8629AC57F300678283 /* Assets.xcassets */; };
  162. 3D8C9F8A29AC57F300678283 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3D8C9F8829AC57F300678283 /* LaunchScreen.storyboard */; };
  163. 3D8C9F8D29AC57F300678283 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8C9F8C29AC57F300678283 /* main.m */; };
  164. 3D8EBBC72A131FA40008B0C1 /* SLHomeMsgTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8EBBC52A131FA40008B0C1 /* SLHomeMsgTableViewCell.m */; };
  165. 3D8EBBC82A131FA40008B0C1 /* SLHomeMsgTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D8EBBC62A131FA40008B0C1 /* SLHomeMsgTableViewCell.xib */; };
  166. 3D8EBBCD2A14B6EC0008B0C1 /* SLWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D8EBBCB2A14B6EC0008B0C1 /* SLWebViewController.m */; };
  167. 3D8EBBCE2A14B6EC0008B0C1 /* SLWebViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3D8EBBCC2A14B6EC0008B0C1 /* SLWebViewController.xib */; };
  168. 3D9961F929CD2EFE0076DBD1 /* SLNestSubjectViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D9961F529CD2EFD0076DBD1 /* SLNestSubjectViewController.m */; };
  169. 3D9961FA29CD2EFE0076DBD1 /* SLNestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D9961F829CD2EFE0076DBD1 /* SLNestViewController.m */; };
  170. 3D9961FD29CD2FB00076DBD1 /* SLContentBaseViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D9961FB29CD2FAF0076DBD1 /* SLContentBaseViewController.m */; };
  171. 3D99620029CD2FFA0076DBD1 /* SLListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D9961FF29CD2FFA0076DBD1 /* SLListViewController.m */; };
  172. 3DA2C73829CAA9C30087CDB4 /* TokenHttpRequest.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA2C73629CAA9C30087CDB4 /* TokenHttpRequest.m */; };
  173. 3DA2C73929CAA9C30087CDB4 /* AccessToken.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA2C73729CAA9C30087CDB4 /* AccessToken.m */; };
  174. 3DA2C73C29CBE4DD0087CDB4 /* SLRoleappearanceView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA2C73B29CBE4DD0087CDB4 /* SLRoleappearanceView.m */; };
  175. 3DA5AF5C29B8843C009E4925 /* SLBaseTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5AF5A29B8843C009E4925 /* SLBaseTabBarController.m */; };
  176. 3DA5AF6129B8875A009E4925 /* SLHomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5AF5F29B8875A009E4925 /* SLHomeViewController.m */; };
  177. 3DA5AF6229B8875A009E4925 /* SLHomeViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DA5AF6029B8875A009E4925 /* SLHomeViewController.xib */; };
  178. 3DA5AF6929B88875009E4925 /* SLLxViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5AF6729B88875009E4925 /* SLLxViewController.m */; };
  179. 3DA5AF6A29B88875009E4925 /* SLLxViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DA5AF6829B88875009E4925 /* SLLxViewController.xib */; };
  180. 3DA5AF6F29B88898009E4925 /* SLMyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5AF6D29B88898009E4925 /* SLMyViewController.m */; };
  181. 3DA5AF7029B88898009E4925 /* SLMyViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DA5AF6E29B88898009E4925 /* SLMyViewController.xib */; };
  182. 3DA5AF7429B96726009E4925 /* SLMeHeaderCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5AF7229B96726009E4925 /* SLMeHeaderCollectionViewCell.m */; };
  183. 3DA5AF7829B96B33009E4925 /* SLBaseMainView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5AF7729B96B33009E4925 /* SLBaseMainView.m */; };
  184. 3DA5AF7C29B96B55009E4925 /* SLPageViewModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5AF7A29B96B55009E4925 /* SLPageViewModel.m */; };
  185. 3DA5AF7F29B96E11009E4925 /* SLPageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DA5AF7E29B96E11009E4925 /* SLPageModel.m */; };
  186. 3DB069F829F7A71F005730D7 /* SLFriendPowerVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB069F629F7A71F005730D7 /* SLFriendPowerVc.m */; };
  187. 3DB069F929F7A71F005730D7 /* SLFriendPowerVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DB069F729F7A71F005730D7 /* SLFriendPowerVc.xib */; };
  188. 3DB0AE1629D6B64200671744 /* NullSafe.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB0AE1529D6B64200671744 /* NullSafe.m */; };
  189. 3DB97D3E29D6A86E00B12754 /* SDTimeLineCellModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D2629D6A86D00B12754 /* SDTimeLineCellModel.m */; };
  190. 3DB97D3F29D6A86E00B12754 /* SDTimeLineCellOperationMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D2A29D6A86D00B12754 /* SDTimeLineCellOperationMenu.m */; };
  191. 3DB97D4029D6A86E00B12754 /* SDTimeLineCellCommentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D2D29D6A86D00B12754 /* SDTimeLineCellCommentView.m */; };
  192. 3DB97D4229D6A86E00B12754 /* SDTimeLineTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D3229D6A86D00B12754 /* SDTimeLineTableHeaderView.m */; };
  193. 3DB97D4329D6A86E00B12754 /* SDTimeLineCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D3629D6A86D00B12754 /* SDTimeLineCell.m */; };
  194. 3DB97D4429D6A86E00B12754 /* SDTimeLineRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D3829D6A86D00B12754 /* SDTimeLineRefreshHeader.m */; };
  195. 3DB97D4529D6A86E00B12754 /* SDWeiXinPhotoContainerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D3B29D6A86D00B12754 /* SDWeiXinPhotoContainerView.m */; };
  196. 3DB97D4C29D6AAC500B12754 /* UIView+SDAutoLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D4729D6AAC500B12754 /* UIView+SDAutoLayout.m */; };
  197. 3DB97D4D29D6AAC500B12754 /* UITableView+SDAutoTableViewCellHeight.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D4A29D6AAC500B12754 /* UITableView+SDAutoTableViewCellHeight.m */; };
  198. 3DB97D5129D6AAF900B12754 /* SDBaseRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D5029D6AAF900B12754 /* SDBaseRefreshView.m */; };
  199. 3DB97D5A29D6AB2300B12754 /* SDPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D5429D6AB2200B12754 /* SDPhotoBrowser.m */; };
  200. 3DB97D5B29D6AB2300B12754 /* SDWaitingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D5529D6AB2200B12754 /* SDWaitingView.m */; };
  201. 3DB97D5C29D6AB2300B12754 /* SDBrowserImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D5629D6AB2200B12754 /* SDBrowserImageView.m */; };
  202. 3DB97D6B29D6ABC100B12754 /* SDRefreshHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D6429D6ABC000B12754 /* SDRefreshHeaderView.m */; };
  203. 3DB97D6C29D6ABC100B12754 /* sdRefeshView_arrow@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 3DB97D6529D6ABC000B12754 /* sdRefeshView_arrow@2x.png */; };
  204. 3DB97D6D29D6ABC100B12754 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D6629D6ABC000B12754 /* UIView+SDExtension.m */; };
  205. 3DB97D6E29D6ABC100B12754 /* SDRefreshFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D6729D6ABC000B12754 /* SDRefreshFooterView.m */; };
  206. 3DB97D6F29D6ABC100B12754 /* SDRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D6A29D6ABC000B12754 /* SDRefreshView.m */; };
  207. 3DB97D9529D6ABF000B12754 /* MLEmoji_Expression.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3DB97D7229D6ABEF00B12754 /* MLEmoji_Expression.plist */; };
  208. 3DB97D9629D6ABF000B12754 /* MLEmoji_Expression.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 3DB97D7329D6ABEF00B12754 /* MLEmoji_Expression.bundle */; };
  209. 3DB97D9729D6ABF000B12754 /* MLEmoji_ExpressionImage.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3DB97D7429D6ABEF00B12754 /* MLEmoji_ExpressionImage.plist */; };
  210. 3DB97D9829D6ABF000B12754 /* MLEmojiLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D7529D6ABEF00B12754 /* MLEmojiLabel.m */; };
  211. 3DB97D9929D6ABF000B12754 /* TTTAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D7829D6ABEF00B12754 /* TTTAttributedLabel.m */; };
  212. 3DB97D9A29D6ABF000B12754 /* LICENSE in Resources */ = {isa = PBXBuildFile; fileRef = 3DB97D7A29D6ABEF00B12754 /* LICENSE */; };
  213. 3DB97D9B29D6ABF000B12754 /* NSMutableAttributedString+MLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D7E29D6ABEF00B12754 /* NSMutableAttributedString+MLLabel.m */; };
  214. 3DB97D9C29D6ABF000B12754 /* NSString+MLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D8129D6ABEF00B12754 /* NSString+MLLabel.m */; };
  215. 3DB97D9D29D6ABF000B12754 /* NSAttributedString+MLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D8329D6ABEF00B12754 /* NSAttributedString+MLLabel.m */; };
  216. 3DB97D9E29D6ABF000B12754 /* MLLinkLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D8529D6ABEF00B12754 /* MLLinkLabel.m */; };
  217. 3DB97D9F29D6ABF000B12754 /* NSAttributedString+MLExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D8829D6ABEF00B12754 /* NSAttributedString+MLExpression.m */; };
  218. 3DB97DA029D6ABF000B12754 /* MLTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D8929D6ABEF00B12754 /* MLTextAttachment.m */; };
  219. 3DB97DA129D6ABF000B12754 /* NSString+MLExpression.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D8C29D6ABEF00B12754 /* NSString+MLExpression.m */; };
  220. 3DB97DA229D6ABF000B12754 /* MLExpressionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D8E29D6ABEF00B12754 /* MLExpressionManager.m */; };
  221. 3DB97DA329D6ABF000B12754 /* MLLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D8F29D6ABEF00B12754 /* MLLabel.m */; };
  222. 3DB97DA429D6ABF000B12754 /* MLLabelLayoutManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97D9129D6ABEF00B12754 /* MLLabelLayoutManager.m */; };
  223. 3DB97DA529D6ABF000B12754 /* README.md in Resources */ = {isa = PBXBuildFile; fileRef = 3DB97D9429D6ABEF00B12754 /* README.md */; };
  224. 3DB97DA929D6AC0A00B12754 /* LEETheme.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DB97DA829D6AC0A00B12754 /* LEETheme.m */; };
  225. 3DBC3BC32A0B644600E8C766 /* SLNearbyPeopleVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DBC3BC12A0B644600E8C766 /* SLNearbyPeopleVc.m */; };
  226. 3DBC3BC42A0B644600E8C766 /* SLNearbyPeopleVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DBC3BC22A0B644600E8C766 /* SLNearbyPeopleVc.xib */; };
  227. 3DBC3BC82A0B650300E8C766 /* SLNearbyPeopleCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DBC3BC62A0B650300E8C766 /* SLNearbyPeopleCell.m */; };
  228. 3DBC3BC92A0B650300E8C766 /* SLNearbyPeopleCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DBC3BC72A0B650300E8C766 /* SLNearbyPeopleCell.xib */; };
  229. 3DE9967929E915BF00C50A83 /* SLMomentsVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DE9967729E915BF00C50A83 /* SLMomentsVc.m */; };
  230. 3DE9967A29E915BF00C50A83 /* SLMomentsVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DE9967829E915BF00C50A83 /* SLMomentsVc.xib */; };
  231. 3DE9968329EE72D300C50A83 /* SLAddFriendVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DE9968129EE72D300C50A83 /* SLAddFriendVc.m */; };
  232. 3DE9968429EE72D300C50A83 /* SLAddFriendVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DE9968229EE72D300C50A83 /* SLAddFriendVc.xib */; };
  233. 3DF3DAA129B98A7D00CAD3AB /* SLMyView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DA9F29B98A7D00CAD3AB /* SLMyView.m */; };
  234. 3DF3DAA429B9A68800CAD3AB /* SLBaseCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAA329B9A68800CAD3AB /* SLBaseCellView.m */; };
  235. 3DF3DAA829B9A6AA00CAD3AB /* SLBaseCellView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAA729B9A6AA00CAD3AB /* SLBaseCellView.xib */; };
  236. 3DF3DAAD29B9AA3400CAD3AB /* SLMyListCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAAB29B9AA3400CAD3AB /* SLMyListCollectionViewCell.m */; };
  237. 3DF3DAAE29B9AA3400CAD3AB /* SLMyListCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAAC29B9AA3400CAD3AB /* SLMyListCollectionViewCell.xib */; };
  238. 3DF3DAB229B9B86200CAD3AB /* SLUserCenterViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAB029B9B86200CAD3AB /* SLUserCenterViewController.m */; };
  239. 3DF3DAB329B9B86200CAD3AB /* SLUserCenterViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAB129B9B86200CAD3AB /* SLUserCenterViewController.xib */; };
  240. 3DF3DAB729B9B93000CAD3AB /* SLBaseCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAB529B9B93000CAD3AB /* SLBaseCollectionViewCell.m */; };
  241. 3DF3DAB829B9B93000CAD3AB /* SLBaseCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAB629B9B93000CAD3AB /* SLBaseCollectionViewCell.xib */; };
  242. 3DF3DAC229B9C6E000CAD3AB /* YMBarButtonItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DABD29B9C6E000CAD3AB /* YMBarButtonItem.m */; };
  243. 3DF3DAC329B9C6E000CAD3AB /* YMBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DABE29B9C6E000CAD3AB /* YMBarItem.m */; };
  244. 3DF3DAC429B9C6E000CAD3AB /* YMBarItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DABF29B9C6E000CAD3AB /* YMBarItemView.m */; };
  245. 3DF3DAC529B9C6E000CAD3AB /* YMNavigationBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAC029B9C6E000CAD3AB /* YMNavigationBar.m */; };
  246. 3DF3DAC929B9D19600CAD3AB /* SLBaseTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAC729B9D19600CAD3AB /* SLBaseTableViewCell.m */; };
  247. 3DF3DACA29B9D19600CAD3AB /* SLBaseTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAC829B9D19600CAD3AB /* SLBaseTableViewCell.xib */; };
  248. 3DF3DACD29B9D30A00CAD3AB /* UITableView+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DACC29B9D30A00CAD3AB /* UITableView+Extension.m */; };
  249. 3DF3DAD229BAC90F00CAD3AB /* SLModifyNicknameVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAD029BAC90F00CAD3AB /* SLModifyNicknameVc.m */; };
  250. 3DF3DAD329BAC90F00CAD3AB /* SLModifyNicknameVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAD129BAC90F00CAD3AB /* SLModifyNicknameVc.xib */; };
  251. 3DF3DAD729BAD1BA00CAD3AB /* SLChangeMobileVc.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAD529BAD1BA00CAD3AB /* SLChangeMobileVc.m */; };
  252. 3DF3DAD829BAD1BA00CAD3AB /* SLChangeMobileVc.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAD629BAD1BA00CAD3AB /* SLChangeMobileVc.xib */; };
  253. 3DF3DADB29BAD65500CAD3AB /* SLCustomizeAlert.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAD929BAD65500CAD3AB /* SLCustomizeAlert.m */; };
  254. 3DF3DADE29BAFA0600CAD3AB /* SLMySpeedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DADD29BAFA0600CAD3AB /* SLMySpeedView.m */; };
  255. 3DF3DAE029BAFA4B00CAD3AB /* SLMySpeedView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DADF29BAFA4B00CAD3AB /* SLMySpeedView.xib */; };
  256. 3DF3DAE429BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAE229BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.m */; };
  257. 3DF3DAE529BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAE329BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.xib */; };
  258. 3DF3DAF029BB131100CAD3AB /* RDVTabBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAEA29BB131100CAD3AB /* RDVTabBar.m */; };
  259. 3DF3DAF129BB131100CAD3AB /* RDVTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAEE29BB131100CAD3AB /* RDVTabBarController.m */; };
  260. 3DF3DAF229BB131100CAD3AB /* RDVTabBarItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAEF29BB131100CAD3AB /* RDVTabBarItem.m */; };
  261. 3DF3DAF529BB170F00CAD3AB /* SLHomeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAF429BB170F00CAD3AB /* SLHomeView.m */; };
  262. 3DF3DAFA29BB187D00CAD3AB /* SLHomeTopCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DAF829BB187D00CAD3AB /* SLHomeTopCollectionViewCell.m */; };
  263. 3DF3DAFB29BB187D00CAD3AB /* SLHomeTopCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3DF3DAF929BB187D00CAD3AB /* SLHomeTopCollectionViewCell.xib */; };
  264. 3DF3DB0129BB22CB00CAD3AB /* UIImage+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3DB0029BB22CB00CAD3AB /* UIImage+Extension.m */; };
  265. 3DFEE70B29B5B298000AA7D5 /* SLMikeSegment.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DFEE70A29B5B298000AA7D5 /* SLMikeSegment.m */; };
  266. 3DFEE70E29B5CB01000AA7D5 /* SLMikeSegmentModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DFEE70D29B5CB01000AA7D5 /* SLMikeSegmentModel.m */; };
  267. 3DFEE71129B5D11E000AA7D5 /* UIButton+TitleAndImageLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DFEE70F29B5D11E000AA7D5 /* UIButton+TitleAndImageLayout.m */; };
  268. 3DFEE71429B5DCAD000AA7D5 /* SLNuiSpeechRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DFEE71329B5DCAD000AA7D5 /* SLNuiSpeechRecognizer.m */; };
  269. 3DFEE71729B5E7F9000AA7D5 /* SLAuthorizationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DFEE71529B5E7F9000AA7D5 /* SLAuthorizationManager.m */; };
  270. CE8602C0648DB6886C24C92D /* Pods_SLAiELTS.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CCE37EAEF15FC154202111E3 /* Pods_SLAiELTS.framework */; };
  271. /* End PBXBuildFile section */
  272. /* Begin PBXCopyFilesBuildPhase section */
  273. 3D2DC3B729B06D6D0041A729 /* Embed Frameworks */ = {
  274. isa = PBXCopyFilesBuildPhase;
  275. buildActionMask = 2147483647;
  276. dstPath = "";
  277. dstSubfolderSpec = 10;
  278. files = (
  279. 3D2DC3B629B06D6D0041A729 /* nuisdk.framework in Embed Frameworks */,
  280. );
  281. name = "Embed Frameworks";
  282. runOnlyForDeploymentPostprocessing = 0;
  283. };
  284. /* End PBXCopyFilesBuildPhase section */
  285. /* Begin PBXFileReference section */
  286. 18BFDEB2050A85860206880B /* Pods-SLAiELTS.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SLAiELTS.release.xcconfig"; path = "Target Support Files/Pods-SLAiELTS/Pods-SLAiELTS.release.xcconfig"; sourceTree = "<group>"; };
  287. 3D19CBE829E6480E0041A6B8 /* SLFriendsModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLFriendsModel.h; sourceTree = "<group>"; };
  288. 3D19CBE929E6480E0041A6B8 /* SLFriendsModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLFriendsModel.m; sourceTree = "<group>"; };
  289. 3D19CBEC29E682C20041A6B8 /* SLChatListModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLChatListModel.h; sourceTree = "<group>"; };
  290. 3D19CBED29E682C20041A6B8 /* SLChatListModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLChatListModel.m; sourceTree = "<group>"; };
  291. 3D19CBF029E7ABFD0041A6B8 /* UITableView+Refresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+Refresh.h"; sourceTree = "<group>"; };
  292. 3D19CBF129E7ABFD0041A6B8 /* TTTableViewPlaceView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TTTableViewPlaceView.h; sourceTree = "<group>"; };
  293. 3D19CBF229E7ABFD0041A6B8 /* UITableView+CYLTableViewPlaceHolder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+CYLTableViewPlaceHolder.m"; sourceTree = "<group>"; };
  294. 3D19CBF329E7ABFD0041A6B8 /* UITableView+Refresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+Refresh.m"; sourceTree = "<group>"; };
  295. 3D19CBF429E7ABFD0041A6B8 /* CYLTableViewPlaceHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYLTableViewPlaceHolder.h; sourceTree = "<group>"; };
  296. 3D19CBF529E7ABFD0041A6B8 /* CYLTableViewPlaceHolderDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CYLTableViewPlaceHolderDelegate.h; sourceTree = "<group>"; };
  297. 3D19CBF629E7ABFD0041A6B8 /* TTTableViewPlaceView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TTTableViewPlaceView.m; sourceTree = "<group>"; };
  298. 3D19CBF729E7ABFD0041A6B8 /* UITableView+CYLTableViewPlaceHolder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+CYLTableViewPlaceHolder.h"; sourceTree = "<group>"; };
  299. 3D19CBFB29E7DF6B0041A6B8 /* SLMomentsCommentVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMomentsCommentVc.h; sourceTree = "<group>"; };
  300. 3D19CBFC29E7DF6B0041A6B8 /* SLMomentsCommentVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMomentsCommentVc.m; sourceTree = "<group>"; };
  301. 3D19CBFD29E7DF6B0041A6B8 /* SLMomentsCommentVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMomentsCommentVc.xib; sourceTree = "<group>"; };
  302. 3D19CC0029E7E9340041A6B8 /* SLMomentDetailTableVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMomentDetailTableVc.h; sourceTree = "<group>"; };
  303. 3D19CC0129E7E9340041A6B8 /* SLMomentDetailTableVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMomentDetailTableVc.m; sourceTree = "<group>"; };
  304. 3D1B986329BEAF2F0008D01A /* SLHorScrBtns.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLHorScrBtns.h; sourceTree = "<group>"; };
  305. 3D1B986429BEAF2F0008D01A /* SLHorScrBtns.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLHorScrBtns.m; sourceTree = "<group>"; };
  306. 3D1B986829BEAFEB0008D01A /* SLHorScrBtns.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLHorScrBtns.xib; sourceTree = "<group>"; };
  307. 3D1B986F29BEB35B0008D01A /* SLHorScrBtnsCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLHorScrBtnsCell.h; sourceTree = "<group>"; };
  308. 3D1B987029BEB35B0008D01A /* SLHorScrBtnsCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLHorScrBtnsCell.m; sourceTree = "<group>"; };
  309. 3D1B987129BEB35B0008D01A /* SLHorScrBtnsCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLHorScrBtnsCell.xib; sourceTree = "<group>"; };
  310. 3D1B987529BEE6640008D01A /* SLLxTopView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLLxTopView.h; sourceTree = "<group>"; };
  311. 3D1B987629BEE6640008D01A /* SLLxTopView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLLxTopView.m; sourceTree = "<group>"; };
  312. 3D1B987A29BEE6800008D01A /* SLLxTopView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLLxTopView.xib; sourceTree = "<group>"; };
  313. 3D1B987C29BEEA5A0008D01A /* SLVocabularyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLVocabularyView.h; sourceTree = "<group>"; };
  314. 3D1B987D29BEEA5A0008D01A /* SLVocabularyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLVocabularyView.m; sourceTree = "<group>"; };
  315. 3D1B987F29BEEA670008D01A /* SLVocabularyView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLVocabularyView.xib; sourceTree = "<group>"; };
  316. 3D1B988729BEF1020008D01A /* SLLxTopCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLLxTopCell.h; sourceTree = "<group>"; };
  317. 3D1B988829BEF1020008D01A /* SLLxTopCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLLxTopCell.m; sourceTree = "<group>"; };
  318. 3D1B988929BEF1020008D01A /* SLLxTopCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLLxTopCell.xib; sourceTree = "<group>"; };
  319. 3D1B988C29BEF1AC0008D01A /* SLVocabularyCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLVocabularyCell.h; sourceTree = "<group>"; };
  320. 3D1B988D29BEF1AC0008D01A /* SLVocabularyCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLVocabularyCell.m; sourceTree = "<group>"; };
  321. 3D1B988E29BEF1AC0008D01A /* SLVocabularyCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLVocabularyCell.xib; sourceTree = "<group>"; };
  322. 3D1B989129BEF5960008D01A /* SLLxView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLLxView.h; sourceTree = "<group>"; };
  323. 3D1B989229BEF5960008D01A /* SLLxView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLLxView.m; sourceTree = "<group>"; };
  324. 3D1B989429BF08A70008D01A /* SLLineScaleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLLineScaleView.h; sourceTree = "<group>"; };
  325. 3D1B989529BF08A70008D01A /* SLLineScaleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLLineScaleView.m; sourceTree = "<group>"; };
  326. 3D1B9CE729C01CB00008D01A /* UnityFramework.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UnityFramework.h; sourceTree = "<group>"; };
  327. 3D1B9CE829C01CB00008D01A /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  328. 3D1B9CE929C038280008D01A /* SLTargetViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLTargetViewController.h; sourceTree = "<group>"; };
  329. 3D1B9CEA29C038280008D01A /* SLTargetViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLTargetViewController.m; sourceTree = "<group>"; };
  330. 3D1B9CEB29C038280008D01A /* SLTargetViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLTargetViewController.xib; sourceTree = "<group>"; };
  331. 3D1B9CEE29C03B8B0008D01A /* SLDatePickView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLDatePickView.h; sourceTree = "<group>"; };
  332. 3D1B9CEF29C03B8B0008D01A /* SLDatePickView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLDatePickView.m; sourceTree = "<group>"; };
  333. 3D1B9CF129C044AA0008D01A /* SLPickView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLPickView.h; sourceTree = "<group>"; };
  334. 3D1B9CF229C044AA0008D01A /* SLPickView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLPickView.m; sourceTree = "<group>"; };
  335. 3D1B9CF429C06EC40008D01A /* SLDefaultMacro.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLDefaultMacro.h; sourceTree = "<group>"; };
  336. 3D1B9CF529C071AD0008D01A /* SLFeedbackVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLFeedbackVc.h; sourceTree = "<group>"; };
  337. 3D1B9CF629C071AD0008D01A /* SLFeedbackVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLFeedbackVc.m; sourceTree = "<group>"; };
  338. 3D1B9CF729C071AD0008D01A /* SLFeedbackVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLFeedbackVc.xib; sourceTree = "<group>"; };
  339. 3D1B9CFD29C157620008D01A /* PlaceholderTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PlaceholderTextView.h; sourceTree = "<group>"; };
  340. 3D1B9CFE29C157620008D01A /* PlaceholderTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PlaceholderTextView.m; sourceTree = "<group>"; };
  341. 3D1B9D0029C16DD00008D01A /* SLTargetModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLTargetModel.h; sourceTree = "<group>"; };
  342. 3D1B9D0129C16DD00008D01A /* SLTargetModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLTargetModel.m; sourceTree = "<group>"; };
  343. 3D1B9D0329C1A14A0008D01A /* UIImagePickerController+YMBlocks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImagePickerController+YMBlocks.h"; sourceTree = "<group>"; };
  344. 3D1B9D0429C1A14A0008D01A /* UIImagePickerController+YMBlocks.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImagePickerController+YMBlocks.m"; sourceTree = "<group>"; };
  345. 3D1B9D0629C1B7A90008D01A /* SLImagePickerAndUpload.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLImagePickerAndUpload.h; sourceTree = "<group>"; };
  346. 3D1B9D0729C1B7A90008D01A /* SLImagePickerAndUpload.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLImagePickerAndUpload.m; sourceTree = "<group>"; };
  347. 3D1B9D0929C2A1360008D01A /* SLPlaceholderCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLPlaceholderCell.h; sourceTree = "<group>"; };
  348. 3D1B9D0A29C2A1360008D01A /* SLPlaceholderCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLPlaceholderCell.m; sourceTree = "<group>"; };
  349. 3D1B9D0B29C2A1360008D01A /* SLPlaceholderCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLPlaceholderCell.xib; sourceTree = "<group>"; };
  350. 3D1F17AC2A0DE55D00F030AD /* SLLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLLocationManager.h; sourceTree = "<group>"; };
  351. 3D1F17AD2A0DE55D00F030AD /* SLLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLLocationManager.m; sourceTree = "<group>"; };
  352. 3D1F17B02A0DE60100F030AD /* JZLocationConverter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JZLocationConverter.m; sourceTree = "<group>"; };
  353. 3D1F17B12A0DE60100F030AD /* JZLocationConverter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JZLocationConverter.h; sourceTree = "<group>"; };
  354. 3D24986329AC7224003C3AFA /* SLBaseViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLBaseViewController.h; sourceTree = "<group>"; };
  355. 3D24986429AC7224003C3AFA /* SLBaseViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLBaseViewController.m; sourceTree = "<group>"; };
  356. 3D24986929AC72E2003C3AFA /* SLLoginVCViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLLoginVCViewController.h; sourceTree = "<group>"; };
  357. 3D24986A29AC72E2003C3AFA /* SLLoginVCViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLLoginVCViewController.m; sourceTree = "<group>"; };
  358. 3D24986B29AC72E2003C3AFA /* SLLoginVCViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLLoginVCViewController.xib; sourceTree = "<group>"; };
  359. 3D24986F29AC7405003C3AFA /* PrefixHeader.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
  360. 3D24987229AC7909003C3AFA /* UIViewController+Extension.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIViewController+Extension.h"; sourceTree = "<group>"; };
  361. 3D24987329AC7909003C3AFA /* UIViewController+Extension.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+Extension.m"; sourceTree = "<group>"; };
  362. 3D24D3FF29DE96A700014D1C /* SLAddressBookVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLAddressBookVc.h; sourceTree = "<group>"; };
  363. 3D24D40029DE96A700014D1C /* SLAddressBookVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLAddressBookVc.m; sourceTree = "<group>"; };
  364. 3D24D40129DE96A700014D1C /* SLAddressBookVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLAddressBookVc.xib; sourceTree = "<group>"; };
  365. 3D24D40429DEAF3200014D1C /* SLCreatMomentsVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLCreatMomentsVc.h; sourceTree = "<group>"; };
  366. 3D24D40529DEAF3200014D1C /* SLCreatMomentsVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLCreatMomentsVc.m; sourceTree = "<group>"; };
  367. 3D24D40629DEAF3200014D1C /* SLCreatMomentsVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLCreatMomentsVc.xib; sourceTree = "<group>"; };
  368. 3D24D40A29DEB23C00014D1C /* ZLPhotoBrowerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPhotoBrowerView.h; sourceTree = "<group>"; };
  369. 3D24D40B29DEB23C00014D1C /* ZLPhotoBrowerModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPhotoBrowerModel.m; sourceTree = "<group>"; };
  370. 3D24D40C29DEB23C00014D1C /* ImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageCell.h; sourceTree = "<group>"; };
  371. 3D24D40D29DEB23C00014D1C /* ZLPhotoBrowerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZLPhotoBrowerView.m; sourceTree = "<group>"; };
  372. 3D24D40E29DEB23C00014D1C /* ZLPhotoBrowerModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZLPhotoBrowerModel.h; sourceTree = "<group>"; };
  373. 3D24D40F29DEB23C00014D1C /* ImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageCell.m; sourceTree = "<group>"; };
  374. 3D24D67929DFA1F100014D1C /* SLRemidLookView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRemidLookView.h; sourceTree = "<group>"; };
  375. 3D24D67A29DFA1F100014D1C /* SLRemidLookView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRemidLookView.m; sourceTree = "<group>"; };
  376. 3D24D67C29DFA23200014D1C /* SLRemidLookView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLRemidLookView.xib; sourceTree = "<group>"; };
  377. 3D25105329AC8FE1000AE530 /* SLRegistViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRegistViewController.h; sourceTree = "<group>"; };
  378. 3D25105429AC8FE1000AE530 /* SLRegistViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRegistViewController.m; sourceTree = "<group>"; };
  379. 3D25105529AC8FE1000AE530 /* SLRegistViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLRegistViewController.xib; sourceTree = "<group>"; };
  380. 3D25105829AC9475000AE530 /* SLForgetPWViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLForgetPWViewController.h; sourceTree = "<group>"; };
  381. 3D25105929AC9475000AE530 /* SLForgetPWViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLForgetPWViewController.m; sourceTree = "<group>"; };
  382. 3D25105A29AC9475000AE530 /* SLForgetPWViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLForgetPWViewController.xib; sourceTree = "<group>"; };
  383. 3D25105D29AC95A9000AE530 /* SLRetrievePWViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRetrievePWViewController.h; sourceTree = "<group>"; };
  384. 3D25105E29AC95A9000AE530 /* SLRetrievePWViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRetrievePWViewController.m; sourceTree = "<group>"; };
  385. 3D25105F29AC95A9000AE530 /* SLRetrievePWViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLRetrievePWViewController.xib; sourceTree = "<group>"; };
  386. 3D25106329AC9694000AE530 /* SLBaseNavigationController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLBaseNavigationController.h; sourceTree = "<group>"; };
  387. 3D25106429AC9694000AE530 /* SLBaseNavigationController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLBaseNavigationController.m; sourceTree = "<group>"; };
  388. 3D25106729ACA629000AE530 /* SLVerifiButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLVerifiButton.m; sourceTree = "<group>"; };
  389. 3D25106829ACA629000AE530 /* SLVerifiButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLVerifiButton.h; sourceTree = "<group>"; };
  390. 3D25106C29AD8AA9000AE530 /* SLRoleLabelViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRoleLabelViewController.h; sourceTree = "<group>"; };
  391. 3D25106D29AD8AA9000AE530 /* SLRoleLabelViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRoleLabelViewController.m; sourceTree = "<group>"; };
  392. 3D25106E29AD8AA9000AE530 /* SLRoleLabelViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLRoleLabelViewController.xib; sourceTree = "<group>"; };
  393. 3D25107529AD8C13000AE530 /* RoleModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = RoleModel.h; sourceTree = "<group>"; };
  394. 3D25107629AD8C13000AE530 /* RoleModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = RoleModel.m; sourceTree = "<group>"; };
  395. 3D25107829AD8DB0000AE530 /* SLPageControlSlideRound.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLPageControlSlideRound.m; sourceTree = "<group>"; };
  396. 3D25107929AD8DB0000AE530 /* SLPageControlSlideRound.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLPageControlSlideRound.h; sourceTree = "<group>"; };
  397. 3D25107C29AD8FF1000AE530 /* SLPageControlView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLPageControlView.h; sourceTree = "<group>"; };
  398. 3D25107D29AD8FF1000AE530 /* SLPageControlView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLPageControlView.m; sourceTree = "<group>"; };
  399. 3D25107F29AD9999000AE530 /* UIColor+YMAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+YMAdditions.m"; sourceTree = "<group>"; };
  400. 3D25108029AD9999000AE530 /* UIColor+YMAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+YMAdditions.h"; sourceTree = "<group>"; };
  401. 3D25108229ADA027000AE530 /* SLInterestView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLInterestView.h; sourceTree = "<group>"; };
  402. 3D25108329ADA027000AE530 /* SLInterestView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLInterestView.m; sourceTree = "<group>"; };
  403. 3D25108529ADB1E2000AE530 /* YMConstMacro.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = YMConstMacro.h; sourceTree = "<group>"; };
  404. 3D25108629ADD46C000AE530 /* SLRoleLabelView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRoleLabelView.h; sourceTree = "<group>"; };
  405. 3D25108729ADD46C000AE530 /* SLRoleLabelView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRoleLabelView.m; sourceTree = "<group>"; };
  406. 3D25108929ADD490000AE530 /* SLRoleLabelView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLRoleLabelView.xib; sourceTree = "<group>"; };
  407. 3D25108D29ADD729000AE530 /* SLCustomSegment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLCustomSegment.h; sourceTree = "<group>"; };
  408. 3D25108F29ADD729000AE530 /* SLCustomSegment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLCustomSegment.m; sourceTree = "<group>"; };
  409. 3D25109329AEDD7A000AE530 /* SLRoleCreatSucView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRoleCreatSucView.h; sourceTree = "<group>"; };
  410. 3D25109429AEDD7A000AE530 /* SLRoleCreatSucView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRoleCreatSucView.m; sourceTree = "<group>"; };
  411. 3D25109629AEDD8F000AE530 /* SLRoleCreatSucView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLRoleCreatSucView.xib; sourceTree = "<group>"; };
  412. 3D25109B29AEEDBE000AE530 /* UIView+Extension.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+Extension.h"; sourceTree = "<group>"; };
  413. 3D25109C29AEEDBE000AE530 /* UIView+Extension.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+Extension.m"; sourceTree = "<group>"; };
  414. 3D2510A429AEF4F0000AE530 /* SLMessageViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMessageViewController.h; sourceTree = "<group>"; };
  415. 3D2510A529AEF4F0000AE530 /* SLMessageViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMessageViewController.m; sourceTree = "<group>"; };
  416. 3D2510A629AEF4F0000AE530 /* SLMessageViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMessageViewController.xib; sourceTree = "<group>"; };
  417. 3D2510A929AF00E3000AE530 /* NSLayoutConstraint+IBDesignable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+IBDesignable.h"; sourceTree = "<group>"; };
  418. 3D2510AA29AF00E3000AE530 /* NSLayoutConstraint+IBDesignable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+IBDesignable.m"; sourceTree = "<group>"; };
  419. 3D2510B129AF1970000AE530 /* SLHttpCenter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLHttpCenter.m; sourceTree = "<group>"; };
  420. 3D2510B229AF1970000AE530 /* SPEncryption.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPEncryption.h; sourceTree = "<group>"; };
  421. 3D2510B329AF1970000AE530 /* SPRequestError.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPRequestError.m; sourceTree = "<group>"; };
  422. 3D2510B429AF1970000AE530 /* TFFileUploadManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TFFileUploadManager.h; sourceTree = "<group>"; };
  423. 3D2510B529AF1970000AE530 /* SLHttpCenter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLHttpCenter.h; sourceTree = "<group>"; };
  424. 3D2510B629AF1970000AE530 /* TFFileUploadManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TFFileUploadManager.m; sourceTree = "<group>"; };
  425. 3D2510B729AF1970000AE530 /* SPRequestError.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SPRequestError.h; sourceTree = "<group>"; };
  426. 3D2510B829AF1970000AE530 /* SPEncryption.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SPEncryption.m; sourceTree = "<group>"; };
  427. 3D2510BE29AF1A8F000AE530 /* MBProgressHUD+Addition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+Addition.m"; sourceTree = "<group>"; };
  428. 3D2510BF29AF1A8F000AE530 /* MBProgressHUD+Addition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+Addition.h"; sourceTree = "<group>"; };
  429. 3D2510C229AF1B24000AE530 /* ZFToast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZFToast.m; sourceTree = "<group>"; };
  430. 3D2510C329AF1B24000AE530 /* ZFToast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZFToast.h; sourceTree = "<group>"; };
  431. 3D2510C529AF1D29000AE530 /* NSString+Category.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Category.h"; sourceTree = "<group>"; };
  432. 3D2510C629AF1D29000AE530 /* NSString+Category.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Category.m"; sourceTree = "<group>"; };
  433. 3D2510C929AF3306000AE530 /* SLUserModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLUserModel.h; sourceTree = "<group>"; };
  434. 3D2510CA29AF3306000AE530 /* SLUserModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLUserModel.m; sourceTree = "<group>"; };
  435. 3D2510CC29AF375B000AE530 /* SLGlobalInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLGlobalInfo.h; sourceTree = "<group>"; };
  436. 3D2510CD29AF375B000AE530 /* SLGlobalInfo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLGlobalInfo.m; sourceTree = "<group>"; };
  437. 3D2510CF29AF3DC4000AE530 /* SLLoginInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLLoginInfo.h; sourceTree = "<group>"; };
  438. 3D2510D029AF3DC4000AE530 /* SLLoginInfo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLLoginInfo.m; sourceTree = "<group>"; };
  439. 3D2D8BCB29DE5402009392DA /* AddressBookCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AddressBookCell.h; sourceTree = "<group>"; };
  440. 3D2D8BCF29DE5402009392DA /* AddressBookCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AddressBookCell.m; sourceTree = "<group>"; };
  441. 3D2D8BD129DE5402009392DA /* AddressBookCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AddressBookCell.xib; sourceTree = "<group>"; };
  442. 3D2D8BDC29DE55A9009392DA /* PinyinHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PinyinHelper.h; sourceTree = "<group>"; };
  443. 3D2D8BDD29DE55A9009392DA /* HanyuPinyinOutputFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HanyuPinyinOutputFormat.h; sourceTree = "<group>"; };
  444. 3D2D8BDE29DE55A9009392DA /* NSString+PinYin4Cocoa.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+PinYin4Cocoa.m"; sourceTree = "<group>"; };
  445. 3D2D8BDF29DE55A9009392DA /* ChineseToPinyinResource.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ChineseToPinyinResource.h; sourceTree = "<group>"; };
  446. 3D2D8BE029DE55A9009392DA /* PinyinFormatter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PinyinFormatter.h; sourceTree = "<group>"; };
  447. 3D2D8BE129DE55A9009392DA /* PinyinHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PinyinHelper.m; sourceTree = "<group>"; };
  448. 3D2D8BE229DE55A9009392DA /* NSString+PinYin4Cocoa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+PinYin4Cocoa.h"; sourceTree = "<group>"; };
  449. 3D2D8BE329DE55A9009392DA /* HanyuPinyinOutputFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HanyuPinyinOutputFormat.m; sourceTree = "<group>"; };
  450. 3D2D8BE429DE55A9009392DA /* ChineseToPinyinResource.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ChineseToPinyinResource.m; sourceTree = "<group>"; };
  451. 3D2D8BE529DE55A9009392DA /* PinyinFormatter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PinyinFormatter.m; sourceTree = "<group>"; };
  452. 3D2D8BE629DE55A9009392DA /* PinYin4Objc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PinYin4Objc.h; sourceTree = "<group>"; };
  453. 3D2D8BE829DE55A9009392DA /* unicode_to_hanyu_pinyin.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = unicode_to_hanyu_pinyin.txt; sourceTree = "<group>"; };
  454. 3D2D8BF229DE5AE4009392DA /* SCIndexViewConfiguration.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexViewConfiguration.m; sourceTree = "<group>"; };
  455. 3D2D8BF329DE5AE4009392DA /* UITableView+SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SCIndexView.h"; sourceTree = "<group>"; };
  456. 3D2D8BF429DE5AE4009392DA /* SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SCIndexView.m; sourceTree = "<group>"; };
  457. 3D2D8BF529DE5AE4009392DA /* SCIndexViewConfiguration.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexViewConfiguration.h; sourceTree = "<group>"; };
  458. 3D2D8BF629DE5AE4009392DA /* UITableView+SCIndexView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SCIndexView.m"; sourceTree = "<group>"; };
  459. 3D2D8BF729DE5AE4009392DA /* SCIndexView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SCIndexView.h; sourceTree = "<group>"; };
  460. 3D2D8C0129DE7287009392DA /* SLCustNavView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLCustNavView.m; sourceTree = "<group>"; };
  461. 3D2D8C0229DE7288009392DA /* SLCustNavView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLCustNavView.h; sourceTree = "<group>"; };
  462. 3D2D8C0529DE7404009392DA /* LeftImageDesignTxtxField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LeftImageDesignTxtxField.m; sourceTree = "<group>"; };
  463. 3D2D8C0629DE7404009392DA /* LeftImageDesignTxtxField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LeftImageDesignTxtxField.h; sourceTree = "<group>"; };
  464. 3D2DC3B329B06D200041A729 /* nuisdk.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = nuisdk.framework; sourceTree = "<group>"; };
  465. 3D2DC3B929B0709F0041A729 /* NLSVoiceRecorder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NLSVoiceRecorder.h; sourceTree = "<group>"; };
  466. 3D2DC3BA29B0709F0041A729 /* NLSRingBuffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NLSRingBuffer.h; sourceTree = "<group>"; };
  467. 3D2DC3BB29B0709F0041A729 /* NLSRingBuffer.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = NLSRingBuffer.mm; sourceTree = "<group>"; };
  468. 3D2DC3BC29B0709F0041A729 /* NLSVoiceRecorder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NLSVoiceRecorder.m; sourceTree = "<group>"; };
  469. 3D2DC3BD29B0709F0041A729 /* NLSPlayAudio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NLSPlayAudio.h; sourceTree = "<group>"; };
  470. 3D2DC3BE29B0709F0041A729 /* NLSPlayAudio.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = NLSPlayAudio.mm; sourceTree = "<group>"; };
  471. 3D2DC3C229B0716E0041A729 /* SLNuisdkPlay.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLNuisdkPlay.h; sourceTree = "<group>"; };
  472. 3D2DC3C329B0716E0041A729 /* SLNuisdkPlay.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLNuisdkPlay.m; sourceTree = "<group>"; };
  473. 3D2DC3C529B078FE0041A729 /* Resources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Resources.bundle; sourceTree = "<group>"; };
  474. 3D2DC3C729B07A6F0041A729 /* NuiSdkUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NuiSdkUtils.m; sourceTree = "<group>"; };
  475. 3D2DC3C829B07A6F0041A729 /* NuiSdkUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NuiSdkUtils.h; sourceTree = "<group>"; };
  476. 3D2DC3CC29B0991E0041A729 /* YMCustServiceAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMCustServiceAlertView.h; sourceTree = "<group>"; };
  477. 3D2DC3CD29B0991E0041A729 /* YMNextGrowingInternalTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMNextGrowingInternalTextView.h; sourceTree = "<group>"; };
  478. 3D2DC3CE29B0991E0041A729 /* YMNextGrowingTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMNextGrowingTextView.m; sourceTree = "<group>"; };
  479. 3D2DC3CF29B0991E0041A729 /* YMCustServiceAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMCustServiceAlertView.m; sourceTree = "<group>"; };
  480. 3D2DC3D029B0991E0041A729 /* YMNextGrowingInternalTextView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMNextGrowingInternalTextView.m; sourceTree = "<group>"; };
  481. 3D2DC3D129B0991E0041A729 /* YMNextGrowingTextView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMNextGrowingTextView.h; sourceTree = "<group>"; };
  482. 3D2DC3D429B0991E0041A729 /* YMIMBaseMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMIMBaseMessageCell.m; sourceTree = "<group>"; };
  483. 3D2DC3D529B0991E0041A729 /* YMIMHintView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMIMHintView.m; sourceTree = "<group>"; };
  484. 3D2DC3D629B0991E0041A729 /* YMIMMessageCollectionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMIMMessageCollectionView.m; sourceTree = "<group>"; };
  485. 3D2DC3D729B0991E0041A729 /* YMIMBaseMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMIMBaseMessageCell.h; sourceTree = "<group>"; };
  486. 3D2DC3D929B0991E0041A729 /* YMIMHintView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMIMHintView.h; sourceTree = "<group>"; };
  487. 3D2DC3DA29B0991E0041A729 /* YMIMMessageCollectionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMIMMessageCollectionView.h; sourceTree = "<group>"; };
  488. 3D2DC3E229B099B50041A729 /* YMChatBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMChatBottomView.m; sourceTree = "<group>"; };
  489. 3D2DC3E329B099B50041A729 /* YMChatBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMChatBottomView.h; sourceTree = "<group>"; };
  490. 3D2DC3E529B099C90041A729 /* YMChatServiceView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMChatServiceView.h; sourceTree = "<group>"; };
  491. 3D2DC3E629B099C90041A729 /* YMChatServiceView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMChatServiceView.m; sourceTree = "<group>"; };
  492. 3D2DC3E829B09B070041A729 /* UICollectionView+YMHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionView+YMHelper.m"; sourceTree = "<group>"; };
  493. 3D2DC3E929B09B070041A729 /* UICollectionView+YMHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionView+YMHelper.h"; sourceTree = "<group>"; };
  494. 3D2DC3EB29B09B3B0041A729 /* UICollectionViewCell+YMHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UICollectionViewCell+YMHelper.m"; sourceTree = "<group>"; };
  495. 3D2DC3EC29B09B3B0041A729 /* UICollectionViewCell+YMHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UICollectionViewCell+YMHelper.h"; sourceTree = "<group>"; };
  496. 3D2DC3EF29B191C80041A729 /* MessageModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MessageModel.h; sourceTree = "<group>"; };
  497. 3D2DC3F029B191C80041A729 /* MessageModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MessageModel.m; sourceTree = "<group>"; };
  498. 3D2DC3F229B1E6320041A729 /* SLMikeInputView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMikeInputView.h; sourceTree = "<group>"; };
  499. 3D2DC3F329B1E6320041A729 /* SLMikeInputView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMikeInputView.m; sourceTree = "<group>"; };
  500. 3D2DC3F529B1E6510041A729 /* SLMikeInputView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMikeInputView.xib; sourceTree = "<group>"; };
  501. 3D3BC1BE2A2587D700AEEE8E /* SLNewMsgBgView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLNewMsgBgView.h; sourceTree = "<group>"; };
  502. 3D3BC1BF2A2587D700AEEE8E /* SLNewMsgBgView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLNewMsgBgView.m; sourceTree = "<group>"; };
  503. 3D3BC1C12A2587E900AEEE8E /* SLNewMsgBgView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLNewMsgBgView.xib; sourceTree = "<group>"; };
  504. 3D3BC1C32A25903700AEEE8E /* SLMomentsNewsVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMomentsNewsVc.h; sourceTree = "<group>"; };
  505. 3D3BC1C42A25903700AEEE8E /* SLMomentsNewsVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMomentsNewsVc.m; sourceTree = "<group>"; };
  506. 3D3BC1C52A25903700AEEE8E /* SLMomentsNewsVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMomentsNewsVc.xib; sourceTree = "<group>"; };
  507. 3D3BC1C92A25933400AEEE8E /* SLMomentsNewsCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMomentsNewsCell.h; sourceTree = "<group>"; };
  508. 3D3BC1CA2A25933400AEEE8E /* SLMomentsNewsCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMomentsNewsCell.m; sourceTree = "<group>"; };
  509. 3D3BC1CB2A25933400AEEE8E /* SLMomentsNewsCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMomentsNewsCell.xib; sourceTree = "<group>"; };
  510. 3D3BC34A2A25E73800AEEE8E /* icon_yb_bg.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; path = icon_yb_bg.jpg; sourceTree = "<group>"; };
  511. 3D3BC34C2A26D7D300AEEE8E /* SLAiSetVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLAiSetVc.h; sourceTree = "<group>"; };
  512. 3D3BC34D2A26D7D300AEEE8E /* SLAiSetVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLAiSetVc.m; sourceTree = "<group>"; };
  513. 3D3BC34E2A26D7D300AEEE8E /* SLAiSetVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLAiSetVc.xib; sourceTree = "<group>"; };
  514. 3D3BC3512A26E2B000AEEE8E /* SLMySpeedCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMySpeedCell.h; sourceTree = "<group>"; };
  515. 3D3BC3522A26E2B000AEEE8E /* SLMySpeedCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMySpeedCell.m; sourceTree = "<group>"; };
  516. 3D3BC3532A26E2B000AEEE8E /* SLMySpeedCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMySpeedCell.xib; sourceTree = "<group>"; };
  517. 3D3BC3572A27283600AEEE8E /* SLSexSetVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLSexSetVc.h; sourceTree = "<group>"; };
  518. 3D3BC3582A27283600AEEE8E /* SLSexSetVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLSexSetVc.m; sourceTree = "<group>"; };
  519. 3D3BC3592A27283600AEEE8E /* SLSexSetVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLSexSetVc.xib; sourceTree = "<group>"; };
  520. 3D3BC35C2A273E7400AEEE8E /* icon_yb_bg_01.jpg */ = {isa = PBXFileReference; lastKnownFileType = image.jpeg; name = icon_yb_bg_01.jpg; path = "../../../../../../../Library/Containers/com.tencent.xinWeChat/Data/Library/Application Support/com.tencent.xinWeChat/2.0b4.0.9/1fdfdbd8c9b5653cd014c44cc8275865/Message/MessageTemp/a99af68e196bdd426af09785d58507f6/Image/icon_yb_bg_01.jpg"; sourceTree = "<group>"; };
  521. 3D58825A2A28397D00F1B38E /* SLCitySetVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLCitySetVc.h; sourceTree = "<group>"; };
  522. 3D58825B2A28397D00F1B38E /* SLCitySetVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLCitySetVc.m; sourceTree = "<group>"; };
  523. 3D58825C2A28397D00F1B38E /* SLCitySetVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLCitySetVc.xib; sourceTree = "<group>"; };
  524. 3D5882882A2976CD00F1B38E /* SLMsgBgSetVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMsgBgSetVc.h; sourceTree = "<group>"; };
  525. 3D5882892A2976CD00F1B38E /* SLMsgBgSetVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMsgBgSetVc.m; sourceTree = "<group>"; };
  526. 3D58828A2A2976CD00F1B38E /* SLMsgBgSetVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMsgBgSetVc.xib; sourceTree = "<group>"; };
  527. 3D58829D2A29C17D00F1B38E /* SLMomentsNewsModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMomentsNewsModel.h; sourceTree = "<group>"; };
  528. 3D58829E2A29C17D00F1B38E /* SLMomentsNewsModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMomentsNewsModel.m; sourceTree = "<group>"; };
  529. 3D5BC38929E3E77400748197 /* SLMoentsChatView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMoentsChatView.h; sourceTree = "<group>"; };
  530. 3D5BC38A29E3E77400748197 /* SLMoentsChatView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMoentsChatView.m; sourceTree = "<group>"; };
  531. 3D5BC38C29E3F87100748197 /* SLFriensInfoVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLFriensInfoVc.h; sourceTree = "<group>"; };
  532. 3D5BC38D29E3F87100748197 /* SLFriensInfoVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLFriensInfoVc.m; sourceTree = "<group>"; };
  533. 3D5BC38E29E3F87100748197 /* SLFriensInfoVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLFriensInfoVc.xib; sourceTree = "<group>"; };
  534. 3D6EE45029F2568000B02EBB /* SLRecomFriendsVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRecomFriendsVc.h; sourceTree = "<group>"; };
  535. 3D6EE45129F2568000B02EBB /* SLRecomFriendsVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRecomFriendsVc.m; sourceTree = "<group>"; };
  536. 3D6EE45229F2568000B02EBB /* SLRecomFriendsVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLRecomFriendsVc.xib; sourceTree = "<group>"; };
  537. 3D6EE45529F25AB400B02EBB /* SLRecomFriendsCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRecomFriendsCell.h; sourceTree = "<group>"; };
  538. 3D6EE45629F25AB400B02EBB /* SLRecomFriendsCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRecomFriendsCell.m; sourceTree = "<group>"; };
  539. 3D6EE45729F25AB400B02EBB /* SLRecomFriendsCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLRecomFriendsCell.xib; sourceTree = "<group>"; };
  540. 3D6EE45A29F27BCB00B02EBB /* SLRecomFriendModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRecomFriendModel.h; sourceTree = "<group>"; };
  541. 3D6EE45B29F27BCB00B02EBB /* SLRecomFriendModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRecomFriendModel.m; sourceTree = "<group>"; };
  542. 3D796C6729B8305C00B7B28A /* KVOController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KVOController.h; sourceTree = "<group>"; };
  543. 3D796C6829B8305C00B7B28A /* FBKVOController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FBKVOController.h; sourceTree = "<group>"; };
  544. 3D796C6929B8305C00B7B28A /* NSObject+FBKVOController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+FBKVOController.m"; sourceTree = "<group>"; };
  545. 3D796C6A29B8305C00B7B28A /* FBKVOController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FBKVOController.m; sourceTree = "<group>"; };
  546. 3D796C6B29B8305C00B7B28A /* NSObject+FBKVOController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+FBKVOController.h"; sourceTree = "<group>"; };
  547. 3D8515CE29CD92A400418BAB /* JXCategoryTitleBackgroundCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleBackgroundCell.h; sourceTree = "<group>"; };
  548. 3D8515CF29CD92A400418BAB /* JXCategoryTitleBackgroundView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleBackgroundView.h; sourceTree = "<group>"; };
  549. 3D8515D129CD92A400418BAB /* JXCategoryTitleBackgroundCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleBackgroundCellModel.m; sourceTree = "<group>"; };
  550. 3D8515D229CD92A400418BAB /* JXCategoryTitleBackgroundCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleBackgroundCell.m; sourceTree = "<group>"; };
  551. 3D8515D429CD92A400418BAB /* JXCategoryTitleBackgroundView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = JXCategoryTitleBackgroundView.m; sourceTree = "<group>"; };
  552. 3D8515D529CD92A400418BAB /* JXCategoryTitleBackgroundCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = JXCategoryTitleBackgroundCellModel.h; sourceTree = "<group>"; };
  553. 3D8C9F7729AC57F200678283 /* SLAiELTS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SLAiELTS.app; sourceTree = BUILT_PRODUCTS_DIR; };
  554. 3D8C9F7A29AC57F200678283 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
  555. 3D8C9F7B29AC57F200678283 /* AppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = AppDelegate.mm; sourceTree = "<group>"; };
  556. 3D8C9F8029AC57F200678283 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ViewController.h; sourceTree = "<group>"; };
  557. 3D8C9F8129AC57F200678283 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ViewController.m; sourceTree = "<group>"; };
  558. 3D8C9F8429AC57F200678283 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
  559. 3D8C9F8629AC57F300678283 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
  560. 3D8C9F8929AC57F300678283 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
  561. 3D8C9F8B29AC57F300678283 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  562. 3D8C9F8C29AC57F300678283 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
  563. 3D8EBBC42A131FA40008B0C1 /* SLHomeMsgTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLHomeMsgTableViewCell.h; sourceTree = "<group>"; };
  564. 3D8EBBC52A131FA40008B0C1 /* SLHomeMsgTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLHomeMsgTableViewCell.m; sourceTree = "<group>"; };
  565. 3D8EBBC62A131FA40008B0C1 /* SLHomeMsgTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLHomeMsgTableViewCell.xib; sourceTree = "<group>"; };
  566. 3D8EBBCA2A14B6EC0008B0C1 /* SLWebViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLWebViewController.h; sourceTree = "<group>"; };
  567. 3D8EBBCB2A14B6EC0008B0C1 /* SLWebViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLWebViewController.m; sourceTree = "<group>"; };
  568. 3D8EBBCC2A14B6EC0008B0C1 /* SLWebViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLWebViewController.xib; sourceTree = "<group>"; };
  569. 3D9961F529CD2EFD0076DBD1 /* SLNestSubjectViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLNestSubjectViewController.m; sourceTree = "<group>"; };
  570. 3D9961F629CD2EFD0076DBD1 /* SLNestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLNestViewController.h; sourceTree = "<group>"; };
  571. 3D9961F729CD2EFD0076DBD1 /* SLNestSubjectViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLNestSubjectViewController.h; sourceTree = "<group>"; };
  572. 3D9961F829CD2EFE0076DBD1 /* SLNestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLNestViewController.m; sourceTree = "<group>"; };
  573. 3D9961FB29CD2FAF0076DBD1 /* SLContentBaseViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLContentBaseViewController.m; sourceTree = "<group>"; };
  574. 3D9961FC29CD2FB00076DBD1 /* SLContentBaseViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLContentBaseViewController.h; sourceTree = "<group>"; };
  575. 3D9961FE29CD2FFA0076DBD1 /* SLListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLListViewController.h; sourceTree = "<group>"; };
  576. 3D9961FF29CD2FFA0076DBD1 /* SLListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLListViewController.m; sourceTree = "<group>"; };
  577. 3DA2C73429CAA9C30087CDB4 /* TokenHttpRequest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TokenHttpRequest.h; sourceTree = "<group>"; };
  578. 3DA2C73529CAA9C30087CDB4 /* AccessToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccessToken.h; sourceTree = "<group>"; };
  579. 3DA2C73629CAA9C30087CDB4 /* TokenHttpRequest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TokenHttpRequest.m; sourceTree = "<group>"; };
  580. 3DA2C73729CAA9C30087CDB4 /* AccessToken.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccessToken.m; sourceTree = "<group>"; };
  581. 3DA2C73A29CBE4DD0087CDB4 /* SLRoleappearanceView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLRoleappearanceView.h; sourceTree = "<group>"; };
  582. 3DA2C73B29CBE4DD0087CDB4 /* SLRoleappearanceView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLRoleappearanceView.m; sourceTree = "<group>"; };
  583. 3DA5AF5A29B8843C009E4925 /* SLBaseTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLBaseTabBarController.m; sourceTree = "<group>"; };
  584. 3DA5AF5B29B8843C009E4925 /* SLBaseTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLBaseTabBarController.h; sourceTree = "<group>"; };
  585. 3DA5AF5E29B8875A009E4925 /* SLHomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLHomeViewController.h; sourceTree = "<group>"; };
  586. 3DA5AF5F29B8875A009E4925 /* SLHomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLHomeViewController.m; sourceTree = "<group>"; };
  587. 3DA5AF6029B8875A009E4925 /* SLHomeViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLHomeViewController.xib; sourceTree = "<group>"; };
  588. 3DA5AF6629B88875009E4925 /* SLLxViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLLxViewController.h; sourceTree = "<group>"; };
  589. 3DA5AF6729B88875009E4925 /* SLLxViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLLxViewController.m; sourceTree = "<group>"; };
  590. 3DA5AF6829B88875009E4925 /* SLLxViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLLxViewController.xib; sourceTree = "<group>"; };
  591. 3DA5AF6C29B88898009E4925 /* SLMyViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMyViewController.h; sourceTree = "<group>"; };
  592. 3DA5AF6D29B88898009E4925 /* SLMyViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMyViewController.m; sourceTree = "<group>"; };
  593. 3DA5AF6E29B88898009E4925 /* SLMyViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMyViewController.xib; sourceTree = "<group>"; };
  594. 3DA5AF7229B96726009E4925 /* SLMeHeaderCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLMeHeaderCollectionViewCell.m; sourceTree = "<group>"; };
  595. 3DA5AF7329B96726009E4925 /* SLMeHeaderCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLMeHeaderCollectionViewCell.h; sourceTree = "<group>"; };
  596. 3DA5AF7629B96B33009E4925 /* SLBaseMainView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLBaseMainView.h; sourceTree = "<group>"; };
  597. 3DA5AF7729B96B33009E4925 /* SLBaseMainView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLBaseMainView.m; sourceTree = "<group>"; };
  598. 3DA5AF7A29B96B55009E4925 /* SLPageViewModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLPageViewModel.m; sourceTree = "<group>"; };
  599. 3DA5AF7B29B96B55009E4925 /* SLPageViewModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLPageViewModel.h; sourceTree = "<group>"; };
  600. 3DA5AF7D29B96E11009E4925 /* SLPageModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLPageModel.h; sourceTree = "<group>"; };
  601. 3DA5AF7E29B96E11009E4925 /* SLPageModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLPageModel.m; sourceTree = "<group>"; };
  602. 3DB069F529F7A71F005730D7 /* SLFriendPowerVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLFriendPowerVc.h; sourceTree = "<group>"; };
  603. 3DB069F629F7A71F005730D7 /* SLFriendPowerVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLFriendPowerVc.m; sourceTree = "<group>"; };
  604. 3DB069F729F7A71F005730D7 /* SLFriendPowerVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLFriendPowerVc.xib; sourceTree = "<group>"; };
  605. 3DB0AE1529D6B64200671744 /* NullSafe.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NullSafe.m; sourceTree = "<group>"; };
  606. 3DB97D2529D6A86D00B12754 /* SDTimeLineCellModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDTimeLineCellModel.h; sourceTree = "<group>"; };
  607. 3DB97D2629D6A86D00B12754 /* SDTimeLineCellModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDTimeLineCellModel.m; sourceTree = "<group>"; };
  608. 3DB97D2929D6A86D00B12754 /* SDTimeLineCellOperationMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDTimeLineCellOperationMenu.h; sourceTree = "<group>"; };
  609. 3DB97D2A29D6A86D00B12754 /* SDTimeLineCellOperationMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDTimeLineCellOperationMenu.m; sourceTree = "<group>"; };
  610. 3DB97D2C29D6A86D00B12754 /* SDTimeLineCellCommentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDTimeLineCellCommentView.h; sourceTree = "<group>"; };
  611. 3DB97D2D29D6A86D00B12754 /* SDTimeLineCellCommentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDTimeLineCellCommentView.m; sourceTree = "<group>"; };
  612. 3DB97D3229D6A86D00B12754 /* SDTimeLineTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDTimeLineTableHeaderView.m; sourceTree = "<group>"; };
  613. 3DB97D3329D6A86D00B12754 /* SDTimeLineTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDTimeLineTableHeaderView.h; sourceTree = "<group>"; };
  614. 3DB97D3529D6A86D00B12754 /* SDTimeLineCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDTimeLineCell.h; sourceTree = "<group>"; };
  615. 3DB97D3629D6A86D00B12754 /* SDTimeLineCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDTimeLineCell.m; sourceTree = "<group>"; };
  616. 3DB97D3829D6A86D00B12754 /* SDTimeLineRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDTimeLineRefreshHeader.m; sourceTree = "<group>"; };
  617. 3DB97D3929D6A86D00B12754 /* SDTimeLineRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDTimeLineRefreshHeader.h; sourceTree = "<group>"; };
  618. 3DB97D3B29D6A86D00B12754 /* SDWeiXinPhotoContainerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWeiXinPhotoContainerView.m; sourceTree = "<group>"; };
  619. 3DB97D3C29D6A86D00B12754 /* SDWeiXinPhotoContainerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWeiXinPhotoContainerView.h; sourceTree = "<group>"; };
  620. 3DB97D4729D6AAC500B12754 /* UIView+SDAutoLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SDAutoLayout.m"; sourceTree = "<group>"; };
  621. 3DB97D4829D6AAC500B12754 /* UITableView+SDAutoTableViewCellHeight.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+SDAutoTableViewCellHeight.h"; sourceTree = "<group>"; };
  622. 3DB97D4929D6AAC500B12754 /* SDAutoLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDAutoLayout.h; sourceTree = "<group>"; };
  623. 3DB97D4A29D6AAC500B12754 /* UITableView+SDAutoTableViewCellHeight.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+SDAutoTableViewCellHeight.m"; sourceTree = "<group>"; };
  624. 3DB97D4B29D6AAC500B12754 /* UIView+SDAutoLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SDAutoLayout.h"; sourceTree = "<group>"; };
  625. 3DB97D4F29D6AAF900B12754 /* SDBaseRefreshView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDBaseRefreshView.h; sourceTree = "<group>"; };
  626. 3DB97D5029D6AAF900B12754 /* SDBaseRefreshView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDBaseRefreshView.m; sourceTree = "<group>"; };
  627. 3DB97D5329D6AB2200B12754 /* SDPhotoBrowserConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDPhotoBrowserConfig.h; sourceTree = "<group>"; };
  628. 3DB97D5429D6AB2200B12754 /* SDPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDPhotoBrowser.m; sourceTree = "<group>"; };
  629. 3DB97D5529D6AB2200B12754 /* SDWaitingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWaitingView.m; sourceTree = "<group>"; };
  630. 3DB97D5629D6AB2200B12754 /* SDBrowserImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDBrowserImageView.m; sourceTree = "<group>"; };
  631. 3DB97D5729D6AB2200B12754 /* SDWaitingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWaitingView.h; sourceTree = "<group>"; };
  632. 3DB97D5829D6AB2200B12754 /* SDPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDPhotoBrowser.h; sourceTree = "<group>"; };
  633. 3DB97D5929D6AB2200B12754 /* SDBrowserImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDBrowserImageView.h; sourceTree = "<group>"; };
  634. 3DB97D6129D6ABC000B12754 /* UIView+SDExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SDExtension.h"; sourceTree = "<group>"; };
  635. 3DB97D6229D6ABC000B12754 /* SDRefreshFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDRefreshFooterView.h; sourceTree = "<group>"; };
  636. 3DB97D6329D6ABC000B12754 /* SDRefreshView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDRefreshView.h; sourceTree = "<group>"; };
  637. 3DB97D6429D6ABC000B12754 /* SDRefreshHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDRefreshHeaderView.m; sourceTree = "<group>"; };
  638. 3DB97D6529D6ABC000B12754 /* sdRefeshView_arrow@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "sdRefeshView_arrow@2x.png"; sourceTree = "<group>"; };
  639. 3DB97D6629D6ABC000B12754 /* UIView+SDExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SDExtension.m"; sourceTree = "<group>"; };
  640. 3DB97D6729D6ABC000B12754 /* SDRefreshFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDRefreshFooterView.m; sourceTree = "<group>"; };
  641. 3DB97D6829D6ABC000B12754 /* SDRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDRefresh.h; sourceTree = "<group>"; };
  642. 3DB97D6929D6ABC000B12754 /* SDRefreshHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDRefreshHeaderView.h; sourceTree = "<group>"; };
  643. 3DB97D6A29D6ABC000B12754 /* SDRefreshView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDRefreshView.m; sourceTree = "<group>"; };
  644. 3DB97D7129D6ABEF00B12754 /* MLEmojiLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLEmojiLabel.h; sourceTree = "<group>"; };
  645. 3DB97D7229D6ABEF00B12754 /* MLEmoji_Expression.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = MLEmoji_Expression.plist; sourceTree = "<group>"; };
  646. 3DB97D7329D6ABEF00B12754 /* MLEmoji_Expression.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MLEmoji_Expression.bundle; sourceTree = "<group>"; };
  647. 3DB97D7429D6ABEF00B12754 /* MLEmoji_ExpressionImage.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = MLEmoji_ExpressionImage.plist; sourceTree = "<group>"; };
  648. 3DB97D7529D6ABEF00B12754 /* MLEmojiLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLEmojiLabel.m; sourceTree = "<group>"; };
  649. 3DB97D7729D6ABEF00B12754 /* TTTAttributedLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TTTAttributedLabel.h; sourceTree = "<group>"; };
  650. 3DB97D7829D6ABEF00B12754 /* TTTAttributedLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TTTAttributedLabel.m; sourceTree = "<group>"; };
  651. 3DB97D7A29D6ABEF00B12754 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
  652. 3DB97D7C29D6ABEF00B12754 /* MLLinkLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLLinkLabel.h; sourceTree = "<group>"; };
  653. 3DB97D7E29D6ABEF00B12754 /* NSMutableAttributedString+MLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSMutableAttributedString+MLLabel.m"; sourceTree = "<group>"; };
  654. 3DB97D7F29D6ABEF00B12754 /* NSString+MLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MLLabel.h"; sourceTree = "<group>"; };
  655. 3DB97D8029D6ABEF00B12754 /* NSAttributedString+MLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSAttributedString+MLLabel.h"; sourceTree = "<group>"; };
  656. 3DB97D8129D6ABEF00B12754 /* NSString+MLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MLLabel.m"; sourceTree = "<group>"; };
  657. 3DB97D8229D6ABEF00B12754 /* NSMutableAttributedString+MLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSMutableAttributedString+MLLabel.h"; sourceTree = "<group>"; };
  658. 3DB97D8329D6ABEF00B12754 /* NSAttributedString+MLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSAttributedString+MLLabel.m"; sourceTree = "<group>"; };
  659. 3DB97D8429D6ABEF00B12754 /* MLLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLLabel.h; sourceTree = "<group>"; };
  660. 3DB97D8529D6ABEF00B12754 /* MLLinkLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLLinkLabel.m; sourceTree = "<group>"; };
  661. 3DB97D8729D6ABEF00B12754 /* NSString+MLExpression.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+MLExpression.h"; sourceTree = "<group>"; };
  662. 3DB97D8829D6ABEF00B12754 /* NSAttributedString+MLExpression.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSAttributedString+MLExpression.m"; sourceTree = "<group>"; };
  663. 3DB97D8929D6ABEF00B12754 /* MLTextAttachment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLTextAttachment.m; sourceTree = "<group>"; };
  664. 3DB97D8A29D6ABEF00B12754 /* MLExpressionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLExpressionManager.h; sourceTree = "<group>"; };
  665. 3DB97D8B29D6ABEF00B12754 /* NSAttributedString+MLExpression.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSAttributedString+MLExpression.h"; sourceTree = "<group>"; };
  666. 3DB97D8C29D6ABEF00B12754 /* NSString+MLExpression.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+MLExpression.m"; sourceTree = "<group>"; };
  667. 3DB97D8D29D6ABEF00B12754 /* MLTextAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLTextAttachment.h; sourceTree = "<group>"; };
  668. 3DB97D8E29D6ABEF00B12754 /* MLExpressionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLExpressionManager.m; sourceTree = "<group>"; };
  669. 3DB97D8F29D6ABEF00B12754 /* MLLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLLabel.m; sourceTree = "<group>"; };
  670. 3DB97D9129D6ABEF00B12754 /* MLLabelLayoutManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MLLabelLayoutManager.m; sourceTree = "<group>"; };
  671. 3DB97D9229D6ABEF00B12754 /* MLLabelLayoutManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MLLabelLayoutManager.h; sourceTree = "<group>"; };
  672. 3DB97D9329D6ABEF00B12754 /* MLLabel+Override.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MLLabel+Override.h"; sourceTree = "<group>"; };
  673. 3DB97D9429D6ABEF00B12754 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
  674. 3DB97DA729D6AC0A00B12754 /* LEETheme.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LEETheme.h; sourceTree = "<group>"; };
  675. 3DB97DA829D6AC0A00B12754 /* LEETheme.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LEETheme.m; sourceTree = "<group>"; };
  676. 3DB97DAA29D6AC7900B12754 /* GlobalDefines.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GlobalDefines.h; sourceTree = "<group>"; };
  677. 3DBC3BC02A0B644600E8C766 /* SLNearbyPeopleVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLNearbyPeopleVc.h; sourceTree = "<group>"; };
  678. 3DBC3BC12A0B644600E8C766 /* SLNearbyPeopleVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLNearbyPeopleVc.m; sourceTree = "<group>"; };
  679. 3DBC3BC22A0B644600E8C766 /* SLNearbyPeopleVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLNearbyPeopleVc.xib; sourceTree = "<group>"; };
  680. 3DBC3BC52A0B650300E8C766 /* SLNearbyPeopleCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLNearbyPeopleCell.h; sourceTree = "<group>"; };
  681. 3DBC3BC62A0B650300E8C766 /* SLNearbyPeopleCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLNearbyPeopleCell.m; sourceTree = "<group>"; };
  682. 3DBC3BC72A0B650300E8C766 /* SLNearbyPeopleCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLNearbyPeopleCell.xib; sourceTree = "<group>"; };
  683. 3DE9967629E915BF00C50A83 /* SLMomentsVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMomentsVc.h; sourceTree = "<group>"; };
  684. 3DE9967729E915BF00C50A83 /* SLMomentsVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMomentsVc.m; sourceTree = "<group>"; };
  685. 3DE9967829E915BF00C50A83 /* SLMomentsVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMomentsVc.xib; sourceTree = "<group>"; };
  686. 3DE9968029EE72D300C50A83 /* SLAddFriendVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLAddFriendVc.h; sourceTree = "<group>"; };
  687. 3DE9968129EE72D300C50A83 /* SLAddFriendVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLAddFriendVc.m; sourceTree = "<group>"; };
  688. 3DE9968229EE72D300C50A83 /* SLAddFriendVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLAddFriendVc.xib; sourceTree = "<group>"; };
  689. 3DF3DA9F29B98A7D00CAD3AB /* SLMyView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLMyView.m; sourceTree = "<group>"; };
  690. 3DF3DAA029B98A7D00CAD3AB /* SLMyView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLMyView.h; sourceTree = "<group>"; };
  691. 3DF3DAA229B9A68800CAD3AB /* SLBaseCellView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLBaseCellView.h; sourceTree = "<group>"; };
  692. 3DF3DAA329B9A68800CAD3AB /* SLBaseCellView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLBaseCellView.m; sourceTree = "<group>"; };
  693. 3DF3DAA729B9A6AA00CAD3AB /* SLBaseCellView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLBaseCellView.xib; sourceTree = "<group>"; };
  694. 3DF3DAAA29B9AA3400CAD3AB /* SLMyListCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMyListCollectionViewCell.h; sourceTree = "<group>"; };
  695. 3DF3DAAB29B9AA3400CAD3AB /* SLMyListCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMyListCollectionViewCell.m; sourceTree = "<group>"; };
  696. 3DF3DAAC29B9AA3400CAD3AB /* SLMyListCollectionViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMyListCollectionViewCell.xib; sourceTree = "<group>"; };
  697. 3DF3DAAF29B9B86200CAD3AB /* SLUserCenterViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLUserCenterViewController.h; sourceTree = "<group>"; };
  698. 3DF3DAB029B9B86200CAD3AB /* SLUserCenterViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLUserCenterViewController.m; sourceTree = "<group>"; };
  699. 3DF3DAB129B9B86200CAD3AB /* SLUserCenterViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLUserCenterViewController.xib; sourceTree = "<group>"; };
  700. 3DF3DAB429B9B93000CAD3AB /* SLBaseCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLBaseCollectionViewCell.h; sourceTree = "<group>"; };
  701. 3DF3DAB529B9B93000CAD3AB /* SLBaseCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLBaseCollectionViewCell.m; sourceTree = "<group>"; };
  702. 3DF3DAB629B9B93000CAD3AB /* SLBaseCollectionViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLBaseCollectionViewCell.xib; sourceTree = "<group>"; };
  703. 3DF3DABA29B9C6E000CAD3AB /* YMNavigationBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMNavigationBar.h; sourceTree = "<group>"; };
  704. 3DF3DABB29B9C6E000CAD3AB /* YMBarItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMBarItemView.h; sourceTree = "<group>"; };
  705. 3DF3DABC29B9C6E000CAD3AB /* YMBarItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMBarItem.h; sourceTree = "<group>"; };
  706. 3DF3DABD29B9C6E000CAD3AB /* YMBarButtonItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMBarButtonItem.m; sourceTree = "<group>"; };
  707. 3DF3DABE29B9C6E000CAD3AB /* YMBarItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMBarItem.m; sourceTree = "<group>"; };
  708. 3DF3DABF29B9C6E000CAD3AB /* YMBarItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMBarItemView.m; sourceTree = "<group>"; };
  709. 3DF3DAC029B9C6E000CAD3AB /* YMNavigationBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YMNavigationBar.m; sourceTree = "<group>"; };
  710. 3DF3DAC129B9C6E000CAD3AB /* YMBarButtonItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YMBarButtonItem.h; sourceTree = "<group>"; };
  711. 3DF3DAC629B9D19600CAD3AB /* SLBaseTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLBaseTableViewCell.h; sourceTree = "<group>"; };
  712. 3DF3DAC729B9D19600CAD3AB /* SLBaseTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLBaseTableViewCell.m; sourceTree = "<group>"; };
  713. 3DF3DAC829B9D19600CAD3AB /* SLBaseTableViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLBaseTableViewCell.xib; sourceTree = "<group>"; };
  714. 3DF3DACB29B9D30A00CAD3AB /* UITableView+Extension.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UITableView+Extension.h"; sourceTree = "<group>"; };
  715. 3DF3DACC29B9D30A00CAD3AB /* UITableView+Extension.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UITableView+Extension.m"; sourceTree = "<group>"; };
  716. 3DF3DACF29BAC90F00CAD3AB /* SLModifyNicknameVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLModifyNicknameVc.h; sourceTree = "<group>"; };
  717. 3DF3DAD029BAC90F00CAD3AB /* SLModifyNicknameVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLModifyNicknameVc.m; sourceTree = "<group>"; };
  718. 3DF3DAD129BAC90F00CAD3AB /* SLModifyNicknameVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLModifyNicknameVc.xib; sourceTree = "<group>"; };
  719. 3DF3DAD429BAD1BA00CAD3AB /* SLChangeMobileVc.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLChangeMobileVc.h; sourceTree = "<group>"; };
  720. 3DF3DAD529BAD1BA00CAD3AB /* SLChangeMobileVc.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLChangeMobileVc.m; sourceTree = "<group>"; };
  721. 3DF3DAD629BAD1BA00CAD3AB /* SLChangeMobileVc.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLChangeMobileVc.xib; sourceTree = "<group>"; };
  722. 3DF3DAD929BAD65500CAD3AB /* SLCustomizeAlert.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLCustomizeAlert.m; sourceTree = "<group>"; };
  723. 3DF3DADA29BAD65500CAD3AB /* SLCustomizeAlert.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLCustomizeAlert.h; sourceTree = "<group>"; };
  724. 3DF3DADC29BAFA0600CAD3AB /* SLMySpeedView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMySpeedView.h; sourceTree = "<group>"; };
  725. 3DF3DADD29BAFA0600CAD3AB /* SLMySpeedView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMySpeedView.m; sourceTree = "<group>"; };
  726. 3DF3DADF29BAFA4B00CAD3AB /* SLMySpeedView.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMySpeedView.xib; sourceTree = "<group>"; };
  727. 3DF3DAE129BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMySpeedCollectionViewCell.h; sourceTree = "<group>"; };
  728. 3DF3DAE229BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMySpeedCollectionViewCell.m; sourceTree = "<group>"; };
  729. 3DF3DAE329BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLMySpeedCollectionViewCell.xib; sourceTree = "<group>"; };
  730. 3DF3DAEA29BB131100CAD3AB /* RDVTabBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RDVTabBar.m; sourceTree = "<group>"; };
  731. 3DF3DAEB29BB131100CAD3AB /* RDVTabBarController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RDVTabBarController.h; sourceTree = "<group>"; };
  732. 3DF3DAEC29BB131100CAD3AB /* RDVTabBarItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RDVTabBarItem.h; sourceTree = "<group>"; };
  733. 3DF3DAED29BB131100CAD3AB /* RDVTabBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RDVTabBar.h; sourceTree = "<group>"; };
  734. 3DF3DAEE29BB131100CAD3AB /* RDVTabBarController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RDVTabBarController.m; sourceTree = "<group>"; };
  735. 3DF3DAEF29BB131100CAD3AB /* RDVTabBarItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RDVTabBarItem.m; sourceTree = "<group>"; };
  736. 3DF3DAF329BB170F00CAD3AB /* SLHomeView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLHomeView.h; sourceTree = "<group>"; };
  737. 3DF3DAF429BB170F00CAD3AB /* SLHomeView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLHomeView.m; sourceTree = "<group>"; };
  738. 3DF3DAF729BB187D00CAD3AB /* SLHomeTopCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLHomeTopCollectionViewCell.h; sourceTree = "<group>"; };
  739. 3DF3DAF829BB187D00CAD3AB /* SLHomeTopCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLHomeTopCollectionViewCell.m; sourceTree = "<group>"; };
  740. 3DF3DAF929BB187D00CAD3AB /* SLHomeTopCollectionViewCell.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SLHomeTopCollectionViewCell.xib; sourceTree = "<group>"; };
  741. 3DF3DAFF29BB22CB00CAD3AB /* UIImage+Extension.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIImage+Extension.h"; sourceTree = "<group>"; };
  742. 3DF3DB0029BB22CB00CAD3AB /* UIImage+Extension.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Extension.m"; sourceTree = "<group>"; };
  743. 3DFEE70929B5B298000AA7D5 /* SLMikeSegment.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMikeSegment.h; sourceTree = "<group>"; };
  744. 3DFEE70A29B5B298000AA7D5 /* SLMikeSegment.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMikeSegment.m; sourceTree = "<group>"; };
  745. 3DFEE70C29B5CB01000AA7D5 /* SLMikeSegmentModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLMikeSegmentModel.h; sourceTree = "<group>"; };
  746. 3DFEE70D29B5CB01000AA7D5 /* SLMikeSegmentModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLMikeSegmentModel.m; sourceTree = "<group>"; };
  747. 3DFEE70F29B5D11E000AA7D5 /* UIButton+TitleAndImageLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+TitleAndImageLayout.m"; sourceTree = "<group>"; };
  748. 3DFEE71029B5D11E000AA7D5 /* UIButton+TitleAndImageLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+TitleAndImageLayout.h"; sourceTree = "<group>"; };
  749. 3DFEE71229B5DCAD000AA7D5 /* SLNuiSpeechRecognizer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SLNuiSpeechRecognizer.h; sourceTree = "<group>"; };
  750. 3DFEE71329B5DCAD000AA7D5 /* SLNuiSpeechRecognizer.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SLNuiSpeechRecognizer.m; sourceTree = "<group>"; };
  751. 3DFEE71529B5E7F9000AA7D5 /* SLAuthorizationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SLAuthorizationManager.m; sourceTree = "<group>"; };
  752. 3DFEE71629B5E7F9000AA7D5 /* SLAuthorizationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SLAuthorizationManager.h; sourceTree = "<group>"; };
  753. A5217D328E77444C393A094E /* Pods-SLAiELTS.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SLAiELTS.debug.xcconfig"; path = "Target Support Files/Pods-SLAiELTS/Pods-SLAiELTS.debug.xcconfig"; sourceTree = "<group>"; };
  754. CCE37EAEF15FC154202111E3 /* Pods_SLAiELTS.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SLAiELTS.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  755. /* End PBXFileReference section */
  756. /* Begin PBXFrameworksBuildPhase section */
  757. 3D8C9F7429AC57F200678283 /* Frameworks */ = {
  758. isa = PBXFrameworksBuildPhase;
  759. buildActionMask = 2147483647;
  760. files = (
  761. 3D2DC3B529B06D6D0041A729 /* nuisdk.framework in Frameworks */,
  762. CE8602C0648DB6886C24C92D /* Pods_SLAiELTS.framework in Frameworks */,
  763. );
  764. runOnlyForDeploymentPostprocessing = 0;
  765. };
  766. /* End PBXFrameworksBuildPhase section */
  767. /* Begin PBXGroup section */
  768. 0E75F055332B539B777D0F17 /* Pods */ = {
  769. isa = PBXGroup;
  770. children = (
  771. A5217D328E77444C393A094E /* Pods-SLAiELTS.debug.xcconfig */,
  772. 18BFDEB2050A85860206880B /* Pods-SLAiELTS.release.xcconfig */,
  773. );
  774. path = Pods;
  775. sourceTree = "<group>";
  776. };
  777. 3D19CBEB29E648150041A6B8 /* Model */ = {
  778. isa = PBXGroup;
  779. children = (
  780. 3D19CBE829E6480E0041A6B8 /* SLFriendsModel.h */,
  781. 3D19CBE929E6480E0041A6B8 /* SLFriendsModel.m */,
  782. 3D6EE45A29F27BCB00B02EBB /* SLRecomFriendModel.h */,
  783. 3D6EE45B29F27BCB00B02EBB /* SLRecomFriendModel.m */,
  784. );
  785. path = Model;
  786. sourceTree = "<group>";
  787. };
  788. 3D19CBEF29E7ABFD0041A6B8 /* CYLTableViewPlaceHolder */ = {
  789. isa = PBXGroup;
  790. children = (
  791. 3D19CBF029E7ABFD0041A6B8 /* UITableView+Refresh.h */,
  792. 3D19CBF329E7ABFD0041A6B8 /* UITableView+Refresh.m */,
  793. 3D19CBF129E7ABFD0041A6B8 /* TTTableViewPlaceView.h */,
  794. 3D19CBF629E7ABFD0041A6B8 /* TTTableViewPlaceView.m */,
  795. 3D19CBF529E7ABFD0041A6B8 /* CYLTableViewPlaceHolderDelegate.h */,
  796. 3D19CBF729E7ABFD0041A6B8 /* UITableView+CYLTableViewPlaceHolder.h */,
  797. 3D19CBF229E7ABFD0041A6B8 /* UITableView+CYLTableViewPlaceHolder.m */,
  798. 3D19CBF429E7ABFD0041A6B8 /* CYLTableViewPlaceHolder.h */,
  799. );
  800. path = CYLTableViewPlaceHolder;
  801. sourceTree = "<group>";
  802. };
  803. 3D1B987429BEE6350008D01A /* Views */ = {
  804. isa = PBXGroup;
  805. children = (
  806. 3D8515CD29CD92A400418BAB /* TitleBackground */,
  807. 3D1B988129BEED5F0008D01A /* Cells */,
  808. 3D1B987529BEE6640008D01A /* SLLxTopView.h */,
  809. 3D1B987629BEE6640008D01A /* SLLxTopView.m */,
  810. 3D1B987A29BEE6800008D01A /* SLLxTopView.xib */,
  811. 3D1B987C29BEEA5A0008D01A /* SLVocabularyView.h */,
  812. 3D1B987D29BEEA5A0008D01A /* SLVocabularyView.m */,
  813. 3D1B987F29BEEA670008D01A /* SLVocabularyView.xib */,
  814. 3D1B989129BEF5960008D01A /* SLLxView.h */,
  815. 3D1B989229BEF5960008D01A /* SLLxView.m */,
  816. 3D1B989429BF08A70008D01A /* SLLineScaleView.h */,
  817. 3D1B989529BF08A70008D01A /* SLLineScaleView.m */,
  818. );
  819. path = Views;
  820. sourceTree = "<group>";
  821. };
  822. 3D1B988129BEED5F0008D01A /* Cells */ = {
  823. isa = PBXGroup;
  824. children = (
  825. 3D1B988729BEF1020008D01A /* SLLxTopCell.h */,
  826. 3D1B988829BEF1020008D01A /* SLLxTopCell.m */,
  827. 3D1B988929BEF1020008D01A /* SLLxTopCell.xib */,
  828. 3D1B988C29BEF1AC0008D01A /* SLVocabularyCell.h */,
  829. 3D1B988D29BEF1AC0008D01A /* SLVocabularyCell.m */,
  830. 3D1B988E29BEF1AC0008D01A /* SLVocabularyCell.xib */,
  831. );
  832. path = Cells;
  833. sourceTree = "<group>";
  834. };
  835. 3D1B9CE629C01CB00008D01A /* UnityFramework */ = {
  836. isa = PBXGroup;
  837. children = (
  838. 3D1B9CE729C01CB00008D01A /* UnityFramework.h */,
  839. 3D1B9CE829C01CB00008D01A /* Info.plist */,
  840. );
  841. name = UnityFramework;
  842. path = SLAiELTS/Vendor/modeling/UnityFramework;
  843. sourceTree = "<group>";
  844. };
  845. 3D1F17AB2A0DE55D00F030AD /* GPSLocation */ = {
  846. isa = PBXGroup;
  847. children = (
  848. 3D1F17AC2A0DE55D00F030AD /* SLLocationManager.h */,
  849. 3D1F17AD2A0DE55D00F030AD /* SLLocationManager.m */,
  850. );
  851. path = GPSLocation;
  852. sourceTree = "<group>";
  853. };
  854. 3D1F17AF2A0DE60100F030AD /* JZLocationConverter */ = {
  855. isa = PBXGroup;
  856. children = (
  857. 3D1F17B02A0DE60100F030AD /* JZLocationConverter.m */,
  858. 3D1F17B12A0DE60100F030AD /* JZLocationConverter.h */,
  859. );
  860. path = JZLocationConverter;
  861. sourceTree = "<group>";
  862. };
  863. 3D24985F29AC6A7D003C3AFA /* ViewControllers */ = {
  864. isa = PBXGroup;
  865. children = (
  866. 3D8EBBC92A14B6CB0008B0C1 /* WebVC */,
  867. 3D24D3FE29DE964600014D1C /* FriendsVC */,
  868. 3DB97D2029D6A86D00B12754 /* Moments */,
  869. 3DA5AF6B29B88884009E4925 /* MyVC */,
  870. 3DA5AF6529B8885D009E4925 /* LxVC */,
  871. 3DA5AF5D29B8873B009E4925 /* Home */,
  872. 3D25109E29AEEDFB000AE530 /* MessageVC */,
  873. 3D25107129AD8ABB000AE530 /* RoleLabelVC */,
  874. 3D25106A29AD86A4000AE530 /* LoginVC */,
  875. 3DA5AF6329B887D4009E4925 /* BaseVC */,
  876. );
  877. path = ViewControllers;
  878. sourceTree = "<group>";
  879. };
  880. 3D24986229AC70CB003C3AFA /* Supporting Files */ = {
  881. isa = PBXGroup;
  882. children = (
  883. 3D8C9F7A29AC57F200678283 /* AppDelegate.h */,
  884. 3D8C9F7B29AC57F200678283 /* AppDelegate.mm */,
  885. 3D8C9F8029AC57F200678283 /* ViewController.h */,
  886. 3D8C9F8129AC57F200678283 /* ViewController.m */,
  887. 3D8C9F8329AC57F200678283 /* Main.storyboard */,
  888. 3D8C9F8629AC57F300678283 /* Assets.xcassets */,
  889. 3D8C9F8829AC57F300678283 /* LaunchScreen.storyboard */,
  890. 3D8C9F8B29AC57F300678283 /* Info.plist */,
  891. 3D8C9F8C29AC57F300678283 /* main.m */,
  892. );
  893. name = "Supporting Files";
  894. sourceTree = "<group>";
  895. };
  896. 3D24986E29AC73D2003C3AFA /* AppMarcos */ = {
  897. isa = PBXGroup;
  898. children = (
  899. 3DB97DAA29D6AC7900B12754 /* GlobalDefines.h */,
  900. 3D25108529ADB1E2000AE530 /* YMConstMacro.h */,
  901. 3D24986F29AC7405003C3AFA /* PrefixHeader.pch */,
  902. 3D1B9CF429C06EC40008D01A /* SLDefaultMacro.h */,
  903. );
  904. path = AppMarcos;
  905. sourceTree = "<group>";
  906. };
  907. 3D24987129AC78DA003C3AFA /* Extensions */ = {
  908. isa = PBXGroup;
  909. children = (
  910. 3D1B9D0329C1A14A0008D01A /* UIImagePickerController+YMBlocks.h */,
  911. 3D1B9D0429C1A14A0008D01A /* UIImagePickerController+YMBlocks.m */,
  912. 3DFEE71029B5D11E000AA7D5 /* UIButton+TitleAndImageLayout.h */,
  913. 3DFEE70F29B5D11E000AA7D5 /* UIButton+TitleAndImageLayout.m */,
  914. 3D2DC3EC29B09B3B0041A729 /* UICollectionViewCell+YMHelper.h */,
  915. 3D2DC3EB29B09B3B0041A729 /* UICollectionViewCell+YMHelper.m */,
  916. 3D2DC3E929B09B070041A729 /* UICollectionView+YMHelper.h */,
  917. 3D2DC3E829B09B070041A729 /* UICollectionView+YMHelper.m */,
  918. 3D2510C529AF1D29000AE530 /* NSString+Category.h */,
  919. 3D2510C629AF1D29000AE530 /* NSString+Category.m */,
  920. 3D2510A929AF00E3000AE530 /* NSLayoutConstraint+IBDesignable.h */,
  921. 3D2510AA29AF00E3000AE530 /* NSLayoutConstraint+IBDesignable.m */,
  922. 3D25108029AD9999000AE530 /* UIColor+YMAdditions.h */,
  923. 3D25107F29AD9999000AE530 /* UIColor+YMAdditions.m */,
  924. 3D24987229AC7909003C3AFA /* UIViewController+Extension.h */,
  925. 3D24987329AC7909003C3AFA /* UIViewController+Extension.m */,
  926. 3D25109B29AEEDBE000AE530 /* UIView+Extension.h */,
  927. 3D25109C29AEEDBE000AE530 /* UIView+Extension.m */,
  928. 3DF3DACB29B9D30A00CAD3AB /* UITableView+Extension.h */,
  929. 3DF3DACC29B9D30A00CAD3AB /* UITableView+Extension.m */,
  930. 3DF3DAFF29BB22CB00CAD3AB /* UIImage+Extension.h */,
  931. 3DF3DB0029BB22CB00CAD3AB /* UIImage+Extension.m */,
  932. );
  933. path = Extensions;
  934. sourceTree = "<group>";
  935. };
  936. 3D24D3FE29DE964600014D1C /* FriendsVC */ = {
  937. isa = PBXGroup;
  938. children = (
  939. 3D19CBEB29E648150041A6B8 /* Model */,
  940. 3D24D67829DFA17100014D1C /* Views */,
  941. 3D24D3FF29DE96A700014D1C /* SLAddressBookVc.h */,
  942. 3D24D40029DE96A700014D1C /* SLAddressBookVc.m */,
  943. 3D24D40129DE96A700014D1C /* SLAddressBookVc.xib */,
  944. 3D6EE45029F2568000B02EBB /* SLRecomFriendsVc.h */,
  945. 3D6EE45129F2568000B02EBB /* SLRecomFriendsVc.m */,
  946. 3D6EE45229F2568000B02EBB /* SLRecomFriendsVc.xib */,
  947. 3DB069F529F7A71F005730D7 /* SLFriendPowerVc.h */,
  948. 3DB069F629F7A71F005730D7 /* SLFriendPowerVc.m */,
  949. 3DB069F729F7A71F005730D7 /* SLFriendPowerVc.xib */,
  950. 3DBC3BC02A0B644600E8C766 /* SLNearbyPeopleVc.h */,
  951. 3DBC3BC12A0B644600E8C766 /* SLNearbyPeopleVc.m */,
  952. 3DBC3BC22A0B644600E8C766 /* SLNearbyPeopleVc.xib */,
  953. );
  954. path = FriendsVC;
  955. sourceTree = "<group>";
  956. };
  957. 3D24D40929DEB23C00014D1C /* ZLPhotoBrowserTool */ = {
  958. isa = PBXGroup;
  959. children = (
  960. 3D24D40A29DEB23C00014D1C /* ZLPhotoBrowerView.h */,
  961. 3D24D40D29DEB23C00014D1C /* ZLPhotoBrowerView.m */,
  962. 3D24D40E29DEB23C00014D1C /* ZLPhotoBrowerModel.h */,
  963. 3D24D40B29DEB23C00014D1C /* ZLPhotoBrowerModel.m */,
  964. 3D24D40C29DEB23C00014D1C /* ImageCell.h */,
  965. 3D24D40F29DEB23C00014D1C /* ImageCell.m */,
  966. );
  967. path = ZLPhotoBrowserTool;
  968. sourceTree = "<group>";
  969. };
  970. 3D24D67829DFA17100014D1C /* Views */ = {
  971. isa = PBXGroup;
  972. children = (
  973. 3D2D8BCB29DE5402009392DA /* AddressBookCell.h */,
  974. 3D2D8BCF29DE5402009392DA /* AddressBookCell.m */,
  975. 3D2D8BD129DE5402009392DA /* AddressBookCell.xib */,
  976. 3D24D67929DFA1F100014D1C /* SLRemidLookView.h */,
  977. 3D24D67A29DFA1F100014D1C /* SLRemidLookView.m */,
  978. 3D24D67C29DFA23200014D1C /* SLRemidLookView.xib */,
  979. 3D6EE45529F25AB400B02EBB /* SLRecomFriendsCell.h */,
  980. 3D6EE45629F25AB400B02EBB /* SLRecomFriendsCell.m */,
  981. 3D6EE45729F25AB400B02EBB /* SLRecomFriendsCell.xib */,
  982. 3DBC3BC52A0B650300E8C766 /* SLNearbyPeopleCell.h */,
  983. 3DBC3BC62A0B650300E8C766 /* SLNearbyPeopleCell.m */,
  984. 3DBC3BC72A0B650300E8C766 /* SLNearbyPeopleCell.xib */,
  985. );
  986. path = Views;
  987. sourceTree = "<group>";
  988. };
  989. 3D25106A29AD86A4000AE530 /* LoginVC */ = {
  990. isa = PBXGroup;
  991. children = (
  992. 3D2510C829AF32CA000AE530 /* Models */,
  993. 3D24986929AC72E2003C3AFA /* SLLoginVCViewController.h */,
  994. 3D24986A29AC72E2003C3AFA /* SLLoginVCViewController.m */,
  995. 3D24986B29AC72E2003C3AFA /* SLLoginVCViewController.xib */,
  996. 3D25105329AC8FE1000AE530 /* SLRegistViewController.h */,
  997. 3D25105429AC8FE1000AE530 /* SLRegistViewController.m */,
  998. 3D25105529AC8FE1000AE530 /* SLRegistViewController.xib */,
  999. 3D25105829AC9475000AE530 /* SLForgetPWViewController.h */,
  1000. 3D25105929AC9475000AE530 /* SLForgetPWViewController.m */,
  1001. 3D25105A29AC9475000AE530 /* SLForgetPWViewController.xib */,
  1002. 3D25105D29AC95A9000AE530 /* SLRetrievePWViewController.h */,
  1003. 3D25105E29AC95A9000AE530 /* SLRetrievePWViewController.m */,
  1004. 3D25105F29AC95A9000AE530 /* SLRetrievePWViewController.xib */,
  1005. );
  1006. path = LoginVC;
  1007. sourceTree = "<group>";
  1008. };
  1009. 3D25107129AD8ABB000AE530 /* RoleLabelVC */ = {
  1010. isa = PBXGroup;
  1011. children = (
  1012. 3D25107B29AD8FA8000AE530 /* Views */,
  1013. 3D25107429AD8BE6000AE530 /* Models */,
  1014. 3D25106C29AD8AA9000AE530 /* SLRoleLabelViewController.h */,
  1015. 3D25106D29AD8AA9000AE530 /* SLRoleLabelViewController.m */,
  1016. 3D25106E29AD8AA9000AE530 /* SLRoleLabelViewController.xib */,
  1017. );
  1018. path = RoleLabelVC;
  1019. sourceTree = "<group>";
  1020. };
  1021. 3D25107429AD8BE6000AE530 /* Models */ = {
  1022. isa = PBXGroup;
  1023. children = (
  1024. 3D25107529AD8C13000AE530 /* RoleModel.h */,
  1025. 3D25107629AD8C13000AE530 /* RoleModel.m */,
  1026. 3D2DC3C229B0716E0041A729 /* SLNuisdkPlay.h */,
  1027. 3D2DC3C329B0716E0041A729 /* SLNuisdkPlay.m */,
  1028. 3DFEE71229B5DCAD000AA7D5 /* SLNuiSpeechRecognizer.h */,
  1029. 3DFEE71329B5DCAD000AA7D5 /* SLNuiSpeechRecognizer.m */,
  1030. );
  1031. path = Models;
  1032. sourceTree = "<group>";
  1033. };
  1034. 3D25107B29AD8FA8000AE530 /* Views */ = {
  1035. isa = PBXGroup;
  1036. children = (
  1037. 3D25107C29AD8FF1000AE530 /* SLPageControlView.h */,
  1038. 3D25107D29AD8FF1000AE530 /* SLPageControlView.m */,
  1039. 3D25108229ADA027000AE530 /* SLInterestView.h */,
  1040. 3D25108329ADA027000AE530 /* SLInterestView.m */,
  1041. 3D25108629ADD46C000AE530 /* SLRoleLabelView.h */,
  1042. 3D25108729ADD46C000AE530 /* SLRoleLabelView.m */,
  1043. 3D25108929ADD490000AE530 /* SLRoleLabelView.xib */,
  1044. 3D25109329AEDD7A000AE530 /* SLRoleCreatSucView.h */,
  1045. 3D25109429AEDD7A000AE530 /* SLRoleCreatSucView.m */,
  1046. 3D25109629AEDD8F000AE530 /* SLRoleCreatSucView.xib */,
  1047. 3DA2C73A29CBE4DD0087CDB4 /* SLRoleappearanceView.h */,
  1048. 3DA2C73B29CBE4DD0087CDB4 /* SLRoleappearanceView.m */,
  1049. );
  1050. path = Views;
  1051. sourceTree = "<group>";
  1052. };
  1053. 3D25108B29ADD729000AE530 /* SLCustomSegment */ = {
  1054. isa = PBXGroup;
  1055. children = (
  1056. 3D25108D29ADD729000AE530 /* SLCustomSegment.h */,
  1057. 3D25108F29ADD729000AE530 /* SLCustomSegment.m */,
  1058. );
  1059. path = SLCustomSegment;
  1060. sourceTree = "<group>";
  1061. };
  1062. 3D25109229ADD7D3000AE530 /* Views */ = {
  1063. isa = PBXGroup;
  1064. children = (
  1065. 3DF3DAE929BB131100CAD3AB /* RDVTabBarController */,
  1066. 3DF3DAB929B9C6E000CAD3AB /* YMNavigationBar */,
  1067. 3D25108B29ADD729000AE530 /* SLCustomSegment */,
  1068. 3D25107929AD8DB0000AE530 /* SLPageControlSlideRound.h */,
  1069. 3D25107829AD8DB0000AE530 /* SLPageControlSlideRound.m */,
  1070. 3D25106829ACA629000AE530 /* SLVerifiButton.h */,
  1071. 3D25106729ACA629000AE530 /* SLVerifiButton.m */,
  1072. 3DF3DADA29BAD65500CAD3AB /* SLCustomizeAlert.h */,
  1073. 3DF3DAD929BAD65500CAD3AB /* SLCustomizeAlert.m */,
  1074. 3D1B9CEE29C03B8B0008D01A /* SLDatePickView.h */,
  1075. 3D1B9CEF29C03B8B0008D01A /* SLDatePickView.m */,
  1076. 3D1B9CF129C044AA0008D01A /* SLPickView.h */,
  1077. 3D1B9CF229C044AA0008D01A /* SLPickView.m */,
  1078. 3D1B9CFD29C157620008D01A /* PlaceholderTextView.h */,
  1079. 3D1B9CFE29C157620008D01A /* PlaceholderTextView.m */,
  1080. );
  1081. path = Views;
  1082. sourceTree = "<group>";
  1083. };
  1084. 3D25109E29AEEDFB000AE530 /* MessageVC */ = {
  1085. isa = PBXGroup;
  1086. children = (
  1087. 3D2DC3EE29B191A60041A729 /* Models */,
  1088. 3D2DC3CA29B0990A0041A729 /* Views */,
  1089. 3D2510A429AEF4F0000AE530 /* SLMessageViewController.h */,
  1090. 3D2510A529AEF4F0000AE530 /* SLMessageViewController.m */,
  1091. 3D2510A629AEF4F0000AE530 /* SLMessageViewController.xib */,
  1092. );
  1093. path = MessageVC;
  1094. sourceTree = "<group>";
  1095. };
  1096. 3D2510AF29AF1943000AE530 /* Tool */ = {
  1097. isa = PBXGroup;
  1098. children = (
  1099. 3D1F17AF2A0DE60100F030AD /* JZLocationConverter */,
  1100. 3D1F17AB2A0DE55D00F030AD /* GPSLocation */,
  1101. 3D19CBEF29E7ABFD0041A6B8 /* CYLTableViewPlaceHolder */,
  1102. 3D2D8BF129DE5AE4009392DA /* SCIndexView */,
  1103. 3D2D8C0429DE7404009392DA /* TextFieldCategory */,
  1104. 3D2D8BDA29DE55A9009392DA /* PinYin4Objc */,
  1105. 3DB0AE1429D6B64200671744 /* NullSafe */,
  1106. 3DB97DA629D6AC0A00B12754 /* LEETheme */,
  1107. 3DB97D7029D6ABEF00B12754 /* MLEmojiLabel */,
  1108. 3DB97D6029D6ABC000B12754 /* SDRefeshView */,
  1109. 3DB97D5229D6AB2200B12754 /* SDPhotoBrowser */,
  1110. 3DB97D4629D6AAC500B12754 /* SDAutoLayout */,
  1111. 3D796C6629B8305C00B7B28A /* FBKVOController */,
  1112. 3DFEE71629B5E7F9000AA7D5 /* SLAuthorizationManager.h */,
  1113. 3DFEE71529B5E7F9000AA7D5 /* SLAuthorizationManager.m */,
  1114. 3D2510C129AF1B24000AE530 /* ZFToast */,
  1115. 3D2510BD29AF1A8F000AE530 /* MBProgressHUD+Addition */,
  1116. 3D2510B029AF1970000AE530 /* NetWorking */,
  1117. 3D25109229ADD7D3000AE530 /* Views */,
  1118. 3D24987129AC78DA003C3AFA /* Extensions */,
  1119. );
  1120. path = Tool;
  1121. sourceTree = "<group>";
  1122. };
  1123. 3D2510B029AF1970000AE530 /* NetWorking */ = {
  1124. isa = PBXGroup;
  1125. children = (
  1126. 3D2510B529AF1970000AE530 /* SLHttpCenter.h */,
  1127. 3D2510B129AF1970000AE530 /* SLHttpCenter.m */,
  1128. 3D2510B229AF1970000AE530 /* SPEncryption.h */,
  1129. 3D2510B829AF1970000AE530 /* SPEncryption.m */,
  1130. 3D2510B729AF1970000AE530 /* SPRequestError.h */,
  1131. 3D2510B329AF1970000AE530 /* SPRequestError.m */,
  1132. 3D2510B429AF1970000AE530 /* TFFileUploadManager.h */,
  1133. 3D2510B629AF1970000AE530 /* TFFileUploadManager.m */,
  1134. );
  1135. path = NetWorking;
  1136. sourceTree = "<group>";
  1137. };
  1138. 3D2510BD29AF1A8F000AE530 /* MBProgressHUD+Addition */ = {
  1139. isa = PBXGroup;
  1140. children = (
  1141. 3D2510BF29AF1A8F000AE530 /* MBProgressHUD+Addition.h */,
  1142. 3D2510BE29AF1A8F000AE530 /* MBProgressHUD+Addition.m */,
  1143. );
  1144. path = "MBProgressHUD+Addition";
  1145. sourceTree = "<group>";
  1146. };
  1147. 3D2510C129AF1B24000AE530 /* ZFToast */ = {
  1148. isa = PBXGroup;
  1149. children = (
  1150. 3D2510C229AF1B24000AE530 /* ZFToast.m */,
  1151. 3D2510C329AF1B24000AE530 /* ZFToast.h */,
  1152. );
  1153. path = ZFToast;
  1154. sourceTree = "<group>";
  1155. };
  1156. 3D2510C829AF32CA000AE530 /* Models */ = {
  1157. isa = PBXGroup;
  1158. children = (
  1159. 3D2510C929AF3306000AE530 /* SLUserModel.h */,
  1160. 3D2510CA29AF3306000AE530 /* SLUserModel.m */,
  1161. 3D2510CC29AF375B000AE530 /* SLGlobalInfo.h */,
  1162. 3D2510CD29AF375B000AE530 /* SLGlobalInfo.m */,
  1163. 3D2510CF29AF3DC4000AE530 /* SLLoginInfo.h */,
  1164. 3D2510D029AF3DC4000AE530 /* SLLoginInfo.m */,
  1165. );
  1166. path = Models;
  1167. sourceTree = "<group>";
  1168. };
  1169. 3D2D8BDA29DE55A9009392DA /* PinYin4Objc */ = {
  1170. isa = PBXGroup;
  1171. children = (
  1172. 3D2D8BDB29DE55A9009392DA /* Classes */,
  1173. 3D2D8BE729DE55A9009392DA /* Resources */,
  1174. );
  1175. path = PinYin4Objc;
  1176. sourceTree = "<group>";
  1177. };
  1178. 3D2D8BDB29DE55A9009392DA /* Classes */ = {
  1179. isa = PBXGroup;
  1180. children = (
  1181. 3D2D8BDC29DE55A9009392DA /* PinyinHelper.h */,
  1182. 3D2D8BDD29DE55A9009392DA /* HanyuPinyinOutputFormat.h */,
  1183. 3D2D8BDE29DE55A9009392DA /* NSString+PinYin4Cocoa.m */,
  1184. 3D2D8BDF29DE55A9009392DA /* ChineseToPinyinResource.h */,
  1185. 3D2D8BE029DE55A9009392DA /* PinyinFormatter.h */,
  1186. 3D2D8BE129DE55A9009392DA /* PinyinHelper.m */,
  1187. 3D2D8BE229DE55A9009392DA /* NSString+PinYin4Cocoa.h */,
  1188. 3D2D8BE329DE55A9009392DA /* HanyuPinyinOutputFormat.m */,
  1189. 3D2D8BE429DE55A9009392DA /* ChineseToPinyinResource.m */,
  1190. 3D2D8BE529DE55A9009392DA /* PinyinFormatter.m */,
  1191. 3D2D8BE629DE55A9009392DA /* PinYin4Objc.h */,
  1192. );
  1193. path = Classes;
  1194. sourceTree = "<group>";
  1195. };
  1196. 3D2D8BE729DE55A9009392DA /* Resources */ = {
  1197. isa = PBXGroup;
  1198. children = (
  1199. 3D2D8BE829DE55A9009392DA /* unicode_to_hanyu_pinyin.txt */,
  1200. );
  1201. path = Resources;
  1202. sourceTree = "<group>";
  1203. };
  1204. 3D2D8BF129DE5AE4009392DA /* SCIndexView */ = {
  1205. isa = PBXGroup;
  1206. children = (
  1207. 3D2D8BF529DE5AE4009392DA /* SCIndexViewConfiguration.h */,
  1208. 3D2D8BF229DE5AE4009392DA /* SCIndexViewConfiguration.m */,
  1209. 3D2D8BF329DE5AE4009392DA /* UITableView+SCIndexView.h */,
  1210. 3D2D8BF629DE5AE4009392DA /* UITableView+SCIndexView.m */,
  1211. 3D2D8BF729DE5AE4009392DA /* SCIndexView.h */,
  1212. 3D2D8BF429DE5AE4009392DA /* SCIndexView.m */,
  1213. );
  1214. path = SCIndexView;
  1215. sourceTree = "<group>";
  1216. };
  1217. 3D2D8C0029DE638F009392DA /* xxx */ = {
  1218. isa = PBXGroup;
  1219. children = (
  1220. 3DF3DAF729BB187D00CAD3AB /* SLHomeTopCollectionViewCell.h */,
  1221. 3DF3DAF829BB187D00CAD3AB /* SLHomeTopCollectionViewCell.m */,
  1222. 3DF3DAF929BB187D00CAD3AB /* SLHomeTopCollectionViewCell.xib */,
  1223. );
  1224. path = xxx;
  1225. sourceTree = "<group>";
  1226. };
  1227. 3D2D8C0429DE7404009392DA /* TextFieldCategory */ = {
  1228. isa = PBXGroup;
  1229. children = (
  1230. 3D2D8C0529DE7404009392DA /* LeftImageDesignTxtxField.m */,
  1231. 3D2D8C0629DE7404009392DA /* LeftImageDesignTxtxField.h */,
  1232. );
  1233. path = TextFieldCategory;
  1234. sourceTree = "<group>";
  1235. };
  1236. 3D2DC3B229B06D000041A729 /* Vendor */ = {
  1237. isa = PBXGroup;
  1238. children = (
  1239. 3D3BC1212A1DF58100AEEE8E /* 音波 */,
  1240. 3D2DC3C529B078FE0041A729 /* Resources.bundle */,
  1241. 3D2DC3B329B06D200041A729 /* nuisdk.framework */,
  1242. 3DA2C73229CAA9AB0087CDB4 /* Nuisdk */,
  1243. 3D2DC3B829B0709F0041A729 /* audio */,
  1244. );
  1245. path = Vendor;
  1246. sourceTree = "<group>";
  1247. };
  1248. 3D2DC3B829B0709F0041A729 /* audio */ = {
  1249. isa = PBXGroup;
  1250. children = (
  1251. 3D2DC3C829B07A6F0041A729 /* NuiSdkUtils.h */,
  1252. 3D2DC3C729B07A6F0041A729 /* NuiSdkUtils.m */,
  1253. 3D2DC3B929B0709F0041A729 /* NLSVoiceRecorder.h */,
  1254. 3D2DC3BC29B0709F0041A729 /* NLSVoiceRecorder.m */,
  1255. 3D2DC3BA29B0709F0041A729 /* NLSRingBuffer.h */,
  1256. 3D2DC3BB29B0709F0041A729 /* NLSRingBuffer.mm */,
  1257. 3D2DC3BD29B0709F0041A729 /* NLSPlayAudio.h */,
  1258. 3D2DC3BE29B0709F0041A729 /* NLSPlayAudio.mm */,
  1259. );
  1260. path = audio;
  1261. sourceTree = "<group>";
  1262. };
  1263. 3D2DC3CA29B0990A0041A729 /* Views */ = {
  1264. isa = PBXGroup;
  1265. children = (
  1266. 3D2DC3D229B0991E0041A729 /* IMMessageView */,
  1267. 3D2DC3CB29B0991E0041A729 /* NextGrowingTextView */,
  1268. 3D2DC3E529B099C90041A729 /* YMChatServiceView.h */,
  1269. 3D2DC3E629B099C90041A729 /* YMChatServiceView.m */,
  1270. 3D2DC3E329B099B50041A729 /* YMChatBottomView.h */,
  1271. 3D2DC3E229B099B50041A729 /* YMChatBottomView.m */,
  1272. 3D2DC3F229B1E6320041A729 /* SLMikeInputView.h */,
  1273. 3D2DC3F329B1E6320041A729 /* SLMikeInputView.m */,
  1274. 3D2DC3F529B1E6510041A729 /* SLMikeInputView.xib */,
  1275. 3DFEE70929B5B298000AA7D5 /* SLMikeSegment.h */,
  1276. 3DFEE70A29B5B298000AA7D5 /* SLMikeSegment.m */,
  1277. );
  1278. path = Views;
  1279. sourceTree = "<group>";
  1280. };
  1281. 3D2DC3CB29B0991E0041A729 /* NextGrowingTextView */ = {
  1282. isa = PBXGroup;
  1283. children = (
  1284. 3D2DC3CC29B0991E0041A729 /* YMCustServiceAlertView.h */,
  1285. 3D2DC3CF29B0991E0041A729 /* YMCustServiceAlertView.m */,
  1286. 3D2DC3CD29B0991E0041A729 /* YMNextGrowingInternalTextView.h */,
  1287. 3D2DC3D029B0991E0041A729 /* YMNextGrowingInternalTextView.m */,
  1288. 3D2DC3D129B0991E0041A729 /* YMNextGrowingTextView.h */,
  1289. 3D2DC3CE29B0991E0041A729 /* YMNextGrowingTextView.m */,
  1290. );
  1291. path = NextGrowingTextView;
  1292. sourceTree = "<group>";
  1293. };
  1294. 3D2DC3D229B0991E0041A729 /* IMMessageView */ = {
  1295. isa = PBXGroup;
  1296. children = (
  1297. 3D2DC3D729B0991E0041A729 /* YMIMBaseMessageCell.h */,
  1298. 3D2DC3D429B0991E0041A729 /* YMIMBaseMessageCell.m */,
  1299. 3D2DC3D929B0991E0041A729 /* YMIMHintView.h */,
  1300. 3D2DC3D529B0991E0041A729 /* YMIMHintView.m */,
  1301. 3D2DC3DA29B0991E0041A729 /* YMIMMessageCollectionView.h */,
  1302. 3D2DC3D629B0991E0041A729 /* YMIMMessageCollectionView.m */,
  1303. );
  1304. path = IMMessageView;
  1305. sourceTree = "<group>";
  1306. };
  1307. 3D2DC3EE29B191A60041A729 /* Models */ = {
  1308. isa = PBXGroup;
  1309. children = (
  1310. 3D2DC3EF29B191C80041A729 /* MessageModel.h */,
  1311. 3D2DC3F029B191C80041A729 /* MessageModel.m */,
  1312. 3DFEE70C29B5CB01000AA7D5 /* SLMikeSegmentModel.h */,
  1313. 3DFEE70D29B5CB01000AA7D5 /* SLMikeSegmentModel.m */,
  1314. );
  1315. path = Models;
  1316. sourceTree = "<group>";
  1317. };
  1318. 3D3BC1212A1DF58100AEEE8E /* 音波 */ = {
  1319. isa = PBXGroup;
  1320. children = (
  1321. 3D3BC35C2A273E7400AEEE8E /* icon_yb_bg_01.jpg */,
  1322. 3D3BC34A2A25E73800AEEE8E /* icon_yb_bg.jpg */,
  1323. );
  1324. path = "音波";
  1325. sourceTree = "<group>";
  1326. };
  1327. 3D3BC1C82A25931600AEEE8E /* MomentsNewsCell */ = {
  1328. isa = PBXGroup;
  1329. children = (
  1330. 3D3BC1C92A25933400AEEE8E /* SLMomentsNewsCell.h */,
  1331. 3D3BC1CA2A25933400AEEE8E /* SLMomentsNewsCell.m */,
  1332. 3D3BC1CB2A25933400AEEE8E /* SLMomentsNewsCell.xib */,
  1333. );
  1334. path = MomentsNewsCell;
  1335. sourceTree = "<group>";
  1336. };
  1337. 3D796C6629B8305C00B7B28A /* FBKVOController */ = {
  1338. isa = PBXGroup;
  1339. children = (
  1340. 3D796C6729B8305C00B7B28A /* KVOController.h */,
  1341. 3D796C6829B8305C00B7B28A /* FBKVOController.h */,
  1342. 3D796C6929B8305C00B7B28A /* NSObject+FBKVOController.m */,
  1343. 3D796C6A29B8305C00B7B28A /* FBKVOController.m */,
  1344. 3D796C6B29B8305C00B7B28A /* NSObject+FBKVOController.h */,
  1345. );
  1346. path = FBKVOController;
  1347. sourceTree = "<group>";
  1348. };
  1349. 3D8515CD29CD92A400418BAB /* TitleBackground */ = {
  1350. isa = PBXGroup;
  1351. children = (
  1352. 3D8515CE29CD92A400418BAB /* JXCategoryTitleBackgroundCell.h */,
  1353. 3D8515D229CD92A400418BAB /* JXCategoryTitleBackgroundCell.m */,
  1354. 3D8515CF29CD92A400418BAB /* JXCategoryTitleBackgroundView.h */,
  1355. 3D8515D429CD92A400418BAB /* JXCategoryTitleBackgroundView.m */,
  1356. 3D8515D129CD92A400418BAB /* JXCategoryTitleBackgroundCellModel.m */,
  1357. 3D8515D529CD92A400418BAB /* JXCategoryTitleBackgroundCellModel.h */,
  1358. );
  1359. path = TitleBackground;
  1360. sourceTree = "<group>";
  1361. };
  1362. 3D8C9F6E29AC57F100678283 = {
  1363. isa = PBXGroup;
  1364. children = (
  1365. 3D8C9F7929AC57F200678283 /* SLAiELTS */,
  1366. 3D8C9F7829AC57F200678283 /* Products */,
  1367. 0E75F055332B539B777D0F17 /* Pods */,
  1368. CBC09BE2F25877FB83DF3E53 /* Frameworks */,
  1369. );
  1370. sourceTree = "<group>";
  1371. };
  1372. 3D8C9F7829AC57F200678283 /* Products */ = {
  1373. isa = PBXGroup;
  1374. children = (
  1375. 3D8C9F7729AC57F200678283 /* SLAiELTS.app */,
  1376. );
  1377. name = Products;
  1378. sourceTree = "<group>";
  1379. };
  1380. 3D8C9F7929AC57F200678283 /* SLAiELTS */ = {
  1381. isa = PBXGroup;
  1382. children = (
  1383. 3D2DC3B229B06D000041A729 /* Vendor */,
  1384. 3D2510AF29AF1943000AE530 /* Tool */,
  1385. 3D24986E29AC73D2003C3AFA /* AppMarcos */,
  1386. 3D24985F29AC6A7D003C3AFA /* ViewControllers */,
  1387. 3D24986229AC70CB003C3AFA /* Supporting Files */,
  1388. );
  1389. path = SLAiELTS;
  1390. sourceTree = "<group>";
  1391. };
  1392. 3D8EBBC92A14B6CB0008B0C1 /* WebVC */ = {
  1393. isa = PBXGroup;
  1394. children = (
  1395. 3D8EBBCA2A14B6EC0008B0C1 /* SLWebViewController.h */,
  1396. 3D8EBBCB2A14B6EC0008B0C1 /* SLWebViewController.m */,
  1397. 3D8EBBCC2A14B6EC0008B0C1 /* SLWebViewController.xib */,
  1398. );
  1399. path = WebVC;
  1400. sourceTree = "<group>";
  1401. };
  1402. 3D9961F429CD2EC30076DBD1 /* VCs */ = {
  1403. isa = PBXGroup;
  1404. children = (
  1405. 3DA5AF6629B88875009E4925 /* SLLxViewController.h */,
  1406. 3DA5AF6729B88875009E4925 /* SLLxViewController.m */,
  1407. 3DA5AF6829B88875009E4925 /* SLLxViewController.xib */,
  1408. 3D9961F729CD2EFD0076DBD1 /* SLNestSubjectViewController.h */,
  1409. 3D9961F529CD2EFD0076DBD1 /* SLNestSubjectViewController.m */,
  1410. 3D9961F629CD2EFD0076DBD1 /* SLNestViewController.h */,
  1411. 3D9961F829CD2EFE0076DBD1 /* SLNestViewController.m */,
  1412. 3D9961FC29CD2FB00076DBD1 /* SLContentBaseViewController.h */,
  1413. 3D9961FB29CD2FAF0076DBD1 /* SLContentBaseViewController.m */,
  1414. 3D9961FE29CD2FFA0076DBD1 /* SLListViewController.h */,
  1415. 3D9961FF29CD2FFA0076DBD1 /* SLListViewController.m */,
  1416. );
  1417. path = VCs;
  1418. sourceTree = "<group>";
  1419. };
  1420. 3DA2C73229CAA9AB0087CDB4 /* Nuisdk */ = {
  1421. isa = PBXGroup;
  1422. children = (
  1423. 3DA2C73329CAA9C30087CDB4 /* token */,
  1424. );
  1425. path = Nuisdk;
  1426. sourceTree = "<group>";
  1427. };
  1428. 3DA2C73329CAA9C30087CDB4 /* token */ = {
  1429. isa = PBXGroup;
  1430. children = (
  1431. 3DA2C73429CAA9C30087CDB4 /* TokenHttpRequest.h */,
  1432. 3DA2C73629CAA9C30087CDB4 /* TokenHttpRequest.m */,
  1433. 3DA2C73529CAA9C30087CDB4 /* AccessToken.h */,
  1434. 3DA2C73729CAA9C30087CDB4 /* AccessToken.m */,
  1435. );
  1436. path = token;
  1437. sourceTree = "<group>";
  1438. };
  1439. 3DA5AF5D29B8873B009E4925 /* Home */ = {
  1440. isa = PBXGroup;
  1441. children = (
  1442. 3DA5AF7929B96B40009E4925 /* Models */,
  1443. 3DA5AF7529B96B27009E4925 /* Views */,
  1444. 3DA5AF5E29B8875A009E4925 /* SLHomeViewController.h */,
  1445. 3DA5AF5F29B8875A009E4925 /* SLHomeViewController.m */,
  1446. 3DA5AF6029B8875A009E4925 /* SLHomeViewController.xib */,
  1447. 3D1B9CE929C038280008D01A /* SLTargetViewController.h */,
  1448. 3D1B9CEA29C038280008D01A /* SLTargetViewController.m */,
  1449. 3D1B9CEB29C038280008D01A /* SLTargetViewController.xib */,
  1450. );
  1451. path = Home;
  1452. sourceTree = "<group>";
  1453. };
  1454. 3DA5AF6329B887D4009E4925 /* BaseVC */ = {
  1455. isa = PBXGroup;
  1456. children = (
  1457. 3DB97D4E29D6AAF900B12754 /* BaseRefreshView */,
  1458. 3DA5AF5B29B8843C009E4925 /* SLBaseTabBarController.h */,
  1459. 3DA5AF5A29B8843C009E4925 /* SLBaseTabBarController.m */,
  1460. 3D24986329AC7224003C3AFA /* SLBaseViewController.h */,
  1461. 3D24986429AC7224003C3AFA /* SLBaseViewController.m */,
  1462. 3D25106329AC9694000AE530 /* SLBaseNavigationController.h */,
  1463. 3D25106429AC9694000AE530 /* SLBaseNavigationController.m */,
  1464. );
  1465. path = BaseVC;
  1466. sourceTree = "<group>";
  1467. };
  1468. 3DA5AF6529B8885D009E4925 /* LxVC */ = {
  1469. isa = PBXGroup;
  1470. children = (
  1471. 3D9961F429CD2EC30076DBD1 /* VCs */,
  1472. 3D1B987429BEE6350008D01A /* Views */,
  1473. );
  1474. path = LxVC;
  1475. sourceTree = "<group>";
  1476. };
  1477. 3DA5AF6B29B88884009E4925 /* MyVC */ = {
  1478. isa = PBXGroup;
  1479. children = (
  1480. 3DA5AF8029B97974009E4925 /* Models */,
  1481. 3DF3DACE29BAC8AF00CAD3AB /* VCs */,
  1482. 3DA5AF7129B96718009E4925 /* Views */,
  1483. );
  1484. path = MyVC;
  1485. sourceTree = "<group>";
  1486. };
  1487. 3DA5AF7129B96718009E4925 /* Views */ = {
  1488. isa = PBXGroup;
  1489. children = (
  1490. 3DF3DAA929B9A6AF00CAD3AB /* Cells */,
  1491. 3DF3DAA029B98A7D00CAD3AB /* SLMyView.h */,
  1492. 3DF3DA9F29B98A7D00CAD3AB /* SLMyView.m */,
  1493. 3DF3DAA229B9A68800CAD3AB /* SLBaseCellView.h */,
  1494. 3DF3DAA329B9A68800CAD3AB /* SLBaseCellView.m */,
  1495. 3DF3DAA729B9A6AA00CAD3AB /* SLBaseCellView.xib */,
  1496. 3DF3DADC29BAFA0600CAD3AB /* SLMySpeedView.h */,
  1497. 3DF3DADD29BAFA0600CAD3AB /* SLMySpeedView.m */,
  1498. 3DF3DADF29BAFA4B00CAD3AB /* SLMySpeedView.xib */,
  1499. );
  1500. path = Views;
  1501. sourceTree = "<group>";
  1502. };
  1503. 3DA5AF7529B96B27009E4925 /* Views */ = {
  1504. isa = PBXGroup;
  1505. children = (
  1506. 3DF3DAF629BB184300CAD3AB /* Cells */,
  1507. 3DA5AF7629B96B33009E4925 /* SLBaseMainView.h */,
  1508. 3DA5AF7729B96B33009E4925 /* SLBaseMainView.m */,
  1509. 3DF3DAF329BB170F00CAD3AB /* SLHomeView.h */,
  1510. 3DF3DAF429BB170F00CAD3AB /* SLHomeView.m */,
  1511. 3D1B986329BEAF2F0008D01A /* SLHorScrBtns.h */,
  1512. 3D1B986429BEAF2F0008D01A /* SLHorScrBtns.m */,
  1513. 3D1B986829BEAFEB0008D01A /* SLHorScrBtns.xib */,
  1514. 3D2D8C0229DE7288009392DA /* SLCustNavView.h */,
  1515. 3D2D8C0129DE7287009392DA /* SLCustNavView.m */,
  1516. );
  1517. path = Views;
  1518. sourceTree = "<group>";
  1519. };
  1520. 3DA5AF7929B96B40009E4925 /* Models */ = {
  1521. isa = PBXGroup;
  1522. children = (
  1523. 3DA5AF7B29B96B55009E4925 /* SLPageViewModel.h */,
  1524. 3DA5AF7A29B96B55009E4925 /* SLPageViewModel.m */,
  1525. 3DA5AF7D29B96E11009E4925 /* SLPageModel.h */,
  1526. 3DA5AF7E29B96E11009E4925 /* SLPageModel.m */,
  1527. 3D1B9D0029C16DD00008D01A /* SLTargetModel.h */,
  1528. 3D1B9D0129C16DD00008D01A /* SLTargetModel.m */,
  1529. 3D19CBEC29E682C20041A6B8 /* SLChatListModel.h */,
  1530. 3D19CBED29E682C20041A6B8 /* SLChatListModel.m */,
  1531. );
  1532. path = Models;
  1533. sourceTree = "<group>";
  1534. };
  1535. 3DA5AF8029B97974009E4925 /* Models */ = {
  1536. isa = PBXGroup;
  1537. children = (
  1538. 3D1B9D0629C1B7A90008D01A /* SLImagePickerAndUpload.h */,
  1539. 3D1B9D0729C1B7A90008D01A /* SLImagePickerAndUpload.m */,
  1540. );
  1541. path = Models;
  1542. sourceTree = "<group>";
  1543. };
  1544. 3DB0AE1429D6B64200671744 /* NullSafe */ = {
  1545. isa = PBXGroup;
  1546. children = (
  1547. 3DB0AE1529D6B64200671744 /* NullSafe.m */,
  1548. );
  1549. path = NullSafe;
  1550. sourceTree = "<group>";
  1551. };
  1552. 3DB97D2029D6A86D00B12754 /* Moments */ = {
  1553. isa = PBXGroup;
  1554. children = (
  1555. 3DB97D2429D6A86D00B12754 /* Model */,
  1556. 3D24D40929DEB23C00014D1C /* ZLPhotoBrowserTool */,
  1557. 3DB97D2129D6A86D00B12754 /* MomentsVc */,
  1558. 3DB97D2729D6A86D00B12754 /* Views */,
  1559. );
  1560. path = Moments;
  1561. sourceTree = "<group>";
  1562. };
  1563. 3DB97D2129D6A86D00B12754 /* MomentsVc */ = {
  1564. isa = PBXGroup;
  1565. children = (
  1566. 3DE9967629E915BF00C50A83 /* SLMomentsVc.h */,
  1567. 3DE9967729E915BF00C50A83 /* SLMomentsVc.m */,
  1568. 3DE9967829E915BF00C50A83 /* SLMomentsVc.xib */,
  1569. 3D24D40429DEAF3200014D1C /* SLCreatMomentsVc.h */,
  1570. 3D24D40529DEAF3200014D1C /* SLCreatMomentsVc.m */,
  1571. 3D24D40629DEAF3200014D1C /* SLCreatMomentsVc.xib */,
  1572. 3D5BC38C29E3F87100748197 /* SLFriensInfoVc.h */,
  1573. 3D5BC38D29E3F87100748197 /* SLFriensInfoVc.m */,
  1574. 3D5BC38E29E3F87100748197 /* SLFriensInfoVc.xib */,
  1575. 3D19CBFB29E7DF6B0041A6B8 /* SLMomentsCommentVc.h */,
  1576. 3D19CBFC29E7DF6B0041A6B8 /* SLMomentsCommentVc.m */,
  1577. 3D19CBFD29E7DF6B0041A6B8 /* SLMomentsCommentVc.xib */,
  1578. 3D19CC0029E7E9340041A6B8 /* SLMomentDetailTableVc.h */,
  1579. 3D19CC0129E7E9340041A6B8 /* SLMomentDetailTableVc.m */,
  1580. 3DE9968029EE72D300C50A83 /* SLAddFriendVc.h */,
  1581. 3DE9968129EE72D300C50A83 /* SLAddFriendVc.m */,
  1582. 3DE9968229EE72D300C50A83 /* SLAddFriendVc.xib */,
  1583. 3D3BC1C32A25903700AEEE8E /* SLMomentsNewsVc.h */,
  1584. 3D3BC1C42A25903700AEEE8E /* SLMomentsNewsVc.m */,
  1585. 3D3BC1C52A25903700AEEE8E /* SLMomentsNewsVc.xib */,
  1586. );
  1587. path = MomentsVc;
  1588. sourceTree = "<group>";
  1589. };
  1590. 3DB97D2429D6A86D00B12754 /* Model */ = {
  1591. isa = PBXGroup;
  1592. children = (
  1593. 3DB97D2529D6A86D00B12754 /* SDTimeLineCellModel.h */,
  1594. 3DB97D2629D6A86D00B12754 /* SDTimeLineCellModel.m */,
  1595. 3D58829D2A29C17D00F1B38E /* SLMomentsNewsModel.h */,
  1596. 3D58829E2A29C17D00F1B38E /* SLMomentsNewsModel.m */,
  1597. );
  1598. path = Model;
  1599. sourceTree = "<group>";
  1600. };
  1601. 3DB97D2729D6A86D00B12754 /* Views */ = {
  1602. isa = PBXGroup;
  1603. children = (
  1604. 3D3BC1C82A25931600AEEE8E /* MomentsNewsCell */,
  1605. 3DB97D2829D6A86D00B12754 /* OperationMenu */,
  1606. 3DB97D2B29D6A86D00B12754 /* CommentView */,
  1607. 3DB97D3129D6A86D00B12754 /* HeaderView */,
  1608. 3DB97D3429D6A86D00B12754 /* Cell */,
  1609. 3DB97D3729D6A86D00B12754 /* TimeLineRefreshHeader */,
  1610. 3DB97D3A29D6A86D00B12754 /* PhotoContainer */,
  1611. 3D5BC38929E3E77400748197 /* SLMoentsChatView.h */,
  1612. 3D5BC38A29E3E77400748197 /* SLMoentsChatView.m */,
  1613. );
  1614. path = Views;
  1615. sourceTree = "<group>";
  1616. };
  1617. 3DB97D2829D6A86D00B12754 /* OperationMenu */ = {
  1618. isa = PBXGroup;
  1619. children = (
  1620. 3DB97D2929D6A86D00B12754 /* SDTimeLineCellOperationMenu.h */,
  1621. 3DB97D2A29D6A86D00B12754 /* SDTimeLineCellOperationMenu.m */,
  1622. );
  1623. path = OperationMenu;
  1624. sourceTree = "<group>";
  1625. };
  1626. 3DB97D2B29D6A86D00B12754 /* CommentView */ = {
  1627. isa = PBXGroup;
  1628. children = (
  1629. 3DB97D2C29D6A86D00B12754 /* SDTimeLineCellCommentView.h */,
  1630. 3DB97D2D29D6A86D00B12754 /* SDTimeLineCellCommentView.m */,
  1631. );
  1632. path = CommentView;
  1633. sourceTree = "<group>";
  1634. };
  1635. 3DB97D3129D6A86D00B12754 /* HeaderView */ = {
  1636. isa = PBXGroup;
  1637. children = (
  1638. 3DB97D3329D6A86D00B12754 /* SDTimeLineTableHeaderView.h */,
  1639. 3DB97D3229D6A86D00B12754 /* SDTimeLineTableHeaderView.m */,
  1640. 3D3BC1BE2A2587D700AEEE8E /* SLNewMsgBgView.h */,
  1641. 3D3BC1BF2A2587D700AEEE8E /* SLNewMsgBgView.m */,
  1642. 3D3BC1C12A2587E900AEEE8E /* SLNewMsgBgView.xib */,
  1643. );
  1644. path = HeaderView;
  1645. sourceTree = "<group>";
  1646. };
  1647. 3DB97D3429D6A86D00B12754 /* Cell */ = {
  1648. isa = PBXGroup;
  1649. children = (
  1650. 3DB97D3529D6A86D00B12754 /* SDTimeLineCell.h */,
  1651. 3DB97D3629D6A86D00B12754 /* SDTimeLineCell.m */,
  1652. );
  1653. path = Cell;
  1654. sourceTree = "<group>";
  1655. };
  1656. 3DB97D3729D6A86D00B12754 /* TimeLineRefreshHeader */ = {
  1657. isa = PBXGroup;
  1658. children = (
  1659. 3DB97D3929D6A86D00B12754 /* SDTimeLineRefreshHeader.h */,
  1660. 3DB97D3829D6A86D00B12754 /* SDTimeLineRefreshHeader.m */,
  1661. );
  1662. path = TimeLineRefreshHeader;
  1663. sourceTree = "<group>";
  1664. };
  1665. 3DB97D3A29D6A86D00B12754 /* PhotoContainer */ = {
  1666. isa = PBXGroup;
  1667. children = (
  1668. 3DB97D3C29D6A86D00B12754 /* SDWeiXinPhotoContainerView.h */,
  1669. 3DB97D3B29D6A86D00B12754 /* SDWeiXinPhotoContainerView.m */,
  1670. );
  1671. path = PhotoContainer;
  1672. sourceTree = "<group>";
  1673. };
  1674. 3DB97D4629D6AAC500B12754 /* SDAutoLayout */ = {
  1675. isa = PBXGroup;
  1676. children = (
  1677. 3DB97D4729D6AAC500B12754 /* UIView+SDAutoLayout.m */,
  1678. 3DB97D4829D6AAC500B12754 /* UITableView+SDAutoTableViewCellHeight.h */,
  1679. 3DB97D4929D6AAC500B12754 /* SDAutoLayout.h */,
  1680. 3DB97D4A29D6AAC500B12754 /* UITableView+SDAutoTableViewCellHeight.m */,
  1681. 3DB97D4B29D6AAC500B12754 /* UIView+SDAutoLayout.h */,
  1682. );
  1683. path = SDAutoLayout;
  1684. sourceTree = "<group>";
  1685. };
  1686. 3DB97D4E29D6AAF900B12754 /* BaseRefreshView */ = {
  1687. isa = PBXGroup;
  1688. children = (
  1689. 3DB97D4F29D6AAF900B12754 /* SDBaseRefreshView.h */,
  1690. 3DB97D5029D6AAF900B12754 /* SDBaseRefreshView.m */,
  1691. );
  1692. path = BaseRefreshView;
  1693. sourceTree = "<group>";
  1694. };
  1695. 3DB97D5229D6AB2200B12754 /* SDPhotoBrowser */ = {
  1696. isa = PBXGroup;
  1697. children = (
  1698. 3DB97D5329D6AB2200B12754 /* SDPhotoBrowserConfig.h */,
  1699. 3DB97D5429D6AB2200B12754 /* SDPhotoBrowser.m */,
  1700. 3DB97D5529D6AB2200B12754 /* SDWaitingView.m */,
  1701. 3DB97D5629D6AB2200B12754 /* SDBrowserImageView.m */,
  1702. 3DB97D5729D6AB2200B12754 /* SDWaitingView.h */,
  1703. 3DB97D5829D6AB2200B12754 /* SDPhotoBrowser.h */,
  1704. 3DB97D5929D6AB2200B12754 /* SDBrowserImageView.h */,
  1705. );
  1706. path = SDPhotoBrowser;
  1707. sourceTree = "<group>";
  1708. };
  1709. 3DB97D6029D6ABC000B12754 /* SDRefeshView */ = {
  1710. isa = PBXGroup;
  1711. children = (
  1712. 3DB97D6129D6ABC000B12754 /* UIView+SDExtension.h */,
  1713. 3DB97D6229D6ABC000B12754 /* SDRefreshFooterView.h */,
  1714. 3DB97D6329D6ABC000B12754 /* SDRefreshView.h */,
  1715. 3DB97D6429D6ABC000B12754 /* SDRefreshHeaderView.m */,
  1716. 3DB97D6529D6ABC000B12754 /* sdRefeshView_arrow@2x.png */,
  1717. 3DB97D6629D6ABC000B12754 /* UIView+SDExtension.m */,
  1718. 3DB97D6729D6ABC000B12754 /* SDRefreshFooterView.m */,
  1719. 3DB97D6829D6ABC000B12754 /* SDRefresh.h */,
  1720. 3DB97D6929D6ABC000B12754 /* SDRefreshHeaderView.h */,
  1721. 3DB97D6A29D6ABC000B12754 /* SDRefreshView.m */,
  1722. );
  1723. path = SDRefeshView;
  1724. sourceTree = "<group>";
  1725. };
  1726. 3DB97D7029D6ABEF00B12754 /* MLEmojiLabel */ = {
  1727. isa = PBXGroup;
  1728. children = (
  1729. 3DB97D7129D6ABEF00B12754 /* MLEmojiLabel.h */,
  1730. 3DB97D7229D6ABEF00B12754 /* MLEmoji_Expression.plist */,
  1731. 3DB97D7329D6ABEF00B12754 /* MLEmoji_Expression.bundle */,
  1732. 3DB97D7429D6ABEF00B12754 /* MLEmoji_ExpressionImage.plist */,
  1733. 3DB97D7529D6ABEF00B12754 /* MLEmojiLabel.m */,
  1734. 3DB97D7629D6ABEF00B12754 /* TTTAttributedLabel */,
  1735. 3DB97D7929D6ABEF00B12754 /* MLLabel */,
  1736. );
  1737. path = MLEmojiLabel;
  1738. sourceTree = "<group>";
  1739. };
  1740. 3DB97D7629D6ABEF00B12754 /* TTTAttributedLabel */ = {
  1741. isa = PBXGroup;
  1742. children = (
  1743. 3DB97D7729D6ABEF00B12754 /* TTTAttributedLabel.h */,
  1744. 3DB97D7829D6ABEF00B12754 /* TTTAttributedLabel.m */,
  1745. );
  1746. path = TTTAttributedLabel;
  1747. sourceTree = "<group>";
  1748. };
  1749. 3DB97D7929D6ABEF00B12754 /* MLLabel */ = {
  1750. isa = PBXGroup;
  1751. children = (
  1752. 3DB97D7A29D6ABEF00B12754 /* LICENSE */,
  1753. 3DB97D7B29D6ABEF00B12754 /* Classes */,
  1754. 3DB97D9429D6ABEF00B12754 /* README.md */,
  1755. );
  1756. path = MLLabel;
  1757. sourceTree = "<group>";
  1758. };
  1759. 3DB97D7B29D6ABEF00B12754 /* Classes */ = {
  1760. isa = PBXGroup;
  1761. children = (
  1762. 3DB97D7C29D6ABEF00B12754 /* MLLinkLabel.h */,
  1763. 3DB97D7D29D6ABEF00B12754 /* Category */,
  1764. 3DB97D8429D6ABEF00B12754 /* MLLabel.h */,
  1765. 3DB97D8529D6ABEF00B12754 /* MLLinkLabel.m */,
  1766. 3DB97D8629D6ABEF00B12754 /* Expression */,
  1767. 3DB97D8F29D6ABEF00B12754 /* MLLabel.m */,
  1768. 3DB97D9029D6ABEF00B12754 /* Helper */,
  1769. );
  1770. path = Classes;
  1771. sourceTree = "<group>";
  1772. };
  1773. 3DB97D7D29D6ABEF00B12754 /* Category */ = {
  1774. isa = PBXGroup;
  1775. children = (
  1776. 3DB97D7E29D6ABEF00B12754 /* NSMutableAttributedString+MLLabel.m */,
  1777. 3DB97D7F29D6ABEF00B12754 /* NSString+MLLabel.h */,
  1778. 3DB97D8029D6ABEF00B12754 /* NSAttributedString+MLLabel.h */,
  1779. 3DB97D8129D6ABEF00B12754 /* NSString+MLLabel.m */,
  1780. 3DB97D8229D6ABEF00B12754 /* NSMutableAttributedString+MLLabel.h */,
  1781. 3DB97D8329D6ABEF00B12754 /* NSAttributedString+MLLabel.m */,
  1782. );
  1783. path = Category;
  1784. sourceTree = "<group>";
  1785. };
  1786. 3DB97D8629D6ABEF00B12754 /* Expression */ = {
  1787. isa = PBXGroup;
  1788. children = (
  1789. 3DB97D8729D6ABEF00B12754 /* NSString+MLExpression.h */,
  1790. 3DB97D8829D6ABEF00B12754 /* NSAttributedString+MLExpression.m */,
  1791. 3DB97D8929D6ABEF00B12754 /* MLTextAttachment.m */,
  1792. 3DB97D8A29D6ABEF00B12754 /* MLExpressionManager.h */,
  1793. 3DB97D8B29D6ABEF00B12754 /* NSAttributedString+MLExpression.h */,
  1794. 3DB97D8C29D6ABEF00B12754 /* NSString+MLExpression.m */,
  1795. 3DB97D8D29D6ABEF00B12754 /* MLTextAttachment.h */,
  1796. 3DB97D8E29D6ABEF00B12754 /* MLExpressionManager.m */,
  1797. );
  1798. path = Expression;
  1799. sourceTree = "<group>";
  1800. };
  1801. 3DB97D9029D6ABEF00B12754 /* Helper */ = {
  1802. isa = PBXGroup;
  1803. children = (
  1804. 3DB97D9129D6ABEF00B12754 /* MLLabelLayoutManager.m */,
  1805. 3DB97D9229D6ABEF00B12754 /* MLLabelLayoutManager.h */,
  1806. 3DB97D9329D6ABEF00B12754 /* MLLabel+Override.h */,
  1807. );
  1808. path = Helper;
  1809. sourceTree = "<group>";
  1810. };
  1811. 3DB97DA629D6AC0A00B12754 /* LEETheme */ = {
  1812. isa = PBXGroup;
  1813. children = (
  1814. 3DB97DA729D6AC0A00B12754 /* LEETheme.h */,
  1815. 3DB97DA829D6AC0A00B12754 /* LEETheme.m */,
  1816. );
  1817. path = LEETheme;
  1818. sourceTree = "<group>";
  1819. };
  1820. 3DF3DAA929B9A6AF00CAD3AB /* Cells */ = {
  1821. isa = PBXGroup;
  1822. children = (
  1823. 3DA5AF7329B96726009E4925 /* SLMeHeaderCollectionViewCell.h */,
  1824. 3DA5AF7229B96726009E4925 /* SLMeHeaderCollectionViewCell.m */,
  1825. 3DF3DAAA29B9AA3400CAD3AB /* SLMyListCollectionViewCell.h */,
  1826. 3DF3DAAB29B9AA3400CAD3AB /* SLMyListCollectionViewCell.m */,
  1827. 3DF3DAAC29B9AA3400CAD3AB /* SLMyListCollectionViewCell.xib */,
  1828. 3DF3DAB429B9B93000CAD3AB /* SLBaseCollectionViewCell.h */,
  1829. 3DF3DAB529B9B93000CAD3AB /* SLBaseCollectionViewCell.m */,
  1830. 3DF3DAB629B9B93000CAD3AB /* SLBaseCollectionViewCell.xib */,
  1831. 3DF3DAC629B9D19600CAD3AB /* SLBaseTableViewCell.h */,
  1832. 3DF3DAC729B9D19600CAD3AB /* SLBaseTableViewCell.m */,
  1833. 3DF3DAC829B9D19600CAD3AB /* SLBaseTableViewCell.xib */,
  1834. 3DF3DAE129BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.h */,
  1835. 3DF3DAE229BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.m */,
  1836. 3DF3DAE329BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.xib */,
  1837. 3D3BC3512A26E2B000AEEE8E /* SLMySpeedCell.h */,
  1838. 3D3BC3522A26E2B000AEEE8E /* SLMySpeedCell.m */,
  1839. 3D3BC3532A26E2B000AEEE8E /* SLMySpeedCell.xib */,
  1840. );
  1841. path = Cells;
  1842. sourceTree = "<group>";
  1843. };
  1844. 3DF3DAB929B9C6E000CAD3AB /* YMNavigationBar */ = {
  1845. isa = PBXGroup;
  1846. children = (
  1847. 3DF3DABA29B9C6E000CAD3AB /* YMNavigationBar.h */,
  1848. 3DF3DAC029B9C6E000CAD3AB /* YMNavigationBar.m */,
  1849. 3DF3DABB29B9C6E000CAD3AB /* YMBarItemView.h */,
  1850. 3DF3DABF29B9C6E000CAD3AB /* YMBarItemView.m */,
  1851. 3DF3DABC29B9C6E000CAD3AB /* YMBarItem.h */,
  1852. 3DF3DABE29B9C6E000CAD3AB /* YMBarItem.m */,
  1853. 3DF3DABD29B9C6E000CAD3AB /* YMBarButtonItem.m */,
  1854. 3DF3DAC129B9C6E000CAD3AB /* YMBarButtonItem.h */,
  1855. );
  1856. path = YMNavigationBar;
  1857. sourceTree = "<group>";
  1858. };
  1859. 3DF3DACE29BAC8AF00CAD3AB /* VCs */ = {
  1860. isa = PBXGroup;
  1861. children = (
  1862. 3DA5AF6C29B88898009E4925 /* SLMyViewController.h */,
  1863. 3DA5AF6D29B88898009E4925 /* SLMyViewController.m */,
  1864. 3DA5AF6E29B88898009E4925 /* SLMyViewController.xib */,
  1865. 3DF3DAAF29B9B86200CAD3AB /* SLUserCenterViewController.h */,
  1866. 3DF3DAB029B9B86200CAD3AB /* SLUserCenterViewController.m */,
  1867. 3DF3DAB129B9B86200CAD3AB /* SLUserCenterViewController.xib */,
  1868. 3DF3DACF29BAC90F00CAD3AB /* SLModifyNicknameVc.h */,
  1869. 3DF3DAD029BAC90F00CAD3AB /* SLModifyNicknameVc.m */,
  1870. 3DF3DAD129BAC90F00CAD3AB /* SLModifyNicknameVc.xib */,
  1871. 3DF3DAD429BAD1BA00CAD3AB /* SLChangeMobileVc.h */,
  1872. 3DF3DAD529BAD1BA00CAD3AB /* SLChangeMobileVc.m */,
  1873. 3DF3DAD629BAD1BA00CAD3AB /* SLChangeMobileVc.xib */,
  1874. 3D1B9CF529C071AD0008D01A /* SLFeedbackVc.h */,
  1875. 3D1B9CF629C071AD0008D01A /* SLFeedbackVc.m */,
  1876. 3D1B9CF729C071AD0008D01A /* SLFeedbackVc.xib */,
  1877. 3D3BC34C2A26D7D300AEEE8E /* SLAiSetVc.h */,
  1878. 3D3BC34D2A26D7D300AEEE8E /* SLAiSetVc.m */,
  1879. 3D3BC34E2A26D7D300AEEE8E /* SLAiSetVc.xib */,
  1880. 3D3BC3572A27283600AEEE8E /* SLSexSetVc.h */,
  1881. 3D3BC3582A27283600AEEE8E /* SLSexSetVc.m */,
  1882. 3D3BC3592A27283600AEEE8E /* SLSexSetVc.xib */,
  1883. 3D58825A2A28397D00F1B38E /* SLCitySetVc.h */,
  1884. 3D58825B2A28397D00F1B38E /* SLCitySetVc.m */,
  1885. 3D58825C2A28397D00F1B38E /* SLCitySetVc.xib */,
  1886. 3D5882882A2976CD00F1B38E /* SLMsgBgSetVc.h */,
  1887. 3D5882892A2976CD00F1B38E /* SLMsgBgSetVc.m */,
  1888. 3D58828A2A2976CD00F1B38E /* SLMsgBgSetVc.xib */,
  1889. );
  1890. path = VCs;
  1891. sourceTree = "<group>";
  1892. };
  1893. 3DF3DAE929BB131100CAD3AB /* RDVTabBarController */ = {
  1894. isa = PBXGroup;
  1895. children = (
  1896. 3DF3DAEC29BB131100CAD3AB /* RDVTabBarItem.h */,
  1897. 3DF3DAEF29BB131100CAD3AB /* RDVTabBarItem.m */,
  1898. 3DF3DAED29BB131100CAD3AB /* RDVTabBar.h */,
  1899. 3DF3DAEA29BB131100CAD3AB /* RDVTabBar.m */,
  1900. 3DF3DAEB29BB131100CAD3AB /* RDVTabBarController.h */,
  1901. 3DF3DAEE29BB131100CAD3AB /* RDVTabBarController.m */,
  1902. );
  1903. path = RDVTabBarController;
  1904. sourceTree = "<group>";
  1905. };
  1906. 3DF3DAF629BB184300CAD3AB /* Cells */ = {
  1907. isa = PBXGroup;
  1908. children = (
  1909. 3D2D8C0029DE638F009392DA /* xxx */,
  1910. 3D1B986F29BEB35B0008D01A /* SLHorScrBtnsCell.h */,
  1911. 3D1B987029BEB35B0008D01A /* SLHorScrBtnsCell.m */,
  1912. 3D1B987129BEB35B0008D01A /* SLHorScrBtnsCell.xib */,
  1913. 3D1B9D0929C2A1360008D01A /* SLPlaceholderCell.h */,
  1914. 3D1B9D0A29C2A1360008D01A /* SLPlaceholderCell.m */,
  1915. 3D1B9D0B29C2A1360008D01A /* SLPlaceholderCell.xib */,
  1916. 3D8EBBC42A131FA40008B0C1 /* SLHomeMsgTableViewCell.h */,
  1917. 3D8EBBC52A131FA40008B0C1 /* SLHomeMsgTableViewCell.m */,
  1918. 3D8EBBC62A131FA40008B0C1 /* SLHomeMsgTableViewCell.xib */,
  1919. );
  1920. path = Cells;
  1921. sourceTree = "<group>";
  1922. };
  1923. CBC09BE2F25877FB83DF3E53 /* Frameworks */ = {
  1924. isa = PBXGroup;
  1925. children = (
  1926. 3D1B9CE629C01CB00008D01A /* UnityFramework */,
  1927. CCE37EAEF15FC154202111E3 /* Pods_SLAiELTS.framework */,
  1928. );
  1929. name = Frameworks;
  1930. sourceTree = "<group>";
  1931. };
  1932. /* End PBXGroup section */
  1933. /* Begin PBXNativeTarget section */
  1934. 3D8C9F7629AC57F200678283 /* SLAiELTS */ = {
  1935. isa = PBXNativeTarget;
  1936. buildConfigurationList = 3D8C9F9029AC57F300678283 /* Build configuration list for PBXNativeTarget "SLAiELTS" */;
  1937. buildPhases = (
  1938. 2C10509C7A5137E2CBF6E382 /* [CP] Check Pods Manifest.lock */,
  1939. 3D8C9F7329AC57F200678283 /* Sources */,
  1940. 3D8C9F7429AC57F200678283 /* Frameworks */,
  1941. 3D8C9F7529AC57F200678283 /* Resources */,
  1942. 3F7E65B0D486DBDC11017122 /* [CP] Embed Pods Frameworks */,
  1943. 3D2DC3B729B06D6D0041A729 /* Embed Frameworks */,
  1944. 3D3BC16C2A2054B600AEEE8E /* ShellScript */,
  1945. );
  1946. buildRules = (
  1947. );
  1948. dependencies = (
  1949. );
  1950. name = SLAiELTS;
  1951. productName = SLAiELTS;
  1952. productReference = 3D8C9F7729AC57F200678283 /* SLAiELTS.app */;
  1953. productType = "com.apple.product-type.application";
  1954. };
  1955. /* End PBXNativeTarget section */
  1956. /* Begin PBXProject section */
  1957. 3D8C9F6F29AC57F100678283 /* Project object */ = {
  1958. isa = PBXProject;
  1959. attributes = {
  1960. BuildIndependentTargetsInParallel = 1;
  1961. LastUpgradeCheck = 1400;
  1962. TargetAttributes = {
  1963. 3D8C9F7629AC57F200678283 = {
  1964. CreatedOnToolsVersion = 14.0;
  1965. };
  1966. };
  1967. };
  1968. buildConfigurationList = 3D8C9F7229AC57F100678283 /* Build configuration list for PBXProject "SLAiELTS" */;
  1969. compatibilityVersion = "Xcode 14.0";
  1970. developmentRegion = en;
  1971. hasScannedForEncodings = 0;
  1972. knownRegions = (
  1973. en,
  1974. Base,
  1975. );
  1976. mainGroup = 3D8C9F6E29AC57F100678283;
  1977. productRefGroup = 3D8C9F7829AC57F200678283 /* Products */;
  1978. projectDirPath = "";
  1979. projectRoot = "";
  1980. targets = (
  1981. 3D8C9F7629AC57F200678283 /* SLAiELTS */,
  1982. );
  1983. };
  1984. /* End PBXProject section */
  1985. /* Begin PBXResourcesBuildPhase section */
  1986. 3D8C9F7529AC57F200678283 /* Resources */ = {
  1987. isa = PBXResourcesBuildPhase;
  1988. buildActionMask = 2147483647;
  1989. files = (
  1990. 3D1B9D0D29C2A1360008D01A /* SLPlaceholderCell.xib in Resources */,
  1991. 3D1B9CF929C071AD0008D01A /* SLFeedbackVc.xib in Resources */,
  1992. 3D6EE45929F25AB400B02EBB /* SLRecomFriendsCell.xib in Resources */,
  1993. 3D58825E2A28397D00F1B38E /* SLCitySetVc.xib in Resources */,
  1994. 3D3BC1C22A2587E900AEEE8E /* SLNewMsgBgView.xib in Resources */,
  1995. 3DF3DAB329B9B86200CAD3AB /* SLUserCenterViewController.xib in Resources */,
  1996. 3DB97D6C29D6ABC100B12754 /* sdRefeshView_arrow@2x.png in Resources */,
  1997. 3D3BC34B2A25E73800AEEE8E /* icon_yb_bg.jpg in Resources */,
  1998. 3D25106129AC95A9000AE530 /* SLRetrievePWViewController.xib in Resources */,
  1999. 3D8EBBC82A131FA40008B0C1 /* SLHomeMsgTableViewCell.xib in Resources */,
  2000. 3DF3DAA829B9A6AA00CAD3AB /* SLBaseCellView.xib in Resources */,
  2001. 3DF3DAE529BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.xib in Resources */,
  2002. 3D24986D29AC72E2003C3AFA /* SLLoginVCViewController.xib in Resources */,
  2003. 3DF3DAD829BAD1BA00CAD3AB /* SLChangeMobileVc.xib in Resources */,
  2004. 3D2D8BEE29DE55A9009392DA /* unicode_to_hanyu_pinyin.txt in Resources */,
  2005. 3D58828C2A2976CD00F1B38E /* SLMsgBgSetVc.xib in Resources */,
  2006. 3D1B987329BEB35B0008D01A /* SLHorScrBtnsCell.xib in Resources */,
  2007. 3D25105729AC8FE1000AE530 /* SLRegistViewController.xib in Resources */,
  2008. 3D8C9F8A29AC57F300678283 /* LaunchScreen.storyboard in Resources */,
  2009. 3D1B9CED29C038280008D01A /* SLTargetViewController.xib in Resources */,
  2010. 3DE9968429EE72D300C50A83 /* SLAddFriendVc.xib in Resources */,
  2011. 3D1B987B29BEE6800008D01A /* SLLxTopView.xib in Resources */,
  2012. 3DA5AF6229B8875A009E4925 /* SLHomeViewController.xib in Resources */,
  2013. 3DBC3BC42A0B644600E8C766 /* SLNearbyPeopleVc.xib in Resources */,
  2014. 3D24D40829DEAF3200014D1C /* SLCreatMomentsVc.xib in Resources */,
  2015. 3D3BC1CD2A25933400AEEE8E /* SLMomentsNewsCell.xib in Resources */,
  2016. 3DF3DACA29B9D19600CAD3AB /* SLBaseTableViewCell.xib in Resources */,
  2017. 3D8C9F8729AC57F300678283 /* Assets.xcassets in Resources */,
  2018. 3D25108A29ADD490000AE530 /* SLRoleLabelView.xib in Resources */,
  2019. 3DF3DAE029BAFA4B00CAD3AB /* SLMySpeedView.xib in Resources */,
  2020. 3D5BC39029E3F87100748197 /* SLFriensInfoVc.xib in Resources */,
  2021. 3D2D8BD629DE5402009392DA /* AddressBookCell.xib in Resources */,
  2022. 3D8C9F8529AC57F200678283 /* Main.storyboard in Resources */,
  2023. 3DF3DAD329BAC90F00CAD3AB /* SLModifyNicknameVc.xib in Resources */,
  2024. 3DF3DAB829B9B93000CAD3AB /* SLBaseCollectionViewCell.xib in Resources */,
  2025. 3D3BC35D2A273E7500AEEE8E /* icon_yb_bg_01.jpg in Resources */,
  2026. 3D2DC3C629B078FE0041A729 /* Resources.bundle in Resources */,
  2027. 3D3BC3502A26D7D300AEEE8E /* SLAiSetVc.xib in Resources */,
  2028. 3D8EBBCE2A14B6EC0008B0C1 /* SLWebViewController.xib in Resources */,
  2029. 3DA5AF6A29B88875009E4925 /* SLLxViewController.xib in Resources */,
  2030. 3D1B986929BEAFEB0008D01A /* SLHorScrBtns.xib in Resources */,
  2031. 3DF3DAFB29BB187D00CAD3AB /* SLHomeTopCollectionViewCell.xib in Resources */,
  2032. 3DF3DAAE29B9AA3400CAD3AB /* SLMyListCollectionViewCell.xib in Resources */,
  2033. 3DB97D9529D6ABF000B12754 /* MLEmoji_Expression.plist in Resources */,
  2034. 3DB97D9729D6ABF000B12754 /* MLEmoji_ExpressionImage.plist in Resources */,
  2035. 3D2510A829AEF4F0000AE530 /* SLMessageViewController.xib in Resources */,
  2036. 3DA5AF7029B88898009E4925 /* SLMyViewController.xib in Resources */,
  2037. 3D25109729AEDD8F000AE530 /* SLRoleCreatSucView.xib in Resources */,
  2038. 3D24D67D29DFA23200014D1C /* SLRemidLookView.xib in Resources */,
  2039. 3D24D40329DE96A700014D1C /* SLAddressBookVc.xib in Resources */,
  2040. 3D1B988B29BEF1020008D01A /* SLLxTopCell.xib in Resources */,
  2041. 3D25107029AD8AA9000AE530 /* SLRoleLabelViewController.xib in Resources */,
  2042. 3D19CBFF29E7DF6B0041A6B8 /* SLMomentsCommentVc.xib in Resources */,
  2043. 3DBC3BC92A0B650300E8C766 /* SLNearbyPeopleCell.xib in Resources */,
  2044. 3D3BC35B2A27283600AEEE8E /* SLSexSetVc.xib in Resources */,
  2045. 3DE9967A29E915BF00C50A83 /* SLMomentsVc.xib in Resources */,
  2046. 3D3BC1C72A25903700AEEE8E /* SLMomentsNewsVc.xib in Resources */,
  2047. 3DB97D9A29D6ABF000B12754 /* LICENSE in Resources */,
  2048. 3D1B989029BEF1AC0008D01A /* SLVocabularyCell.xib in Resources */,
  2049. 3D3BC3552A26E2B000AEEE8E /* SLMySpeedCell.xib in Resources */,
  2050. 3D1B988029BEEA670008D01A /* SLVocabularyView.xib in Resources */,
  2051. 3D6EE45429F2568000B02EBB /* SLRecomFriendsVc.xib in Resources */,
  2052. 3D2DC3F629B1E6510041A729 /* SLMikeInputView.xib in Resources */,
  2053. 3DB069F929F7A71F005730D7 /* SLFriendPowerVc.xib in Resources */,
  2054. 3D25105C29AC9475000AE530 /* SLForgetPWViewController.xib in Resources */,
  2055. 3DB97DA529D6ABF000B12754 /* README.md in Resources */,
  2056. 3DB97D9629D6ABF000B12754 /* MLEmoji_Expression.bundle in Resources */,
  2057. );
  2058. runOnlyForDeploymentPostprocessing = 0;
  2059. };
  2060. /* End PBXResourcesBuildPhase section */
  2061. /* Begin PBXShellScriptBuildPhase section */
  2062. 2C10509C7A5137E2CBF6E382 /* [CP] Check Pods Manifest.lock */ = {
  2063. isa = PBXShellScriptBuildPhase;
  2064. buildActionMask = 2147483647;
  2065. files = (
  2066. );
  2067. inputFileListPaths = (
  2068. );
  2069. inputPaths = (
  2070. "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
  2071. "${PODS_ROOT}/Manifest.lock",
  2072. );
  2073. name = "[CP] Check Pods Manifest.lock";
  2074. outputFileListPaths = (
  2075. );
  2076. outputPaths = (
  2077. "$(DERIVED_FILE_DIR)/Pods-SLAiELTS-checkManifestLockResult.txt",
  2078. );
  2079. runOnlyForDeploymentPostprocessing = 0;
  2080. shellPath = /bin/sh;
  2081. 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";
  2082. showEnvVarsInLog = 0;
  2083. };
  2084. 3D3BC16C2A2054B600AEEE8E /* ShellScript */ = {
  2085. isa = PBXShellScriptBuildPhase;
  2086. buildActionMask = 2147483647;
  2087. files = (
  2088. );
  2089. inputFileListPaths = (
  2090. );
  2091. inputPaths = (
  2092. );
  2093. outputFileListPaths = (
  2094. );
  2095. outputPaths = (
  2096. );
  2097. runOnlyForDeploymentPostprocessing = 0;
  2098. shellPath = /bin/sh;
  2099. shellScript = "#!/bin/sh\n\n# Strip invalid architectures\n\nstrip_invalid_archs() {\nbinary=\"$1\"\necho \"current binary ${binary}\"\n# Get architectures for current file\narchs=\"$(lipo -info \"$binary\" | rev | cut -d ':' -f1 | rev)\"\nstripped=\"\"\nfor arch in $archs; do\nif ! [[ \"${ARCHS}\" == *\"$arch\"* ]]; then\nif [ -f \"$binary\" ]; then\n# Strip non-valid architectures in-place\nlipo -remove \"$arch\" -output \"$binary\" \"$binary\" || exit 1\nstripped=\"$stripped $arch\"\nfi\nfi\ndone\nif [[ \"$stripped\" ]]; then\necho \"Stripped $binary of architectures:$stripped\"\nfi\n}\n\nAPP_PATH=\"${TARGET_BUILD_DIR}/${WRAPPER_NAME}\"\n\n# This script loops through the frameworks embedded in the application and\n# removes unused architectures.\nfind \"$APP_PATH\" -name '*.framework' -type d | while read -r FRAMEWORK\ndo\nFRAMEWORK_EXECUTABLE_NAME=$(defaults read \"$FRAMEWORK/Info.plist\" CFBundleExecutable)\nFRAMEWORK_EXECUTABLE_PATH=\"$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME\"\necho \"Executable is $FRAMEWORK_EXECUTABLE_PATH\"\n\nstrip_invalid_archs \"$FRAMEWORK_EXECUTABLE_PATH\"\ndone\n";
  2100. };
  2101. 3F7E65B0D486DBDC11017122 /* [CP] Embed Pods Frameworks */ = {
  2102. isa = PBXShellScriptBuildPhase;
  2103. buildActionMask = 2147483647;
  2104. files = (
  2105. );
  2106. inputFileListPaths = (
  2107. "${PODS_ROOT}/Target Support Files/Pods-SLAiELTS/Pods-SLAiELTS-frameworks-${CONFIGURATION}-input-files.xcfilelist",
  2108. );
  2109. name = "[CP] Embed Pods Frameworks";
  2110. outputFileListPaths = (
  2111. "${PODS_ROOT}/Target Support Files/Pods-SLAiELTS/Pods-SLAiELTS-frameworks-${CONFIGURATION}-output-files.xcfilelist",
  2112. );
  2113. runOnlyForDeploymentPostprocessing = 0;
  2114. shellPath = /bin/sh;
  2115. shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-SLAiELTS/Pods-SLAiELTS-frameworks.sh\"\n";
  2116. showEnvVarsInLog = 0;
  2117. };
  2118. /* End PBXShellScriptBuildPhase section */
  2119. /* Begin PBXSourcesBuildPhase section */
  2120. 3D8C9F7329AC57F200678283 /* Sources */ = {
  2121. isa = PBXSourcesBuildPhase;
  2122. buildActionMask = 2147483647;
  2123. files = (
  2124. 3D2DC3C929B07A6F0041A729 /* NuiSdkUtils.m in Sources */,
  2125. 3DF3DAE429BAFCCA00CAD3AB /* SLMySpeedCollectionViewCell.m in Sources */,
  2126. 3D1B9CF829C071AD0008D01A /* SLFeedbackVc.m in Sources */,
  2127. 3D2D8BED29DE55A9009392DA /* PinyinFormatter.m in Sources */,
  2128. 3DA5AF6F29B88898009E4925 /* SLMyViewController.m in Sources */,
  2129. 3DB97D4029D6A86E00B12754 /* SDTimeLineCellCommentView.m in Sources */,
  2130. 3D2D8BE929DE55A9009392DA /* NSString+PinYin4Cocoa.m in Sources */,
  2131. 3D1B9D0529C1A14A0008D01A /* UIImagePickerController+YMBlocks.m in Sources */,
  2132. 3D2DC3C429B0716E0041A729 /* SLNuisdkPlay.m in Sources */,
  2133. 3DF3DAD229BAC90F00CAD3AB /* SLModifyNicknameVc.m in Sources */,
  2134. 3DF3DAF229BB131100CAD3AB /* RDVTabBarItem.m in Sources */,
  2135. 3DB97D9C29D6ABF000B12754 /* NSString+MLLabel.m in Sources */,
  2136. 3D24D40229DE96A700014D1C /* SLAddressBookVc.m in Sources */,
  2137. 3D2D8BEA29DE55A9009392DA /* PinyinHelper.m in Sources */,
  2138. 3D1B988F29BEF1AC0008D01A /* SLVocabularyCell.m in Sources */,
  2139. 3DF3DAD729BAD1BA00CAD3AB /* SLChangeMobileVc.m in Sources */,
  2140. 3D1B987729BEE6640008D01A /* SLLxTopView.m in Sources */,
  2141. 3D1B9CF329C044AA0008D01A /* SLPickView.m in Sources */,
  2142. 3D25106029AC95A9000AE530 /* SLRetrievePWViewController.m in Sources */,
  2143. 3D25105629AC8FE1000AE530 /* SLRegistViewController.m in Sources */,
  2144. 3DB97D3F29D6A86E00B12754 /* SDTimeLineCellOperationMenu.m in Sources */,
  2145. 3DF3DAC929B9D19600CAD3AB /* SLBaseTableViewCell.m in Sources */,
  2146. 3DB97D5129D6AAF900B12754 /* SDBaseRefreshView.m in Sources */,
  2147. 3DF3DAB729B9B93000CAD3AB /* SLBaseCollectionViewCell.m in Sources */,
  2148. 3D2DC3ED29B09B3B0041A729 /* UICollectionViewCell+YMHelper.m in Sources */,
  2149. 3DF3DACD29B9D30A00CAD3AB /* UITableView+Extension.m in Sources */,
  2150. 3D1B988A29BEF1020008D01A /* SLLxTopCell.m in Sources */,
  2151. 3D25109D29AEEDBE000AE530 /* UIView+Extension.m in Sources */,
  2152. 3DA5AF6929B88875009E4925 /* SLLxViewController.m in Sources */,
  2153. 3D1B987229BEB35B0008D01A /* SLHorScrBtnsCell.m in Sources */,
  2154. 3DB97DA429D6ABF000B12754 /* MLLabelLayoutManager.m in Sources */,
  2155. 3D19CBEA29E6480E0041A6B8 /* SLFriendsModel.m in Sources */,
  2156. 3D2510BA29AF1970000AE530 /* SPRequestError.m in Sources */,
  2157. 3D24D41029DEB23C00014D1C /* ZLPhotoBrowerModel.m in Sources */,
  2158. 3DB97D9B29D6ABF000B12754 /* NSMutableAttributedString+MLLabel.m in Sources */,
  2159. 3D24986C29AC72E2003C3AFA /* SLLoginVCViewController.m in Sources */,
  2160. 3DF3DAF129BB131100CAD3AB /* RDVTabBarController.m in Sources */,
  2161. 3D3BC1CC2A25933400AEEE8E /* SLMomentsNewsCell.m in Sources */,
  2162. 3D6EE45329F2568000B02EBB /* SLRecomFriendsVc.m in Sources */,
  2163. 3D58828B2A2976CD00F1B38E /* SLMsgBgSetVc.m in Sources */,
  2164. 3DF3DAF529BB170F00CAD3AB /* SLHomeView.m in Sources */,
  2165. 3D19CBFA29E7ABFD0041A6B8 /* TTTableViewPlaceView.m in Sources */,
  2166. 3DB97DA029D6ABF000B12754 /* MLTextAttachment.m in Sources */,
  2167. 3D1B9CF029C03B8B0008D01A /* SLDatePickView.m in Sources */,
  2168. 3DF3DAC329B9C6E000CAD3AB /* YMBarItem.m in Sources */,
  2169. 3DF3DAC529B9C6E000CAD3AB /* YMNavigationBar.m in Sources */,
  2170. 3DA5AF6129B8875A009E4925 /* SLHomeViewController.m in Sources */,
  2171. 3DF3DADB29BAD65500CAD3AB /* SLCustomizeAlert.m in Sources */,
  2172. 3DA2C73829CAA9C30087CDB4 /* TokenHttpRequest.m in Sources */,
  2173. 3DF3DAC429B9C6E000CAD3AB /* YMBarItemView.m in Sources */,
  2174. 3DB97DA929D6AC0A00B12754 /* LEETheme.m in Sources */,
  2175. 3DB97D5B29D6AB2300B12754 /* SDWaitingView.m in Sources */,
  2176. 3DE9967929E915BF00C50A83 /* SLMomentsVc.m in Sources */,
  2177. 3DA2C73929CAA9C30087CDB4 /* AccessToken.m in Sources */,
  2178. 3D58825D2A28397D00F1B38E /* SLCitySetVc.m in Sources */,
  2179. 3DB97D4529D6A86E00B12754 /* SDWeiXinPhotoContainerView.m in Sources */,
  2180. 3D2DC3F429B1E6320041A729 /* SLMikeInputView.m in Sources */,
  2181. 3D2DC3BF29B0709F0041A729 /* NLSRingBuffer.mm in Sources */,
  2182. 3D25108829ADD46C000AE530 /* SLRoleLabelView.m in Sources */,
  2183. 3D2510D129AF3DC4000AE530 /* SLLoginInfo.m in Sources */,
  2184. 3D8EBBC72A131FA40008B0C1 /* SLHomeMsgTableViewCell.m in Sources */,
  2185. 3D8C9F8229AC57F200678283 /* ViewController.m in Sources */,
  2186. 3D1F17AE2A0DE55D00F030AD /* SLLocationManager.m in Sources */,
  2187. 3D58829F2A29C17D00F1B38E /* SLMomentsNewsModel.m in Sources */,
  2188. 3D24987429AC7909003C3AFA /* UIViewController+Extension.m in Sources */,
  2189. 3D19CC0229E7E9340041A6B8 /* SLMomentDetailTableVc.m in Sources */,
  2190. 3D25105B29AC9475000AE530 /* SLForgetPWViewController.m in Sources */,
  2191. 3D2510C429AF1B24000AE530 /* ZFToast.m in Sources */,
  2192. 3DB97DA229D6ABF000B12754 /* MLExpressionManager.m in Sources */,
  2193. 3DB97D5A29D6AB2300B12754 /* SDPhotoBrowser.m in Sources */,
  2194. 3D25107E29AD8FF1000AE530 /* SLPageControlView.m in Sources */,
  2195. 3DB97D4229D6A86E00B12754 /* SDTimeLineTableHeaderView.m in Sources */,
  2196. 3D2510C729AF1D29000AE530 /* NSString+Category.m in Sources */,
  2197. 3D2DC3E729B099C90041A729 /* YMChatServiceView.m in Sources */,
  2198. 3D19CBFE29E7DF6B0041A6B8 /* SLMomentsCommentVc.m in Sources */,
  2199. 3D19CBF829E7ABFD0041A6B8 /* UITableView+CYLTableViewPlaceHolder.m in Sources */,
  2200. 3DA5AF5C29B8843C009E4925 /* SLBaseTabBarController.m in Sources */,
  2201. 3D2DC3E029B0991E0041A729 /* YMIMMessageCollectionView.m in Sources */,
  2202. 3D1F17B22A0DE60100F030AD /* JZLocationConverter.m in Sources */,
  2203. 3DB97D6D29D6ABC100B12754 /* UIView+SDExtension.m in Sources */,
  2204. 3DF3DAFA29BB187D00CAD3AB /* SLHomeTopCollectionViewCell.m in Sources */,
  2205. 3D8515D729CD92A400418BAB /* JXCategoryTitleBackgroundCellModel.m in Sources */,
  2206. 3DB97DA129D6ABF000B12754 /* NSString+MLExpression.m in Sources */,
  2207. 3D24D41129DEB23C00014D1C /* ZLPhotoBrowerView.m in Sources */,
  2208. 3D25109529AEDD7A000AE530 /* SLRoleCreatSucView.m in Sources */,
  2209. 3DFEE71429B5DCAD000AA7D5 /* SLNuiSpeechRecognizer.m in Sources */,
  2210. 3DB97D4429D6A86E00B12754 /* SDTimeLineRefreshHeader.m in Sources */,
  2211. 3D8515D929CD92A400418BAB /* JXCategoryTitleBackgroundView.m in Sources */,
  2212. 3D2D8C0729DE7404009392DA /* LeftImageDesignTxtxField.m in Sources */,
  2213. 3DE9968329EE72D300C50A83 /* SLAddFriendVc.m in Sources */,
  2214. 3D1B9D0229C16DD00008D01A /* SLTargetModel.m in Sources */,
  2215. 3D2510C029AF1A8F000AE530 /* MBProgressHUD+Addition.m in Sources */,
  2216. 3D9961F929CD2EFE0076DBD1 /* SLNestSubjectViewController.m in Sources */,
  2217. 3D2DC3C129B0709F0041A729 /* NLSPlayAudio.mm in Sources */,
  2218. 3D2510BC29AF1970000AE530 /* SPEncryption.m in Sources */,
  2219. 3D2D8BF929DE5AE4009392DA /* SCIndexView.m in Sources */,
  2220. 3D8C9F7C29AC57F200678283 /* AppDelegate.mm in Sources */,
  2221. 3D2DC3C029B0709F0041A729 /* NLSVoiceRecorder.m in Sources */,
  2222. 3D1B989329BEF5960008D01A /* SLLxView.m in Sources */,
  2223. 3D99620029CD2FFA0076DBD1 /* SLListViewController.m in Sources */,
  2224. 3D3BC34F2A26D7D300AEEE8E /* SLAiSetVc.m in Sources */,
  2225. 3D2510B929AF1970000AE530 /* SLHttpCenter.m in Sources */,
  2226. 3D6EE45829F25AB400B02EBB /* SLRecomFriendsCell.m in Sources */,
  2227. 3D2D8BD529DE5402009392DA /* AddressBookCell.m in Sources */,
  2228. 3DA5AF7429B96726009E4925 /* SLMeHeaderCollectionViewCell.m in Sources */,
  2229. 3DB97D4D29D6AAC500B12754 /* UITableView+SDAutoTableViewCellHeight.m in Sources */,
  2230. 3D25107729AD8C13000AE530 /* RoleModel.m in Sources */,
  2231. 3DBC3BC82A0B650300E8C766 /* SLNearbyPeopleCell.m in Sources */,
  2232. 3DB97DA329D6ABF000B12754 /* MLLabel.m in Sources */,
  2233. 3DFEE71729B5E7F9000AA7D5 /* SLAuthorizationManager.m in Sources */,
  2234. 3D2DC3DE29B0991E0041A729 /* YMIMBaseMessageCell.m in Sources */,
  2235. 3D3BC35A2A27283600AEEE8E /* SLSexSetVc.m in Sources */,
  2236. 3DB97D9E29D6ABF000B12754 /* MLLinkLabel.m in Sources */,
  2237. 3DB97D4329D6A86E00B12754 /* SDTimeLineCell.m in Sources */,
  2238. 3DB97D9929D6ABF000B12754 /* TTTAttributedLabel.m in Sources */,
  2239. 3D2D8C0329DE7288009392DA /* SLCustNavView.m in Sources */,
  2240. 3DA5AF7C29B96B55009E4925 /* SLPageViewModel.m in Sources */,
  2241. 3D8EBBCD2A14B6EC0008B0C1 /* SLWebViewController.m in Sources */,
  2242. 3D2DC3DC29B0991E0041A729 /* YMCustServiceAlertView.m in Sources */,
  2243. 3D2DC3DD29B0991E0041A729 /* YMNextGrowingInternalTextView.m in Sources */,
  2244. 3D24986529AC7224003C3AFA /* SLBaseViewController.m in Sources */,
  2245. 3D25106929ACA629000AE530 /* SLVerifiButton.m in Sources */,
  2246. 3D2D8BEC29DE55A9009392DA /* ChineseToPinyinResource.m in Sources */,
  2247. 3D25109129ADD729000AE530 /* SLCustomSegment.m in Sources */,
  2248. 3D1B989629BF08A70008D01A /* SLLineScaleView.m in Sources */,
  2249. 3D1B9CEC29C038280008D01A /* SLTargetViewController.m in Sources */,
  2250. 3DF3DAA129B98A7D00CAD3AB /* SLMyView.m in Sources */,
  2251. 3DB97D9F29D6ABF000B12754 /* NSAttributedString+MLExpression.m in Sources */,
  2252. 3D1B986529BEAF2F0008D01A /* SLHorScrBtns.m in Sources */,
  2253. 3D2510A729AEF4F0000AE530 /* SLMessageViewController.m in Sources */,
  2254. 3D2DC3DB29B0991E0041A729 /* YMNextGrowingTextView.m in Sources */,
  2255. 3D25106F29AD8AA9000AE530 /* SLRoleLabelViewController.m in Sources */,
  2256. 3D24D67B29DFA1F100014D1C /* SLRemidLookView.m in Sources */,
  2257. 3D3BC1C02A2587D700AEEE8E /* SLNewMsgBgView.m in Sources */,
  2258. 3D19CBF929E7ABFD0041A6B8 /* UITableView+Refresh.m in Sources */,
  2259. 3DA5AF7829B96B33009E4925 /* SLBaseMainView.m in Sources */,
  2260. 3DB97D9829D6ABF000B12754 /* MLEmojiLabel.m in Sources */,
  2261. 3D24D40729DEAF3200014D1C /* SLCreatMomentsVc.m in Sources */,
  2262. 3D8515D829CD92A400418BAB /* JXCategoryTitleBackgroundCell.m in Sources */,
  2263. 3DB97D9D29D6ABF000B12754 /* NSAttributedString+MLLabel.m in Sources */,
  2264. 3DF3DAB229B9B86200CAD3AB /* SLUserCenterViewController.m in Sources */,
  2265. 3D19CBEE29E682C20041A6B8 /* SLChatListModel.m in Sources */,
  2266. 3DFEE70E29B5CB01000AA7D5 /* SLMikeSegmentModel.m in Sources */,
  2267. 3D2D8BF829DE5AE4009392DA /* SCIndexViewConfiguration.m in Sources */,
  2268. 3D2510CB29AF3306000AE530 /* SLUserModel.m in Sources */,
  2269. 3D2DC3F129B191C80041A729 /* MessageModel.m in Sources */,
  2270. 3DF3DAF029BB131100CAD3AB /* RDVTabBar.m in Sources */,
  2271. 3D2D8BFA29DE5AE5009392DA /* UITableView+SCIndexView.m in Sources */,
  2272. 3D1B9CFF29C157620008D01A /* PlaceholderTextView.m in Sources */,
  2273. 3D8C9F8D29AC57F300678283 /* main.m in Sources */,
  2274. 3D6EE45C29F27BCB00B02EBB /* SLRecomFriendModel.m in Sources */,
  2275. 3D25107A29AD8DB0000AE530 /* SLPageControlSlideRound.m in Sources */,
  2276. 3D3BC3542A26E2B000AEEE8E /* SLMySpeedCell.m in Sources */,
  2277. 3DB069F829F7A71F005730D7 /* SLFriendPowerVc.m in Sources */,
  2278. 3DB97D6B29D6ABC100B12754 /* SDRefreshHeaderView.m in Sources */,
  2279. 3D2510CE29AF375B000AE530 /* SLGlobalInfo.m in Sources */,
  2280. 3DF3DB0129BB22CB00CAD3AB /* UIImage+Extension.m in Sources */,
  2281. 3D25108129AD9999000AE530 /* UIColor+YMAdditions.m in Sources */,
  2282. 3DB97D5C29D6AB2300B12754 /* SDBrowserImageView.m in Sources */,
  2283. 3DB0AE1629D6B64200671744 /* NullSafe.m in Sources */,
  2284. 3D2510AB29AF00E3000AE530 /* NSLayoutConstraint+IBDesignable.m in Sources */,
  2285. 3D9961FD29CD2FB00076DBD1 /* SLContentBaseViewController.m in Sources */,
  2286. 3D2D8BEB29DE55A9009392DA /* HanyuPinyinOutputFormat.m in Sources */,
  2287. 3DB97D3E29D6A86E00B12754 /* SDTimeLineCellModel.m in Sources */,
  2288. 3DFEE71129B5D11E000AA7D5 /* UIButton+TitleAndImageLayout.m in Sources */,
  2289. 3D25108429ADA027000AE530 /* SLInterestView.m in Sources */,
  2290. 3D5BC38F29E3F87100748197 /* SLFriensInfoVc.m in Sources */,
  2291. 3D1B9D0829C1B7A90008D01A /* SLImagePickerAndUpload.m in Sources */,
  2292. 3D796C6D29B8305C00B7B28A /* FBKVOController.m in Sources */,
  2293. 3D2DC3EA29B09B070041A729 /* UICollectionView+YMHelper.m in Sources */,
  2294. 3D2510BB29AF1970000AE530 /* TFFileUploadManager.m in Sources */,
  2295. 3DF3DAA429B9A68800CAD3AB /* SLBaseCellView.m in Sources */,
  2296. 3DF3DADE29BAFA0600CAD3AB /* SLMySpeedView.m in Sources */,
  2297. 3DA5AF7F29B96E11009E4925 /* SLPageModel.m in Sources */,
  2298. 3D796C6C29B8305C00B7B28A /* NSObject+FBKVOController.m in Sources */,
  2299. 3DB97D6E29D6ABC100B12754 /* SDRefreshFooterView.m in Sources */,
  2300. 3D1B9D0C29C2A1360008D01A /* SLPlaceholderCell.m in Sources */,
  2301. 3DB97D6F29D6ABC100B12754 /* SDRefreshView.m in Sources */,
  2302. 3DF3DAC229B9C6E000CAD3AB /* YMBarButtonItem.m in Sources */,
  2303. 3DFEE70B29B5B298000AA7D5 /* SLMikeSegment.m in Sources */,
  2304. 3D2DC3E429B099B50041A729 /* YMChatBottomView.m in Sources */,
  2305. 3D3BC1C62A25903700AEEE8E /* SLMomentsNewsVc.m in Sources */,
  2306. 3D25106529AC9694000AE530 /* SLBaseNavigationController.m in Sources */,
  2307. 3D24D41229DEB23C00014D1C /* ImageCell.m in Sources */,
  2308. 3DB97D4C29D6AAC500B12754 /* UIView+SDAutoLayout.m in Sources */,
  2309. 3D2DC3DF29B0991E0041A729 /* YMIMHintView.m in Sources */,
  2310. 3DA2C73C29CBE4DD0087CDB4 /* SLRoleappearanceView.m in Sources */,
  2311. 3DF3DAAD29B9AA3400CAD3AB /* SLMyListCollectionViewCell.m in Sources */,
  2312. 3DBC3BC32A0B644600E8C766 /* SLNearbyPeopleVc.m in Sources */,
  2313. 3D5BC38B29E3E77400748197 /* SLMoentsChatView.m in Sources */,
  2314. 3D9961FA29CD2EFE0076DBD1 /* SLNestViewController.m in Sources */,
  2315. 3D1B987E29BEEA5A0008D01A /* SLVocabularyView.m in Sources */,
  2316. );
  2317. runOnlyForDeploymentPostprocessing = 0;
  2318. };
  2319. /* End PBXSourcesBuildPhase section */
  2320. /* Begin PBXVariantGroup section */
  2321. 3D8C9F8329AC57F200678283 /* Main.storyboard */ = {
  2322. isa = PBXVariantGroup;
  2323. children = (
  2324. 3D8C9F8429AC57F200678283 /* Base */,
  2325. );
  2326. name = Main.storyboard;
  2327. sourceTree = "<group>";
  2328. };
  2329. 3D8C9F8829AC57F300678283 /* LaunchScreen.storyboard */ = {
  2330. isa = PBXVariantGroup;
  2331. children = (
  2332. 3D8C9F8929AC57F300678283 /* Base */,
  2333. );
  2334. name = LaunchScreen.storyboard;
  2335. sourceTree = "<group>";
  2336. };
  2337. /* End PBXVariantGroup section */
  2338. /* Begin XCBuildConfiguration section */
  2339. 3D8C9F8E29AC57F300678283 /* Debug */ = {
  2340. isa = XCBuildConfiguration;
  2341. buildSettings = {
  2342. ALWAYS_SEARCH_USER_PATHS = NO;
  2343. CLANG_ANALYZER_NONNULL = YES;
  2344. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2345. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2346. CLANG_ENABLE_MODULES = YES;
  2347. CLANG_ENABLE_OBJC_ARC = YES;
  2348. CLANG_ENABLE_OBJC_WEAK = YES;
  2349. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2350. CLANG_WARN_BOOL_CONVERSION = YES;
  2351. CLANG_WARN_COMMA = YES;
  2352. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2353. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2354. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2355. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2356. CLANG_WARN_EMPTY_BODY = YES;
  2357. CLANG_WARN_ENUM_CONVERSION = YES;
  2358. CLANG_WARN_INFINITE_RECURSION = YES;
  2359. CLANG_WARN_INT_CONVERSION = YES;
  2360. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2361. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2362. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2363. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2364. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2365. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2366. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2367. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2368. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2369. CLANG_WARN_UNREACHABLE_CODE = YES;
  2370. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2371. COPY_PHASE_STRIP = NO;
  2372. DEBUG_INFORMATION_FORMAT = dwarf;
  2373. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2374. ENABLE_TESTABILITY = YES;
  2375. GCC_C_LANGUAGE_STANDARD = gnu11;
  2376. GCC_DYNAMIC_NO_PIC = NO;
  2377. GCC_NO_COMMON_BLOCKS = YES;
  2378. GCC_OPTIMIZATION_LEVEL = 0;
  2379. GCC_PREPROCESSOR_DEFINITIONS = (
  2380. "DEBUG=1",
  2381. "$(inherited)",
  2382. );
  2383. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2384. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2385. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2386. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2387. GCC_WARN_UNUSED_FUNCTION = YES;
  2388. GCC_WARN_UNUSED_VARIABLE = YES;
  2389. IPHONEOS_DEPLOYMENT_TARGET = 16.0;
  2390. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2391. MTL_FAST_MATH = YES;
  2392. ONLY_ACTIVE_ARCH = YES;
  2393. SDKROOT = iphoneos;
  2394. };
  2395. name = Debug;
  2396. };
  2397. 3D8C9F8F29AC57F300678283 /* Release */ = {
  2398. isa = XCBuildConfiguration;
  2399. buildSettings = {
  2400. ALWAYS_SEARCH_USER_PATHS = NO;
  2401. CLANG_ANALYZER_NONNULL = YES;
  2402. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2403. CLANG_CXX_LANGUAGE_STANDARD = "gnu++20";
  2404. CLANG_ENABLE_MODULES = YES;
  2405. CLANG_ENABLE_OBJC_ARC = YES;
  2406. CLANG_ENABLE_OBJC_WEAK = YES;
  2407. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2408. CLANG_WARN_BOOL_CONVERSION = YES;
  2409. CLANG_WARN_COMMA = YES;
  2410. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2411. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2412. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2413. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2414. CLANG_WARN_EMPTY_BODY = YES;
  2415. CLANG_WARN_ENUM_CONVERSION = YES;
  2416. CLANG_WARN_INFINITE_RECURSION = YES;
  2417. CLANG_WARN_INT_CONVERSION = YES;
  2418. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2419. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2420. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2421. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2422. CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
  2423. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2424. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2425. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2426. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2427. CLANG_WARN_UNREACHABLE_CODE = YES;
  2428. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2429. COPY_PHASE_STRIP = NO;
  2430. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2431. ENABLE_NS_ASSERTIONS = NO;
  2432. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2433. GCC_C_LANGUAGE_STANDARD = gnu11;
  2434. GCC_NO_COMMON_BLOCKS = YES;
  2435. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2436. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2437. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2438. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2439. GCC_WARN_UNUSED_FUNCTION = YES;
  2440. GCC_WARN_UNUSED_VARIABLE = YES;
  2441. IPHONEOS_DEPLOYMENT_TARGET = 16.0;
  2442. MTL_ENABLE_DEBUG_INFO = NO;
  2443. MTL_FAST_MATH = YES;
  2444. SDKROOT = iphoneos;
  2445. VALIDATE_PRODUCT = YES;
  2446. };
  2447. name = Release;
  2448. };
  2449. 3D8C9F9129AC57F300678283 /* Debug */ = {
  2450. isa = XCBuildConfiguration;
  2451. baseConfigurationReference = A5217D328E77444C393A094E /* Pods-SLAiELTS.debug.xcconfig */;
  2452. buildSettings = {
  2453. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2454. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2455. CODE_SIGN_IDENTITY = "Apple Development";
  2456. CODE_SIGN_STYLE = Automatic;
  2457. CURRENT_PROJECT_VERSION = 21;
  2458. DEVELOPMENT_TEAM = 5WKRWDTA83;
  2459. FRAMEWORK_SEARCH_PATHS = (
  2460. "$(inherited)",
  2461. "$(PROJECT_DIR)/SLAiELTS/Vendor",
  2462. );
  2463. GCC_PREFIX_HEADER = SLAiELTS/AppMarcos/PrefixHeader.pch;
  2464. GENERATE_INFOPLIST_FILE = YES;
  2465. INFOPLIST_FILE = SLAiELTS/Info.plist;
  2466. INFOPLIST_KEY_CFBundleDisplayName = "DL Chat";
  2467. INFOPLIST_KEY_NSCameraUsageDescription = "我们将使用您的相机权限便于您上传头像";
  2468. INFOPLIST_KEY_NSMicrophoneUsageDescription = "应用需要访问您的录音权限";
  2469. INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "我们将使用您的相册权限便于您保存图片至相册";
  2470. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "我们将使用您的相册权限便于您上传头像";
  2471. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  2472. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  2473. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  2474. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  2475. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  2476. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2477. LD_RUNPATH_SEARCH_PATHS = (
  2478. "$(inherited)",
  2479. "@executable_path/Frameworks",
  2480. );
  2481. LIBRARY_SEARCH_PATHS = (
  2482. "$(inherited)",
  2483. "$(PROJECT_DIR)/SLAiELTS/Vendor/modeling/Libraries",
  2484. );
  2485. MARKETING_VERSION = 1.0.0;
  2486. OTHER_LDFLAGS = (
  2487. "$(inherited)",
  2488. "-framework",
  2489. "\"AFNetworking\"",
  2490. "-framework",
  2491. "\"BRPickerView\"",
  2492. "-framework",
  2493. "\"CoreGraphics\"",
  2494. "-framework",
  2495. "\"Foundation\"",
  2496. "-framework",
  2497. "\"IQKeyboardManager\"",
  2498. "-framework",
  2499. "\"ImageIO\"",
  2500. "-framework",
  2501. "\"JXCategoryView\"",
  2502. "-framework",
  2503. "\"MBProgressHUD\"",
  2504. "-framework",
  2505. "\"MJExtension\"",
  2506. "-framework",
  2507. "\"MJRefresh\"",
  2508. "-framework",
  2509. "\"Masonry\"",
  2510. "-framework",
  2511. "\"PGDatePicker\"",
  2512. "-framework",
  2513. "\"PGPickerView\"",
  2514. "-framework",
  2515. "\"Photos\"",
  2516. "-framework",
  2517. "\"PhotosUI\"",
  2518. "-framework",
  2519. "\"QuartzCore\"",
  2520. "-framework",
  2521. "\"SDWebImage\"",
  2522. "-framework",
  2523. "\"UIKit\"",
  2524. "-framework",
  2525. "\"WZLBadge\"",
  2526. "-framework",
  2527. "\"ZLPhotoBrowser\"",
  2528. );
  2529. PRODUCT_BUNDLE_IDENTIFIER = com.AI.SLAiELTS;
  2530. PRODUCT_NAME = "$(TARGET_NAME)";
  2531. PROVISIONING_PROFILE_SPECIFIER = "";
  2532. SWIFT_EMIT_LOC_STRINGS = YES;
  2533. TARGETED_DEVICE_FAMILY = "1,2";
  2534. };
  2535. name = Debug;
  2536. };
  2537. 3D8C9F9229AC57F300678283 /* Release */ = {
  2538. isa = XCBuildConfiguration;
  2539. baseConfigurationReference = 18BFDEB2050A85860206880B /* Pods-SLAiELTS.release.xcconfig */;
  2540. buildSettings = {
  2541. ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
  2542. ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
  2543. CODE_SIGN_IDENTITY = "Apple Development";
  2544. CODE_SIGN_STYLE = Automatic;
  2545. CURRENT_PROJECT_VERSION = 21;
  2546. DEVELOPMENT_TEAM = 5WKRWDTA83;
  2547. FRAMEWORK_SEARCH_PATHS = (
  2548. "$(inherited)",
  2549. "$(PROJECT_DIR)/SLAiELTS/Vendor",
  2550. );
  2551. GCC_PREFIX_HEADER = SLAiELTS/AppMarcos/PrefixHeader.pch;
  2552. GENERATE_INFOPLIST_FILE = YES;
  2553. INFOPLIST_FILE = SLAiELTS/Info.plist;
  2554. INFOPLIST_KEY_CFBundleDisplayName = "DL Chat";
  2555. INFOPLIST_KEY_NSCameraUsageDescription = "我们将使用您的相机权限便于您上传头像";
  2556. INFOPLIST_KEY_NSMicrophoneUsageDescription = "应用需要访问您的录音权限";
  2557. INFOPLIST_KEY_NSPhotoLibraryAddUsageDescription = "我们将使用您的相册权限便于您保存图片至相册";
  2558. INFOPLIST_KEY_NSPhotoLibraryUsageDescription = "我们将使用您的相册权限便于您上传头像";
  2559. INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
  2560. INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
  2561. INFOPLIST_KEY_UIMainStoryboardFile = Main;
  2562. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  2563. INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
  2564. IPHONEOS_DEPLOYMENT_TARGET = 12.0;
  2565. LD_RUNPATH_SEARCH_PATHS = (
  2566. "$(inherited)",
  2567. "@executable_path/Frameworks",
  2568. );
  2569. LIBRARY_SEARCH_PATHS = (
  2570. "$(inherited)",
  2571. "$(PROJECT_DIR)/SLAiELTS/Vendor/modeling/Libraries",
  2572. );
  2573. MARKETING_VERSION = 1.0.0;
  2574. OTHER_LDFLAGS = (
  2575. "$(inherited)",
  2576. "-framework",
  2577. "\"AFNetworking\"",
  2578. "-framework",
  2579. "\"BRPickerView\"",
  2580. "-framework",
  2581. "\"CoreGraphics\"",
  2582. "-framework",
  2583. "\"Foundation\"",
  2584. "-framework",
  2585. "\"IQKeyboardManager\"",
  2586. "-framework",
  2587. "\"ImageIO\"",
  2588. "-framework",
  2589. "\"JXCategoryView\"",
  2590. "-framework",
  2591. "\"MBProgressHUD\"",
  2592. "-framework",
  2593. "\"MJExtension\"",
  2594. "-framework",
  2595. "\"MJRefresh\"",
  2596. "-framework",
  2597. "\"Masonry\"",
  2598. "-framework",
  2599. "\"PGDatePicker\"",
  2600. "-framework",
  2601. "\"PGPickerView\"",
  2602. "-framework",
  2603. "\"Photos\"",
  2604. "-framework",
  2605. "\"PhotosUI\"",
  2606. "-framework",
  2607. "\"QuartzCore\"",
  2608. "-framework",
  2609. "\"SDWebImage\"",
  2610. "-framework",
  2611. "\"UIKit\"",
  2612. "-framework",
  2613. "\"WZLBadge\"",
  2614. "-framework",
  2615. "\"ZLPhotoBrowser\"",
  2616. );
  2617. PRODUCT_BUNDLE_IDENTIFIER = com.AI.SLAiELTS;
  2618. PRODUCT_NAME = "$(TARGET_NAME)";
  2619. PROVISIONING_PROFILE_SPECIFIER = "";
  2620. SWIFT_EMIT_LOC_STRINGS = YES;
  2621. TARGETED_DEVICE_FAMILY = "1,2";
  2622. };
  2623. name = Release;
  2624. };
  2625. /* End XCBuildConfiguration section */
  2626. /* Begin XCConfigurationList section */
  2627. 3D8C9F7229AC57F100678283 /* Build configuration list for PBXProject "SLAiELTS" */ = {
  2628. isa = XCConfigurationList;
  2629. buildConfigurations = (
  2630. 3D8C9F8E29AC57F300678283 /* Debug */,
  2631. 3D8C9F8F29AC57F300678283 /* Release */,
  2632. );
  2633. defaultConfigurationIsVisible = 0;
  2634. defaultConfigurationName = Release;
  2635. };
  2636. 3D8C9F9029AC57F300678283 /* Build configuration list for PBXNativeTarget "SLAiELTS" */ = {
  2637. isa = XCConfigurationList;
  2638. buildConfigurations = (
  2639. 3D8C9F9129AC57F300678283 /* Debug */,
  2640. 3D8C9F9229AC57F300678283 /* Release */,
  2641. );
  2642. defaultConfigurationIsVisible = 0;
  2643. defaultConfigurationName = Release;
  2644. };
  2645. /* End XCConfigurationList section */
  2646. };
  2647. rootObject = 3D8C9F6F29AC57F100678283 /* Project object */;
  2648. }