project.pbxproj 204 KB

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