project.pbxproj 230 KB

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