project.pbxproj 182 KB

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