project.pbxproj 216 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472
  1. // !$*UTF8*$!
  2. {
  3. archiveVersion = 1;
  4. classes = {
  5. };
  6. objectVersion = 50;
  7. objects = {
  8. /* Begin PBXBuildFile section */
  9. 14349F62243392E300FE38B3 /* WFChatUIKit.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 14349F61243392E300FE38B3 /* WFChatUIKit.xcassets */; };
  10. 14349FA624362A6600FE38B3 /* WFCUSeletedUserViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 14349FA424362A6600FE38B3 /* WFCUSeletedUserViewController.h */; };
  11. 14349FA724362A6600FE38B3 /* WFCUSeletedUserViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 14349FA524362A6600FE38B3 /* WFCUSeletedUserViewController.m */; };
  12. 1450EA80243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1450EA7E243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.h */; };
  13. 1450EA81243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1450EA7F243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.m */; };
  14. 1450EA852438922800BF51FC /* WFCUUserSectionKeySupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 1450EA832438922800BF51FC /* WFCUUserSectionKeySupport.h */; };
  15. 1450EA862438922800BF51FC /* WFCUUserSectionKeySupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 1450EA842438922800BF51FC /* WFCUUserSectionKeySupport.m */; };
  16. 1450EA8924389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 1450EA8724389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.h */; };
  17. 1450EA8A24389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 1450EA8824389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.m */; };
  18. 1450EA8D243960C600BF51FC /* WFCUSelectedUserTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 1450EA8B243960C600BF51FC /* WFCUSelectedUserTableViewCell.h */; };
  19. 1450EA8E243960C600BF51FC /* WFCUSelectedUserTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 1450EA8C243960C600BF51FC /* WFCUSelectedUserTableViewCell.m */; };
  20. 1450EA912439679500BF51FC /* WFCUSelectedUserInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1450EA8F2439679500BF51FC /* WFCUSelectedUserInfo.h */; };
  21. 1450EA922439679500BF51FC /* WFCUSelectedUserInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 1450EA902439679500BF51FC /* WFCUSelectedUserInfo.m */; };
  22. 149B310F241E65D500B935D3 /* UIFont+YH.h in Headers */ = {isa = PBXBuildFile; fileRef = 149B310B241E65D500B935D3 /* UIFont+YH.h */; };
  23. 149B3110241E65D500B935D3 /* UIColor+YH.m in Sources */ = {isa = PBXBuildFile; fileRef = 149B310C241E65D500B935D3 /* UIColor+YH.m */; };
  24. 149B3111241E65D500B935D3 /* UIColor+YH.h in Headers */ = {isa = PBXBuildFile; fileRef = 149B310D241E65D500B935D3 /* UIColor+YH.h */; };
  25. 149B3112241E65D500B935D3 /* UIFont+YH.m in Sources */ = {isa = PBXBuildFile; fileRef = 149B310E241E65D500B935D3 /* UIFont+YH.m */; };
  26. 2B07FBE1247562D90035C4DF /* WFCUReceiptViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B07FBDF247562D90035C4DF /* WFCUReceiptViewController.h */; };
  27. 2B07FBE2247562D90035C4DF /* WFCUReceiptViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B07FBE0247562D90035C4DF /* WFCUReceiptViewController.m */; };
  28. 2B15F1B82509E285007022BC /* WFCUGroupInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B15F1B62509E285007022BC /* WFCUGroupInfoViewController.m */; };
  29. 2B15F1B92509E2C5007022BC /* WFCUGroupInfoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B15F1B72509E285007022BC /* WFCUGroupInfoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  30. 2B46D4D824ACC64300721792 /* WFCUMediaMessageGridViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B46D4D624ACC64300721792 /* WFCUMediaMessageGridViewController.h */; };
  31. 2B46D4D924ACC64300721792 /* WFCUMediaMessageGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B46D4D724ACC64300721792 /* WFCUMediaMessageGridViewController.m */; };
  32. 2B46D4DC24ACC9B900721792 /* MediaMessageGridViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B46D4DA24ACC9B900721792 /* MediaMessageGridViewCell.h */; };
  33. 2B46D4DD24ACC9B900721792 /* MediaMessageGridViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B46D4DB24ACC9B900721792 /* MediaMessageGridViewCell.m */; };
  34. 2B63367E24716864008D6B38 /* ZCCCircleProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B63367C24716864008D6B38 /* ZCCCircleProgressView.m */; };
  35. 2B63367F24716864008D6B38 /* ZCCCircleProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B63367D24716864008D6B38 /* ZCCCircleProgressView.h */; };
  36. 2B97D4892505C7BE00162A2B /* WFCUCardCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B97D4872505C7BE00162A2B /* WFCUCardCell.h */; };
  37. 2B97D48A2505C7BE00162A2B /* WFCUCardCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B97D4882505C7BE00162A2B /* WFCUCardCell.m */; };
  38. 2BB4191624ED212200ABFEF1 /* WFCUUserMessageListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BB4191424ED212200ABFEF1 /* WFCUUserMessageListViewController.h */; };
  39. 2BB4191724ED212200ABFEF1 /* WFCUUserMessageListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BB4191524ED212200ABFEF1 /* WFCUUserMessageListViewController.m */; };
  40. 2BD671A42336E821007A9FEC /* WFCUConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD671A22336E821007A9FEC /* WFCUConfigManager.h */; settings = {ATTRIBUTES = (Public, ); }; };
  41. 2BD671A52336E821007A9FEC /* WFCUConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BD671A32336E821007A9FEC /* WFCUConfigManager.m */; };
  42. 2BD8D72524D69B5300281B81 /* WFCUGroupFilesViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD8D72324D69B5300281B81 /* WFCUGroupFilesViewController.h */; };
  43. 2BD8D72624D69B5400281B81 /* WFCUGroupFilesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BD8D72424D69B5300281B81 /* WFCUGroupFilesViewController.m */; };
  44. 2BDF579324AD70C8003C1F08 /* DNImagePickerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF576824AD70C8003C1F08 /* DNImagePickerHelper.h */; };
  45. 2BDF579424AD70C8003C1F08 /* DNAlbum.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF576A24AD70C8003C1F08 /* DNAlbum.m */; };
  46. 2BDF579524AD70C8003C1F08 /* DNAsset.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF576B24AD70C8003C1F08 /* DNAsset.m */; };
  47. 2BDF579624AD70C8003C1F08 /* DNAsset.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF576C24AD70C8003C1F08 /* DNAsset.h */; };
  48. 2BDF579724AD70C8003C1F08 /* DNAlbum.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF576D24AD70C8003C1F08 /* DNAlbum.h */; };
  49. 2BDF579924AD70C8003C1F08 /* UIColor+Hex.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF577024AD70C8003C1F08 /* UIColor+Hex.m */; };
  50. 2BDF579A24AD70C8003C1F08 /* UIView+DNImagePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF577124AD70C8003C1F08 /* UIView+DNImagePicker.m */; };
  51. 2BDF579C24AD70C8003C1F08 /* UIColor+Hex.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF577324AD70C8003C1F08 /* UIColor+Hex.h */; };
  52. 2BDF579D24AD70C8003C1F08 /* UIView+DNImagePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF577424AD70C8003C1F08 /* UIView+DNImagePicker.h */; };
  53. 2BDF579F24AD70C8003C1F08 /* DNImagePickerHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF577624AD70C8003C1F08 /* DNImagePickerHelper.m */; };
  54. 2BDF57A024AD70C8003C1F08 /* DNAlbumTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF577824AD70C8003C1F08 /* DNAlbumTableViewController.h */; };
  55. 2BDF57A124AD70C8003C1F08 /* DNImageFetchOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF577924AD70C8003C1F08 /* DNImageFetchOperation.h */; };
  56. 2BDF57A224AD70C8003C1F08 /* DNImagePickerController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF577A24AD70C8003C1F08 /* DNImagePickerController.h */; };
  57. 2BDF57A324AD70C8003C1F08 /* DNPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF577B24AD70C8003C1F08 /* DNPhotoBrowser.h */; };
  58. 2BDF57A424AD70C8003C1F08 /* DNImageFlowViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF577C24AD70C8003C1F08 /* DNImageFlowViewController.h */; };
  59. 2BDF57A524AD70C8003C1F08 /* DNAlbumTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF577D24AD70C8003C1F08 /* DNAlbumTableViewController.m */; };
  60. 2BDF57A624AD70C8003C1F08 /* DNImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF577E24AD70C8003C1F08 /* DNImagePickerController.m */; };
  61. 2BDF57A724AD70C8003C1F08 /* DNPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF577F24AD70C8003C1F08 /* DNPhotoBrowser.m */; };
  62. 2BDF57A824AD70C8003C1F08 /* DNImageFlowViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF578024AD70C8003C1F08 /* DNImageFlowViewController.m */; };
  63. 2BDF57A924AD70C8003C1F08 /* DNImageFetchOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF578124AD70C8003C1F08 /* DNImageFetchOperation.m */; };
  64. 2BDF57AA24AD70C8003C1F08 /* DNUnAuthorizedTipsView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF578324AD70C8003C1F08 /* DNUnAuthorizedTipsView.h */; };
  65. 2BDF57AB24AD70C8003C1F08 /* DNAssetsViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF578424AD70C8003C1F08 /* DNAssetsViewCell.m */; };
  66. 2BDF57AC24AD70C8003C1F08 /* DNAlbumCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF578524AD70C8003C1F08 /* DNAlbumCell.h */; };
  67. 2BDF57AD24AD70C8003C1F08 /* DNFullImageButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF578624AD70C8003C1F08 /* DNFullImageButton.m */; };
  68. 2BDF57AE24AD70C8003C1F08 /* DNBadgeLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF578724AD70C8003C1F08 /* DNBadgeLabel.m */; };
  69. 2BDF57AF24AD70C8003C1F08 /* DNTapDetectingImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF578824AD70C8003C1F08 /* DNTapDetectingImageView.h */; };
  70. 2BDF57B024AD70C8003C1F08 /* DNBrowserCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF578924AD70C8003C1F08 /* DNBrowserCell.h */; };
  71. 2BDF57B124AD70C8003C1F08 /* DNSendButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF578A24AD70C8003C1F08 /* DNSendButton.h */; };
  72. 2BDF57B224AD70C8003C1F08 /* DNUnAuthorizedTipsView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF578B24AD70C8003C1F08 /* DNUnAuthorizedTipsView.m */; };
  73. 2BDF57B324AD70C8003C1F08 /* DNAlbumCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF578C24AD70C8003C1F08 /* DNAlbumCell.m */; };
  74. 2BDF57B424AD70C8003C1F08 /* DNAssetsViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF578D24AD70C8003C1F08 /* DNAssetsViewCell.h */; };
  75. 2BDF57B524AD70C8003C1F08 /* DNTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF578E24AD70C8003C1F08 /* DNTapDetectingImageView.m */; };
  76. 2BDF57B624AD70C8003C1F08 /* DNBadgeLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF578F24AD70C8003C1F08 /* DNBadgeLabel.h */; };
  77. 2BDF57B724AD70C8003C1F08 /* DNFullImageButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF579024AD70C8003C1F08 /* DNFullImageButton.h */; };
  78. 2BDF57B824AD70C8003C1F08 /* DNSendButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF579124AD70C8003C1F08 /* DNSendButton.m */; };
  79. 2BDF57B924AD70C8003C1F08 /* DNBrowserCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BDF579224AD70C8003C1F08 /* DNBrowserCell.m */; };
  80. 2BDF57BB24AD7257003C1F08 /* DNImagePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BDF57BA24AD7257003C1F08 /* DNImagePicker.h */; };
  81. 2BEF789E23F6A84D000DE285 /* WFCUParticipantCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BEF789223F6A84C000DE285 /* WFCUParticipantCollectionViewCell.m */; };
  82. 2BEF789F23F6A84D000DE285 /* WFCUMultiVideoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEF789323F6A84C000DE285 /* WFCUMultiVideoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  83. 2BEF78A023F6A84D000DE285 /* WFCUPortraitCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEF789423F6A84D000DE285 /* WFCUPortraitCollectionViewCell.h */; };
  84. 2BEF78A123F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEF789523F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.h */; };
  85. 2BEF78A223F6A84D000DE285 /* WFCUMultiVideoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BEF789623F6A84D000DE285 /* WFCUMultiVideoViewController.m */; };
  86. 2BEF78A323F6A84D000DE285 /* WFCUFloatingWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEF789723F6A84D000DE285 /* WFCUFloatingWindow.h */; };
  87. 2BEF78A423F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BEF789823F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.m */; };
  88. 2BEF78A523F6A84D000DE285 /* WFCUPortraitCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BEF789923F6A84D000DE285 /* WFCUPortraitCollectionViewCell.m */; };
  89. 2BEF78A623F6A84D000DE285 /* WFCUVideoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEF789A23F6A84D000DE285 /* WFCUVideoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  90. 2BEF78A723F6A84D000DE285 /* WFCUVideoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BEF789B23F6A84D000DE285 /* WFCUVideoViewController.m */; };
  91. 2BEF78A823F6A84D000DE285 /* WFCUFloatingWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BEF789C23F6A84D000DE285 /* WFCUFloatingWindow.m */; };
  92. 2BEF78A923F6A84D000DE285 /* WFCUParticipantCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BEF789D23F6A84D000DE285 /* WFCUParticipantCollectionViewCell.h */; };
  93. 2F1439F5217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1439F3217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.h */; };
  94. 2F1439F6217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1439F4217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.m */; };
  95. 2F1EB5B22499A21A00FD3575 /* WFCUConferenceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1EB5B02499A21A00FD3575 /* WFCUConferenceViewController.m */; };
  96. 2F1EB5B32499A21A00FD3575 /* WFCUConferenceViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1EB5B12499A21A00FD3575 /* WFCUConferenceViewController.h */; };
  97. 2F1EB5B72499A30500FD3575 /* WFCUCreateConferenceViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1EB5B52499A30500FD3575 /* WFCUCreateConferenceViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  98. 2F1EB5B82499A30500FD3575 /* WFCUCreateConferenceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1EB5B62499A30500FD3575 /* WFCUCreateConferenceViewController.m */; };
  99. 2F1EB5BB2499AA5E00FD3575 /* WFCUConferenceInviteViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1EB5B92499AA5E00FD3575 /* WFCUConferenceInviteViewController.h */; };
  100. 2F1EB5BC2499AA5E00FD3575 /* WFCUConferenceInviteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1EB5BA2499AA5E00FD3575 /* WFCUConferenceInviteViewController.m */; };
  101. 2F1EB5C32499AFF900FD3575 /* WFCUConferenceInviteCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F1EB5C12499AFF900FD3575 /* WFCUConferenceInviteCell.h */; };
  102. 2F1EB5C42499AFF900FD3575 /* WFCUConferenceInviteCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F1EB5C22499AFF900FD3575 /* WFCUConferenceInviteCell.m */; };
  103. 2F337EE6219EE1840086B0F3 /* WFCUTextCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F337EE5219EE1840086B0F3 /* WFCUTextCell.h */; };
  104. 2F341A4F235EF12B00F0D1B6 /* WFCUGroupAnnouncement.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F341A4D235EF12B00F0D1B6 /* WFCUGroupAnnouncement.h */; settings = {ATTRIBUTES = (Public, ); }; };
  105. 2F341A50235EF12B00F0D1B6 /* WFCUGroupAnnouncement.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F341A4E235EF12B00F0D1B6 /* WFCUGroupAnnouncement.m */; };
  106. 2F341A53235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F341A51235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.h */; };
  107. 2F341A54235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F341A52235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.m */; };
  108. 2F36433321C136C400904CAB /* WFCUFavChannelTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F36433121C136C400904CAB /* WFCUFavChannelTableViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  109. 2F36433421C136C400904CAB /* WFCUFavChannelTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F36433221C136C400904CAB /* WFCUFavChannelTableViewController.m */; };
  110. 2F36433721C13C5300904CAB /* WFCUChannelTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F36433521C13C5300904CAB /* WFCUChannelTableViewCell.h */; };
  111. 2F36433821C13C5300904CAB /* WFCUChannelTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F36433621C13C5300904CAB /* WFCUChannelTableViewCell.m */; };
  112. 2F3A6C18219EE941009A8B4B /* WFCUFaceBoard.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3A6C12219EE941009A8B4B /* WFCUFaceBoard.m */; };
  113. 2F3A6C19219EE941009A8B4B /* WFCUFaceBoard.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3A6C13219EE941009A8B4B /* WFCUFaceBoard.h */; settings = {ATTRIBUTES = (Public, ); }; };
  114. 2F3A6C1A219EE941009A8B4B /* WFCUFaceButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3A6C14219EE941009A8B4B /* WFCUFaceButton.m */; };
  115. 2F3A6C1B219EE941009A8B4B /* WFCUFaceButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3A6C15219EE941009A8B4B /* WFCUFaceButton.h */; };
  116. 2F3A6C1C219EE941009A8B4B /* WFCUStickerItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3A6C16219EE941009A8B4B /* WFCUStickerItem.h */; };
  117. 2F3A6C1D219EE941009A8B4B /* WFCUStickerItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F3A6C17219EE941009A8B4B /* WFCUStickerItem.m */; };
  118. 2F518FEF235ED5B300FA3D58 /* WFCUAppServiceProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F518FEE235ED5B300FA3D58 /* WFCUAppServiceProvider.h */; settings = {ATTRIBUTES = (Public, ); }; };
  119. 2F535BFF25296E6600C9AF09 /* WFCUQuoteViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F535BFD25296E6600C9AF09 /* WFCUQuoteViewController.h */; };
  120. 2F535C0025296E6600C9AF09 /* WFCUQuoteViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F535BFE25296E6600C9AF09 /* WFCUQuoteViewController.m */; };
  121. 2F550BE4217F4D7B00F56C26 /* WFChatUIKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550BE2217F4D7B00F56C26 /* WFChatUIKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
  122. 2F550BF3217F4DCD00F56C26 /* WFChatClient.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F550BEC217F4DCD00F56C26 /* WFChatClient.framework */; };
  123. 2F551091217F5CC200F56C26 /* WFCUMediaMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EB4217F5CC000F56C26 /* WFCUMediaMessageCell.m */; };
  124. 2F551092217F5CC200F56C26 /* WFCULocationCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EB5217F5CC000F56C26 /* WFCULocationCell.h */; };
  125. 2F551093217F5CC200F56C26 /* WFCUFileCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EB6217F5CC000F56C26 /* WFCUFileCell.m */; };
  126. 2F551094217F5CC200F56C26 /* WFCUCallSummaryCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EB7217F5CC000F56C26 /* WFCUCallSummaryCell.m */; };
  127. 2F551095217F5CC200F56C26 /* WFCUInformationCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EB8217F5CC000F56C26 /* WFCUInformationCell.m */; };
  128. 2F551096217F5CC200F56C26 /* WFCUImageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EB9217F5CC000F56C26 /* WFCUImageCell.h */; };
  129. 2F551097217F5CC200F56C26 /* WFCUVoiceCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EBA217F5CC000F56C26 /* WFCUVoiceCell.m */; };
  130. 2F551098217F5CC200F56C26 /* WFCUMessageCellBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EBB217F5CC000F56C26 /* WFCUMessageCellBase.h */; };
  131. 2F551099217F5CC200F56C26 /* WFCUTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EBC217F5CC000F56C26 /* WFCUTextCell.m */; };
  132. 2F55109A217F5CC200F56C26 /* WFCUVideoCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EBD217F5CC000F56C26 /* WFCUVideoCell.m */; };
  133. 2F55109B217F5CC200F56C26 /* WFCUMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EBE217F5CC000F56C26 /* WFCUMessageCell.h */; };
  134. 2F55109C217F5CC200F56C26 /* WFCUStickerCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EBF217F5CC000F56C26 /* WFCUStickerCell.h */; };
  135. 2F55109D217F5CC200F56C26 /* WFCUMediaMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EC0217F5CC000F56C26 /* WFCUMediaMessageCell.h */; };
  136. 2F55109E217F5CC200F56C26 /* WFCUFileCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EC1217F5CC000F56C26 /* WFCUFileCell.h */; };
  137. 2F55109F217F5CC200F56C26 /* WFCULocationCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EC2217F5CC000F56C26 /* WFCULocationCell.m */; };
  138. 2F5510A1217F5CC200F56C26 /* WFCUMessageCellBase.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EC4217F5CC000F56C26 /* WFCUMessageCellBase.m */; };
  139. 2F5510A2217F5CC200F56C26 /* WFCUVoiceCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EC5217F5CC000F56C26 /* WFCUVoiceCell.h */; };
  140. 2F5510A3217F5CC200F56C26 /* WFCUImageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EC6217F5CC000F56C26 /* WFCUImageCell.m */; };
  141. 2F5510A4217F5CC200F56C26 /* WFCUInformationCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EC7217F5CC000F56C26 /* WFCUInformationCell.h */; };
  142. 2F5510A5217F5CC200F56C26 /* WFCUCallSummaryCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EC8217F5CC000F56C26 /* WFCUCallSummaryCell.h */; };
  143. 2F5510A6217F5CC200F56C26 /* WFCUStickerCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EC9217F5CC000F56C26 /* WFCUStickerCell.m */; };
  144. 2F5510A7217F5CC200F56C26 /* WFCUMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550ECA217F5CC000F56C26 /* WFCUMessageCell.m */; };
  145. 2F5510A8217F5CC200F56C26 /* WFCUVideoCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550ECB217F5CC000F56C26 /* WFCUVideoCell.h */; };
  146. 2F5510A9217F5CC200F56C26 /* WFCUMessageModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550ECD217F5CC000F56C26 /* WFCUMessageModel.m */; };
  147. 2F5510AA217F5CC200F56C26 /* WFCUMessageModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550ECE217F5CC000F56C26 /* WFCUMessageModel.h */; };
  148. 2F5510AB217F5CC200F56C26 /* WFCUMessageListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550ED0217F5CC000F56C26 /* WFCUMessageListViewController.m */; };
  149. 2F5510AC217F5CC200F56C26 /* WFCUMessageListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550ED1217F5CC000F56C26 /* WFCUMessageListViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  150. 2F5510AD217F5CC200F56C26 /* WFCUProfileTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550ED3217F5CC000F56C26 /* WFCUProfileTableViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  151. 2F5510AE217F5CC200F56C26 /* WFCUGroupMemberTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550ED4217F5CC000F56C26 /* WFCUGroupMemberTableViewCell.m */; };
  152. 2F5510AF217F5CC200F56C26 /* WFCUInviteGroupMemberViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550ED5217F5CC000F56C26 /* WFCUInviteGroupMemberViewController.h */; };
  153. 2F5510B0217F5CC200F56C26 /* WFCUGroupMemberTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550ED6217F5CC000F56C26 /* WFCUGroupMemberTableViewController.h */; };
  154. 2F5510B1217F5CC200F56C26 /* WFCUGroupTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550ED7217F5CC000F56C26 /* WFCUGroupTableViewCell.m */; };
  155. 2F5510B2217F5CC200F56C26 /* WFCUImagePreviewViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550ED8217F5CC000F56C26 /* WFCUImagePreviewViewController.h */; };
  156. 2F5510B3217F5CC200F56C26 /* WFCUSearchViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550ED9217F5CC000F56C26 /* WFCUSearchViewController.m */; };
  157. 2F5510B4217F5CC200F56C26 /* WFCUGeneralModifyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EDA217F5CC000F56C26 /* WFCUGeneralModifyViewController.m */; };
  158. 2F5510B5217F5CC200F56C26 /* WFCUBrowserViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EDB217F5CC000F56C26 /* WFCUBrowserViewController.m */; };
  159. 2F5510B6217F5CC200F56C26 /* WFCUProfileTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EDC217F5CC000F56C26 /* WFCUProfileTableViewController.m */; };
  160. 2F5510B7217F5CC200F56C26 /* WFCUGroupMemberTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EDD217F5CC000F56C26 /* WFCUGroupMemberTableViewCell.h */; };
  161. 2F5510B8217F5CC200F56C26 /* WFCUImagePreviewViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EDE217F5CC000F56C26 /* WFCUImagePreviewViewController.m */; };
  162. 2F5510B9217F5CC200F56C26 /* WFCUGroupTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EDF217F5CC000F56C26 /* WFCUGroupTableViewCell.h */; };
  163. 2F5510BA217F5CC200F56C26 /* WFCUGroupMemberTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EE0217F5CC000F56C26 /* WFCUGroupMemberTableViewController.m */; };
  164. 2F5510BB217F5CC200F56C26 /* WFCUInviteGroupMemberViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EE1217F5CC000F56C26 /* WFCUInviteGroupMemberViewController.m */; };
  165. 2F5510BC217F5CC200F56C26 /* WFCUBrowserViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EE2217F5CC000F56C26 /* WFCUBrowserViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  166. 2F5510BD217F5CC200F56C26 /* WFCUGeneralModifyViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EE3217F5CC000F56C26 /* WFCUGeneralModifyViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  167. 2F5510BE217F5CC200F56C26 /* WFCUSearchViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EE4217F5CC000F56C26 /* WFCUSearchViewController.h */; };
  168. 2F5510BF217F5CC200F56C26 /* WFCUCreateGroupViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EE7217F5CC000F56C26 /* WFCUCreateGroupViewController.m */; };
  169. 2F5510C0217F5CC200F56C26 /* WFCUCreateGroupViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EE8217F5CC000F56C26 /* WFCUCreateGroupViewController.h */; };
  170. 2F5510C5217F5CC200F56C26 /* WFCUFavGroupTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EF0217F5CC000F56C26 /* WFCUFavGroupTableViewController.h */; };
  171. 2F5510C6217F5CC200F56C26 /* WFCUFavGroupTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EF1217F5CC000F56C26 /* WFCUFavGroupTableViewController.m */; };
  172. 2F5510C7217F5CC200F56C26 /* WFCULocationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EF4217F5CC000F56C26 /* WFCULocationViewController.m */; };
  173. 2F5510C8217F5CC200F56C26 /* WFCUPluginItemView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EF5217F5CC000F56C26 /* WFCUPluginItemView.h */; };
  174. 2F5510C9217F5CC200F56C26 /* WFCUSelectFileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550EF6217F5CC000F56C26 /* WFCUSelectFileViewController.m */; };
  175. 2F5510CA217F5CC200F56C26 /* WFCUPluginBoardView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EF7217F5CC000F56C26 /* WFCUPluginBoardView.h */; };
  176. 2F5510CB217F5CC200F56C26 /* WFCUChatInputBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EF8217F5CC000F56C26 /* WFCUChatInputBar.h */; };
  177. 2F5510CC217F5CC200F56C26 /* WFCUVoiceRecordView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EF9217F5CC000F56C26 /* WFCUVoiceRecordView.h */; };
  178. 2F5510CD217F5CC200F56C26 /* WFCUSelectedFileCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550EFA217F5CC000F56C26 /* WFCUSelectedFileCollectionViewCell.h */; };
  179. 2F5510E3217F5CC200F56C26 /* WFCUEmotionTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F14217F5CC100F56C26 /* WFCUEmotionTextAttachment.m */; };
  180. 2F5510E4217F5CC200F56C26 /* WFCULocationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F15217F5CC100F56C26 /* WFCULocationPoint.h */; };
  181. 2F5510E5217F5CC200F56C26 /* WFCUPluginItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F16217F5CC100F56C26 /* WFCUPluginItemView.m */; };
  182. 2F5510E6217F5CC200F56C26 /* WFCULocationViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F17217F5CC100F56C26 /* WFCULocationViewController.h */; };
  183. 2F5510E7217F5CC200F56C26 /* WFCUChatInputBar.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F18217F5CC100F56C26 /* WFCUChatInputBar.m */; };
  184. 2F5510E8217F5CC200F56C26 /* WFCUPluginBoardView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F19217F5CC100F56C26 /* WFCUPluginBoardView.m */; };
  185. 2F5510E9217F5CC200F56C26 /* WFCUSelectFileViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F1A217F5CC100F56C26 /* WFCUSelectFileViewController.h */; };
  186. 2F5510EA217F5CC200F56C26 /* WFCUEmotionTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F1B217F5CC100F56C26 /* WFCUEmotionTextAttachment.h */; };
  187. 2F5510EB217F5CC200F56C26 /* WFCUSelectedFileCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F1C217F5CC100F56C26 /* WFCUSelectedFileCollectionViewCell.m */; };
  188. 2F5510EC217F5CC200F56C26 /* WFCUVoiceRecordView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F1D217F5CC100F56C26 /* WFCUVoiceRecordView.m */; };
  189. 2F5510ED217F5CC200F56C26 /* WFCULocationPoint.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F1E217F5CC100F56C26 /* WFCULocationPoint.m */; };
  190. 2F5510EE217F5CC200F56C26 /* CCHMapTreeUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F20217F5CC100F56C26 /* CCHMapTreeUtils.m */; };
  191. 2F5510EF217F5CC200F56C26 /* CCHMapClusterControllerDebugPolygon.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F21217F5CC100F56C26 /* CCHMapClusterControllerDebugPolygon.h */; };
  192. 2F5510F0217F5CC200F56C26 /* CCHMapTree.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F22217F5CC100F56C26 /* CCHMapTree.m */; };
  193. 2F5510F1217F5CC200F56C26 /* CCHMapClusterController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F23217F5CC100F56C26 /* CCHMapClusterController.m */; };
  194. 2F5510F2217F5CC200F56C26 /* CCHMapClusterControllerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F24217F5CC100F56C26 /* CCHMapClusterControllerUtils.m */; };
  195. 2F5510F3217F5CC200F56C26 /* CCHMapClusterOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F25217F5CC100F56C26 /* CCHMapClusterOperation.m */; };
  196. 2F5510F4217F5CC200F56C26 /* CCHCenterOfMassMapClusterer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F26217F5CC100F56C26 /* CCHCenterOfMassMapClusterer.h */; };
  197. 2F5510F5217F5CC200F56C26 /* CCHMapViewDelegateProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F27217F5CC100F56C26 /* CCHMapViewDelegateProxy.h */; };
  198. 2F5510F6217F5CC200F56C26 /* CCHMapAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F28217F5CC100F56C26 /* CCHMapAnimator.h */; };
  199. 2F5510F7217F5CC200F56C26 /* CCHMapClusterAnnotation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F29217F5CC100F56C26 /* CCHMapClusterAnnotation.m */; };
  200. 2F5510F8217F5CC200F56C26 /* CCHFadeInOutMapAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F2A217F5CC100F56C26 /* CCHFadeInOutMapAnimator.h */; };
  201. 2F5510F9217F5CC200F56C26 /* CCHNearCenterMapClusterer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F2B217F5CC100F56C26 /* CCHNearCenterMapClusterer.h */; };
  202. 2F5510FA217F5CC200F56C26 /* CCHMapClusterControllerDebugPolygon.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F2C217F5CC100F56C26 /* CCHMapClusterControllerDebugPolygon.m */; };
  203. 2F5510FB217F5CC200F56C26 /* CCHMapClusterControllerDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F2D217F5CC100F56C26 /* CCHMapClusterControllerDelegate.h */; };
  204. 2F5510FC217F5CC200F56C26 /* CCHMapTreeUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F2E217F5CC100F56C26 /* CCHMapTreeUtils.h */; };
  205. 2F5510FD217F5CC200F56C26 /* CCHMapClusterController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F2F217F5CC100F56C26 /* CCHMapClusterController.h */; };
  206. 2F5510FE217F5CC200F56C26 /* CCHMapClusterer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F30217F5CC100F56C26 /* CCHMapClusterer.h */; };
  207. 2F5510FF217F5CC200F56C26 /* CCHMapTree.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F31217F5CC100F56C26 /* CCHMapTree.h */; };
  208. 2F551100217F5CC200F56C26 /* CCHMapClusterControllerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F32217F5CC100F56C26 /* CCHMapClusterControllerUtils.h */; };
  209. 2F551101217F5CC200F56C26 /* CCHMapClusterOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F33217F5CC100F56C26 /* CCHMapClusterOperation.h */; };
  210. 2F551102217F5CC200F56C26 /* CCHNearCenterMapClusterer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F34217F5CC100F56C26 /* CCHNearCenterMapClusterer.m */; };
  211. 2F551103217F5CC200F56C26 /* CCHFadeInOutMapAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F35217F5CC100F56C26 /* CCHFadeInOutMapAnimator.m */; };
  212. 2F551104217F5CC200F56C26 /* CCHMapClusterAnnotation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F36217F5CC100F56C26 /* CCHMapClusterAnnotation.h */; };
  213. 2F551105217F5CC200F56C26 /* CCHMapViewDelegateProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F37217F5CC100F56C26 /* CCHMapViewDelegateProxy.m */; };
  214. 2F551106217F5CC200F56C26 /* CCHCenterOfMassMapClusterer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F38217F5CC100F56C26 /* CCHCenterOfMassMapClusterer.m */; };
  215. 2F551109217F5CC200F56C26 /* pinyin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F3D217F5CC100F56C26 /* pinyin.h */; };
  216. 2F55110A217F5CC200F56C26 /* pinyin.c in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F3E217F5CC100F56C26 /* pinyin.c */; };
  217. 2F55110B217F5CC200F56C26 /* VideoPlayerSampleViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F40217F5CC100F56C26 /* VideoPlayerSampleViewController.h */; };
  218. 2F55110C217F5CC200F56C26 /* FullScreenView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F41217F5CC100F56C26 /* FullScreenView.h */; };
  219. 2F55110D217F5CC200F56C26 /* AirplayActiveView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F42217F5CC100F56C26 /* AirplayActiveView.m */; };
  220. 2F55110E217F5CC200F56C26 /* VideoPlayerSampleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F43217F5CC100F56C26 /* VideoPlayerSampleView.h */; };
  221. 2F55110F217F5CC200F56C26 /* FullScreenViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F44217F5CC100F56C26 /* FullScreenViewController.h */; };
  222. 2F551110217F5CC200F56C26 /* VideoPlayerKit.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F45217F5CC100F56C26 /* VideoPlayerKit.h */; settings = {ATTRIBUTES = (Public, ); }; };
  223. 2F551111217F5CC200F56C26 /* VideoPlayerView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F46217F5CC100F56C26 /* VideoPlayerView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  224. 2F551112217F5CC200F56C26 /* VideoPlayerSampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F47217F5CC100F56C26 /* VideoPlayerSampleViewController.m */; };
  225. 2F551113217F5CC200F56C26 /* VideoPlayerSampleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F48217F5CC100F56C26 /* VideoPlayerSampleView.m */; };
  226. 2F551114217F5CC200F56C26 /* AirplayActiveView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F49217F5CC100F56C26 /* AirplayActiveView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  227. 2F551115217F5CC200F56C26 /* FullScreenView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F4A217F5CC100F56C26 /* FullScreenView.m */; };
  228. 2F551124217F5CC200F56C26 /* FullScreenViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F5A217F5CC100F56C26 /* FullScreenViewController.m */; };
  229. 2F551125217F5CC200F56C26 /* VideoPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F5B217F5CC100F56C26 /* VideoPlayer.h */; settings = {ATTRIBUTES = (Public, ); }; };
  230. 2F551126217F5CC200F56C26 /* VideoPlayerView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F5C217F5CC100F56C26 /* VideoPlayerView.m */; };
  231. 2F551127217F5CC200F56C26 /* VideoPlayerKit.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F5D217F5CC100F56C26 /* VideoPlayerKit.m */; };
  232. 2F551150217F5CC200F56C26 /* KZVideoListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F8E217F5CC100F56C26 /* KZVideoListViewController.h */; };
  233. 2F551151217F5CC200F56C26 /* KZVideoConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F8F217F5CC100F56C26 /* KZVideoConfig.m */; };
  234. 2F551152217F5CC200F56C26 /* KZVideoSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F90217F5CC100F56C26 /* KZVideoSupport.h */; };
  235. 2F551153217F5CC200F56C26 /* KZVideoPlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F91217F5CC100F56C26 /* KZVideoPlayer.m */; };
  236. 2F551154217F5CC200F56C26 /* KZVideoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F92217F5CC100F56C26 /* KZVideoViewController.m */; };
  237. 2F551155217F5CC200F56C26 /* KZVideoConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F93217F5CC100F56C26 /* KZVideoConfig.h */; settings = {ATTRIBUTES = (Public, ); }; };
  238. 2F551156217F5CC200F56C26 /* KZVideoListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F94217F5CC100F56C26 /* KZVideoListViewController.m */; };
  239. 2F551157217F5CC200F56C26 /* KZVideoSupport.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F95217F5CC100F56C26 /* KZVideoSupport.m */; };
  240. 2F551158217F5CC200F56C26 /* KZVideoPlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F96217F5CC100F56C26 /* KZVideoPlayer.h */; };
  241. 2F551159217F5CC200F56C26 /* KZVideoViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F97217F5CC100F56C26 /* KZVideoViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  242. 2F55115A217F5CC200F56C26 /* SDPhotoBrowserConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F99217F5CC100F56C26 /* SDPhotoBrowserConfig.h */; };
  243. 2F55115B217F5CC200F56C26 /* SDPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F9A217F5CC100F56C26 /* SDPhotoBrowser.m */; };
  244. 2F55115C217F5CC200F56C26 /* SDWaitingView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F9B217F5CC100F56C26 /* SDWaitingView.m */; };
  245. 2F55115D217F5CC200F56C26 /* SDBrowserImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550F9C217F5CC100F56C26 /* SDBrowserImageView.m */; };
  246. 2F55115E217F5CC200F56C26 /* SDWaitingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F9D217F5CC100F56C26 /* SDWaitingView.h */; };
  247. 2F55115F217F5CC200F56C26 /* SDPhotoBrowser.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F9E217F5CC100F56C26 /* SDPhotoBrowser.h */; };
  248. 2F551160217F5CC200F56C26 /* SDBrowserImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550F9F217F5CC100F56C26 /* SDBrowserImageView.h */; };
  249. 2F551161217F5CC200F56C26 /* KxMenu.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FA1217F5CC100F56C26 /* KxMenu.m */; };
  250. 2F551162217F5CC200F56C26 /* KxMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FA2217F5CC100F56C26 /* KxMenu.h */; };
  251. 2F551163217F5CC200F56C26 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FA4217F5CC100F56C26 /* AFSecurityPolicy.h */; };
  252. 2F551164217F5CC200F56C26 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FA5217F5CC100F56C26 /* AFNetworkReachabilityManager.h */; };
  253. 2F551165217F5CC200F56C26 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FA6217F5CC100F56C26 /* AFURLSessionManager.h */; };
  254. 2F551166217F5CC200F56C26 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FA7217F5CC100F56C26 /* AFURLRequestSerialization.h */; };
  255. 2F551167217F5CC200F56C26 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FA8217F5CC100F56C26 /* AFURLResponseSerialization.m */; };
  256. 2F551168217F5CC200F56C26 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FA9217F5CC100F56C26 /* AFHTTPSessionManager.m */; };
  257. 2F551169217F5CC200F56C26 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FAA217F5CC100F56C26 /* AFURLResponseSerialization.h */; };
  258. 2F55116A217F5CC200F56C26 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FAB217F5CC100F56C26 /* AFURLSessionManager.m */; };
  259. 2F55116B217F5CC200F56C26 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FAC217F5CC100F56C26 /* AFURLRequestSerialization.m */; };
  260. 2F55116C217F5CC200F56C26 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FAD217F5CC100F56C26 /* AFNetworking.h */; };
  261. 2F55116D217F5CC200F56C26 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FAE217F5CC100F56C26 /* AFNetworkReachabilityManager.m */; };
  262. 2F55116E217F5CC200F56C26 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FAF217F5CC100F56C26 /* AFSecurityPolicy.m */; };
  263. 2F55116F217F5CC200F56C26 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FB0217F5CC100F56C26 /* AFHTTPSessionManager.h */; };
  264. 2F55118D217F5CC200F56C26 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FD6217F5CC100F56C26 /* MBProgressHUD.m */; };
  265. 2F55118E217F5CC200F56C26 /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FD7217F5CC100F56C26 /* MBProgressHUD.h */; };
  266. 2F55118F217F5CC200F56C26 /* UIView+SDExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FD9217F5CC100F56C26 /* UIView+SDExtension.h */; };
  267. 2F551190217F5CC200F56C26 /* SDRefreshFooterView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FDA217F5CC100F56C26 /* SDRefreshFooterView.h */; };
  268. 2F551191217F5CC200F56C26 /* SDRefreshView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FDB217F5CC100F56C26 /* SDRefreshView.h */; };
  269. 2F551192217F5CC200F56C26 /* SDRefreshHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FDC217F5CC100F56C26 /* SDRefreshHeaderView.m */; };
  270. 2F551194217F5CC200F56C26 /* UIView+SDExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FDE217F5CC100F56C26 /* UIView+SDExtension.m */; };
  271. 2F551195217F5CC200F56C26 /* SDRefreshFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FDF217F5CC100F56C26 /* SDRefreshFooterView.m */; };
  272. 2F551196217F5CC200F56C26 /* SDRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FE0217F5CC100F56C26 /* SDRefresh.h */; };
  273. 2F551197217F5CC200F56C26 /* SDRefreshHeaderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FE1217F5CC100F56C26 /* SDRefreshHeaderView.h */; };
  274. 2F551198217F5CC200F56C26 /* SDRefreshView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FE2217F5CC100F56C26 /* SDRefreshView.m */; };
  275. 2F551199217F5CC200F56C26 /* UITextView+Placeholder.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F550FE4217F5CC100F56C26 /* UITextView+Placeholder.m */; };
  276. 2F55119A217F5CC200F56C26 /* UITextView+Placeholder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F550FE5217F5CC100F56C26 /* UITextView+Placeholder.h */; };
  277. 2F5511CE217F5CC300F56C26 /* TYAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55101E217F5CC100F56C26 /* TYAlertView.m */; };
  278. 2F5511CF217F5CC300F56C26 /* TYAlertDropDownAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55101F217F5CC100F56C26 /* TYAlertDropDownAnimation.h */; };
  279. 2F5511D0217F5CC300F56C26 /* UIView+TYAutoLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551020217F5CC100F56C26 /* UIView+TYAutoLayout.h */; };
  280. 2F5511D1217F5CC300F56C26 /* TYShowAlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551021217F5CC100F56C26 /* TYShowAlertView.h */; };
  281. 2F5511D2217F5CC300F56C26 /* UIView+TYAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551022217F5CC100F56C26 /* UIView+TYAlertView.m */; };
  282. 2F5511D3217F5CC300F56C26 /* TYAlertScaleFadeAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551023217F5CC100F56C26 /* TYAlertScaleFadeAnimation.m */; };
  283. 2F5511D4217F5CC300F56C26 /* TYBaseAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551024217F5CC100F56C26 /* TYBaseAnimation.h */; };
  284. 2F5511D5217F5CC300F56C26 /* TYAlertFadeAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551025217F5CC100F56C26 /* TYAlertFadeAnimation.m */; };
  285. 2F5511D6217F5CC300F56C26 /* TYAlertController+TransitionAnimate.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551026217F5CC100F56C26 /* TYAlertController+TransitionAnimate.m */; };
  286. 2F5511D7217F5CC300F56C26 /* TYAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551027217F5CC100F56C26 /* TYAlertController.h */; };
  287. 2F5511D8217F5CC300F56C26 /* UIView+TYAutoLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551028217F5CC100F56C26 /* UIView+TYAutoLayout.m */; };
  288. 2F5511D9217F5CC300F56C26 /* TYAlertDropDownAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551029217F5CC100F56C26 /* TYAlertDropDownAnimation.m */; };
  289. 2F5511DA217F5CC300F56C26 /* TYAlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55102A217F5CC100F56C26 /* TYAlertView.h */; };
  290. 2F5511DB217F5CC300F56C26 /* UIView+TYAlertView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55102B217F5CC100F56C26 /* UIView+TYAlertView.h */; };
  291. 2F5511DC217F5CC300F56C26 /* TYShowAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55102C217F5CC100F56C26 /* TYShowAlertView.m */; };
  292. 2F5511DD217F5CC300F56C26 /* TYBaseAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55102D217F5CC100F56C26 /* TYBaseAnimation.m */; };
  293. 2F5511DE217F5CC300F56C26 /* TYAlertScaleFadeAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55102E217F5CC100F56C26 /* TYAlertScaleFadeAnimation.h */; };
  294. 2F5511DF217F5CC300F56C26 /* TYAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55102F217F5CC100F56C26 /* TYAlertController.m */; };
  295. 2F5511E0217F5CC300F56C26 /* TYAlertFadeAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551030217F5CC100F56C26 /* TYAlertFadeAnimation.h */; };
  296. 2F5511E1217F5CC300F56C26 /* YLGIFImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551032217F5CC100F56C26 /* YLGIFImage.m */; };
  297. 2F5511E2217F5CC300F56C26 /* YLImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551033217F5CC100F56C26 /* YLImageView.m */; };
  298. 2F5511E3217F5CC300F56C26 /* YLGIFImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551034217F5CC100F56C26 /* YLGIFImage.h */; };
  299. 2F5511E4217F5CC300F56C26 /* YLImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551035217F5CC100F56C26 /* YLImageView.h */; };
  300. 2F5511E6217F5CC300F56C26 /* WFCUForwardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551038217F5CC100F56C26 /* WFCUForwardViewController.m */; };
  301. 2F5511E7217F5CC300F56C26 /* WFCUForwardMessageCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551039217F5CC100F56C26 /* WFCUForwardMessageCell.m */; };
  302. 2F5511E8217F5CC300F56C26 /* WFCUShareMessageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55103A217F5CC100F56C26 /* WFCUShareMessageView.m */; };
  303. 2F5511E9217F5CC300F56C26 /* WFCUForwardViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55103B217F5CC100F56C26 /* WFCUForwardViewController.h */; };
  304. 2F5511EB217F5CC300F56C26 /* WFCUShareMessageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55103D217F5CC100F56C26 /* WFCUShareMessageView.h */; };
  305. 2F5511EC217F5CC300F56C26 /* WFCUForwardMessageCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55103E217F5CC100F56C26 /* WFCUForwardMessageCell.h */; };
  306. 2F5511ED217F5CC300F56C26 /* TabbarButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551040217F5CC100F56C26 /* TabbarButton.h */; };
  307. 2F5511EE217F5CC300F56C26 /* UIImage+ERCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551041217F5CC100F56C26 /* UIImage+ERCategory.h */; };
  308. 2F5511EF217F5CC300F56C26 /* AttributedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551042217F5CC100F56C26 /* AttributedLabel.h */; };
  309. 2F5511F0217F5CC300F56C26 /* BubbleTipView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551043217F5CC100F56C26 /* BubbleTipView.m */; };
  310. 2F5511F1217F5CC300F56C26 /* UIView+Toast.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551044217F5CC100F56C26 /* UIView+Toast.h */; settings = {ATTRIBUTES = (Public, ); }; };
  311. 2F5511F2217F5CC300F56C26 /* UIView+Screenshot.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551045217F5CC100F56C26 /* UIView+Screenshot.h */; };
  312. 2F5511F3217F5CC300F56C26 /* UITabBar+badge.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551046217F5CC100F56C26 /* UITabBar+badge.h */; settings = {ATTRIBUTES = (Public, ); }; };
  313. 2F5511F4217F5CC300F56C26 /* AttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551047217F5CC100F56C26 /* AttributedLabel.m */; };
  314. 2F5511F5217F5CC300F56C26 /* UIImage+ERCategory.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551048217F5CC100F56C26 /* UIImage+ERCategory.m */; };
  315. 2F5511F6217F5CC300F56C26 /* TabbarButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551049217F5CC100F56C26 /* TabbarButton.m */; };
  316. 2F5511F7217F5CC300F56C26 /* BubbleTipView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55104A217F5CC100F56C26 /* BubbleTipView.h */; settings = {ATTRIBUTES = (Public, ); }; };
  317. 2F5511F8217F5CC300F56C26 /* UITabBar+badge.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55104B217F5CC100F56C26 /* UITabBar+badge.m */; };
  318. 2F5511F9217F5CC300F56C26 /* UIView+Screenshot.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55104C217F5CC100F56C26 /* UIView+Screenshot.m */; };
  319. 2F5511FA217F5CC300F56C26 /* UIView+Toast.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55104D217F5CC100F56C26 /* UIView+Toast.m */; };
  320. 2F5511FB217F5CC300F56C26 /* WFCUSwitchTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551050217F5CC100F56C26 /* WFCUSwitchTableViewCell.m */; };
  321. 2F5511FC217F5CC300F56C26 /* WFCUConversationSettingMemberCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551051217F5CC100F56C26 /* WFCUConversationSettingMemberCell.h */; };
  322. 2F5511FD217F5CC300F56C26 /* WFCUSwitchTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551052217F5CC100F56C26 /* WFCUSwitchTableViewCell.h */; };
  323. 2F5511FE217F5CC300F56C26 /* WFCUConversationSettingMemberCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551053217F5CC100F56C26 /* WFCUConversationSettingMemberCell.m */; };
  324. 2F5511FF217F5CC300F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551055217F5CC100F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.m */; };
  325. 2F551200217F5CC300F56C26 /* WFCUConversationSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551056217F5CC100F56C26 /* WFCUConversationSettingViewController.m */; };
  326. 2F551201217F5CC300F56C26 /* WFCUConversationSettingViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551057217F5CC100F56C26 /* WFCUConversationSettingViewController.h */; };
  327. 2F551202217F5CC300F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551058217F5CC100F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.h */; };
  328. 2F551203217F5CC300F56C26 /* WFCUConversationTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55105B217F5CC100F56C26 /* WFCUConversationTableViewCell.h */; };
  329. 2F551205217F5CC300F56C26 /* WFCUConversationTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55105D217F5CC100F56C26 /* WFCUConversationTableViewCell.m */; };
  330. 2F551209217F5CC300F56C26 /* WFCUConversationTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551063217F5CC100F56C26 /* WFCUConversationTableViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  331. 2F55120A217F5CC300F56C26 /* WFCUConversationTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551064217F5CC100F56C26 /* WFCUConversationTableViewController.m */; };
  332. 2F55120B217F5CC300F56C26 /* WFCUNewFriendTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551067217F5CC100F56C26 /* WFCUNewFriendTableViewCell.m */; };
  333. 2F55120C217F5CC300F56C26 /* WFCUContactTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551068217F5CC100F56C26 /* WFCUContactTableViewCell.m */; };
  334. 2F55120D217F5CC300F56C26 /* WFCUContactSelectTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551069217F5CC100F56C26 /* WFCUContactSelectTableViewCell.m */; };
  335. 2F55120E217F5CC300F56C26 /* WFCUNewFriendTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55106A217F5CC100F56C26 /* WFCUNewFriendTableViewCell.h */; };
  336. 2F55120F217F5CC300F56C26 /* WFCUContactTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55106B217F5CC100F56C26 /* WFCUContactTableViewCell.h */; };
  337. 2F551210217F5CC300F56C26 /* WFCUContactSelectTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55106C217F5CC100F56C26 /* WFCUContactSelectTableViewCell.h */; };
  338. 2F551211217F5CC300F56C26 /* WFCUContactListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55106E217F5CC100F56C26 /* WFCUContactListViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  339. 2F551212217F5CC300F56C26 /* WFCUContactListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55106F217F5CC100F56C26 /* WFCUContactListViewController.m */; };
  340. 2F551213217F5CC300F56C26 /* WFCUAddFriendViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551072217F5CC100F56C26 /* WFCUAddFriendViewController.m */; };
  341. 2F551214217F5CC300F56C26 /* WFCUAddFriendViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551073217F5CC100F56C26 /* WFCUAddFriendViewController.h */; };
  342. 2F551216217F5CC300F56C26 /* WFCUMyProfileTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551076217F5CC100F56C26 /* WFCUMyProfileTableViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  343. 2F55121A217F5CC300F56C26 /* WFCUMyPortraitViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55107A217F5CC100F56C26 /* WFCUMyPortraitViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  344. 2F55121B217F5CC300F56C26 /* WFCUMessageNotificationViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55107B217F5CC100F56C26 /* WFCUMessageNotificationViewController.m */; };
  345. 2F55121C217F5CC300F56C26 /* WFCUModifyMyProfileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55107C217F5CC100F56C26 /* WFCUModifyMyProfileViewController.m */; };
  346. 2F551220217F5CC300F56C26 /* WFCUMyProfileTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551080217F5CC100F56C26 /* WFCUMyProfileTableViewController.m */; };
  347. 2F551222217F5CC300F56C26 /* WFCUModifyMyProfileViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551082217F5CC100F56C26 /* WFCUModifyMyProfileViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  348. 2F551223217F5CC300F56C26 /* WFCUMessageNotificationViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551083217F5CC100F56C26 /* WFCUMessageNotificationViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  349. 2F551224217F5CC300F56C26 /* WFCUMyPortraitViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551084217F5CC100F56C26 /* WFCUMyPortraitViewController.m */; };
  350. 2F551225217F5CC300F56C26 /* WFCUFriendRequestTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551087217F5CC200F56C26 /* WFCUFriendRequestTableViewCell.m */; };
  351. 2F551226217F5CC300F56C26 /* WFCUFriendRequestTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F551088217F5CC200F56C26 /* WFCUFriendRequestTableViewCell.h */; };
  352. 2F551227217F5CC300F56C26 /* WFCUFriendRequestViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55108A217F5CC200F56C26 /* WFCUFriendRequestViewController.h */; };
  353. 2F551228217F5CC300F56C26 /* WFCUFriendRequestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55108B217F5CC200F56C26 /* WFCUFriendRequestViewController.m */; };
  354. 2F551229217F5CC300F56C26 /* WFCUMediaMessageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55108D217F5CC200F56C26 /* WFCUMediaMessageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; };
  355. 2F55122A217F5CC300F56C26 /* WFCUUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F55108E217F5CC200F56C26 /* WFCUUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; };
  356. 2F55122B217F5CC300F56C26 /* WFCUMediaMessageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F55108F217F5CC200F56C26 /* WFCUMediaMessageDownloader.m */; };
  357. 2F55122C217F5CC300F56C26 /* WFCUUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F551090217F5CC200F56C26 /* WFCUUtilities.m */; };
  358. 2F56F6A82529E43900B829C4 /* WFCUCompositeCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F56F6A62529E43900B829C4 /* WFCUCompositeCell.h */; };
  359. 2F56F6A92529E43900B829C4 /* WFCUCompositeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F56F6A72529E43900B829C4 /* WFCUCompositeCell.m */; };
  360. 2F56F6B42529EE0F00B829C4 /* WFCUCompositeMessageViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F56F6B22529EE0F00B829C4 /* WFCUCompositeMessageViewController.h */; };
  361. 2F56F6B52529EE0F00B829C4 /* WFCUCompositeMessageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F56F6B32529EE0F00B829C4 /* WFCUCompositeMessageViewController.m */; };
  362. 2F5EB43C22C2E21A00BC8C90 /* GroupManageTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5EB43A22C2E21A00BC8C90 /* GroupManageTableViewController.h */; };
  363. 2F5EB43D22C2E21A00BC8C90 /* GroupManageTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F5EB43B22C2E21A00BC8C90 /* GroupManageTableViewController.m */; };
  364. 2F5EB44022C2E6BB00BC8C90 /* ManagerTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5EB43E22C2E6BB00BC8C90 /* ManagerTableViewController.h */; };
  365. 2F5EB44122C2E6BB00BC8C90 /* ManagerTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F5EB43F22C2E6BB00BC8C90 /* ManagerTableViewController.m */; };
  366. 2F5EB44422C2EE1900BC8C90 /* GroupMuteTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5EB44222C2EE1800BC8C90 /* GroupMuteTableViewController.h */; };
  367. 2F5EB44522C2EE1900BC8C90 /* GroupMuteTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F5EB44322C2EE1800BC8C90 /* GroupMuteTableViewController.m */; };
  368. 2F5EB44822C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5EB44622C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.h */; settings = {ATTRIBUTES = (Public, ); }; };
  369. 2F5EB44922C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F5EB44722C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.m */; };
  370. 2F5EB44C22C2F36A00BC8C90 /* GroupMemberControlTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F5EB44A22C2F36A00BC8C90 /* GroupMemberControlTableViewController.h */; };
  371. 2F5EB44D22C2F36A00BC8C90 /* GroupMemberControlTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F5EB44B22C2F36A00BC8C90 /* GroupMemberControlTableViewController.m */; };
  372. 2F7381F62308F72F00213421 /* WFCUGroupMemberCollectionViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F7381F42308F72F00213421 /* WFCUGroupMemberCollectionViewController.h */; };
  373. 2F7381F72308F72F00213421 /* WFCUGroupMemberCollectionViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F7381F52308F72F00213421 /* WFCUGroupMemberCollectionViewController.m */; };
  374. 2F9CE41C21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F9CE41A21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.m */; };
  375. 2F9CE41D21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F9CE41B21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.h */; };
  376. 2F9CE42021BFE63C005E1BE1 /* WFCUChannelProfileViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F9CE41E21BFE63C005E1BE1 /* WFCUChannelProfileViewController.h */; };
  377. 2F9CE42121BFE63C005E1BE1 /* WFCUChannelProfileViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F9CE41F21BFE63C005E1BE1 /* WFCUChannelProfileViewController.m */; };
  378. 2F9E85F9222B84690076B82B /* QrCodeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F9E85F8222B83CE0076B82B /* QrCodeHelper.h */; settings = {ATTRIBUTES = (Public, ); }; };
  379. 2F9E85FF222B9D600076B82B /* QrCodeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 2F9E85FE222B9D600076B82B /* QrCodeHelper.m */; };
  380. 2FA2165122F1667F00670211 /* WFCUBlackListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FA2164F22F1667F00670211 /* WFCUBlackListViewController.h */; settings = {ATTRIBUTES = (Public, ); }; };
  381. 2FA2165222F1667F00670211 /* WFCUBlackListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FA2165022F1667F00670211 /* WFCUBlackListViewController.m */; };
  382. 2FA2E909251633EF0038635A /* SDWebImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FA2E908251633EF0038635A /* SDWebImage.framework */; };
  383. 2FD2EE80218F15B500CBA8B0 /* WFCUVerifyRequestViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD2EE7E218F15B500CBA8B0 /* WFCUVerifyRequestViewController.h */; };
  384. 2FD2EE81218F15B500CBA8B0 /* WFCUVerifyRequestViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FD2EE7F218F15B500CBA8B0 /* WFCUVerifyRequestViewController.m */; };
  385. 2FD550EC2442AA0B00B3EE09 /* WFCURecallCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD550EA2442AA0B00B3EE09 /* WFCURecallCell.h */; };
  386. 2FD550ED2442AA0B00B3EE09 /* WFCURecallCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FD550EB2442AA0B00B3EE09 /* WFCURecallCell.m */; };
  387. 2FD550F62442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FD550F42442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.h */; };
  388. 2FD550F72442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FD550F52442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.m */; };
  389. 2FE689A821AE9C0200DE54CC /* WFCUConversationSearchTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FE689A621AE9C0100DE54CC /* WFCUConversationSearchTableViewController.m */; };
  390. 2FE689A921AE9C0200DE54CC /* WFCUConversationSearchTableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FE689A721AE9C0200DE54CC /* WFCUConversationSearchTableViewController.h */; };
  391. 2FF70EAC2402101000946D2D /* WFCUWaitingAnimationView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF70EAA2402101000946D2D /* WFCUWaitingAnimationView.h */; };
  392. 2FF70EAD2402101000946D2D /* WFCUWaitingAnimationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FF70EAB2402101000946D2D /* WFCUWaitingAnimationView.m */; };
  393. 901E270721F152F600A163CB /* WebRTC.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 901E270421F152F600A163CB /* WebRTC.framework */; };
  394. 901E270821F152F600A163CB /* WFAVEngineKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 901E270521F152F600A163CB /* WFAVEngineKit.framework */; };
  395. 9029D0FE21C5D7930002EBAA /* WFCUCreateChannelViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 9029D0FC21C5D7930002EBAA /* WFCUCreateChannelViewController.h */; };
  396. 9029D0FF21C5D7930002EBAA /* WFCUCreateChannelViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9029D0FD21C5D7930002EBAA /* WFCUCreateChannelViewController.m */; };
  397. 90414AFC21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 90414AFA21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.h */; };
  398. 90414AFD21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 90414AFB21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.m */; };
  399. /* End PBXBuildFile section */
  400. /* Begin PBXFileReference section */
  401. 14349F61243392E300FE38B3 /* WFChatUIKit.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = WFChatUIKit.xcassets; sourceTree = "<group>"; };
  402. 14349FA424362A6600FE38B3 /* WFCUSeletedUserViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUSeletedUserViewController.h; sourceTree = "<group>"; };
  403. 14349FA524362A6600FE38B3 /* WFCUSeletedUserViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUSeletedUserViewController.m; sourceTree = "<group>"; };
  404. 1450EA7E243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUSelectedUserCollectionViewCell.h; sourceTree = "<group>"; };
  405. 1450EA7F243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUSelectedUserCollectionViewCell.m; sourceTree = "<group>"; };
  406. 1450EA832438922800BF51FC /* WFCUUserSectionKeySupport.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUUserSectionKeySupport.h; sourceTree = "<group>"; };
  407. 1450EA842438922800BF51FC /* WFCUUserSectionKeySupport.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUUserSectionKeySupport.m; sourceTree = "<group>"; };
  408. 1450EA8724389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUSeletedUserSearchResultViewController.h; sourceTree = "<group>"; };
  409. 1450EA8824389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUSeletedUserSearchResultViewController.m; sourceTree = "<group>"; };
  410. 1450EA8B243960C600BF51FC /* WFCUSelectedUserTableViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUSelectedUserTableViewCell.h; sourceTree = "<group>"; };
  411. 1450EA8C243960C600BF51FC /* WFCUSelectedUserTableViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUSelectedUserTableViewCell.m; sourceTree = "<group>"; };
  412. 1450EA8F2439679500BF51FC /* WFCUSelectedUserInfo.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUSelectedUserInfo.h; sourceTree = "<group>"; };
  413. 1450EA902439679500BF51FC /* WFCUSelectedUserInfo.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUSelectedUserInfo.m; sourceTree = "<group>"; };
  414. 149B310B241E65D500B935D3 /* UIFont+YH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+YH.h"; sourceTree = "<group>"; };
  415. 149B310C241E65D500B935D3 /* UIColor+YH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+YH.m"; sourceTree = "<group>"; };
  416. 149B310D241E65D500B935D3 /* UIColor+YH.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+YH.h"; sourceTree = "<group>"; };
  417. 149B310E241E65D500B935D3 /* UIFont+YH.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+YH.m"; sourceTree = "<group>"; };
  418. 2B07FBDF247562D90035C4DF /* WFCUReceiptViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUReceiptViewController.h; sourceTree = "<group>"; };
  419. 2B07FBE0247562D90035C4DF /* WFCUReceiptViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUReceiptViewController.m; sourceTree = "<group>"; };
  420. 2B15F1B62509E285007022BC /* WFCUGroupInfoViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUGroupInfoViewController.m; sourceTree = "<group>"; };
  421. 2B15F1B72509E285007022BC /* WFCUGroupInfoViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUGroupInfoViewController.h; sourceTree = "<group>"; };
  422. 2B46D4D624ACC64300721792 /* WFCUMediaMessageGridViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUMediaMessageGridViewController.h; sourceTree = "<group>"; };
  423. 2B46D4D724ACC64300721792 /* WFCUMediaMessageGridViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUMediaMessageGridViewController.m; sourceTree = "<group>"; };
  424. 2B46D4DA24ACC9B900721792 /* MediaMessageGridViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MediaMessageGridViewCell.h; sourceTree = "<group>"; };
  425. 2B46D4DB24ACC9B900721792 /* MediaMessageGridViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MediaMessageGridViewCell.m; sourceTree = "<group>"; };
  426. 2B63367C24716864008D6B38 /* ZCCCircleProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ZCCCircleProgressView.m; sourceTree = "<group>"; };
  427. 2B63367D24716864008D6B38 /* ZCCCircleProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZCCCircleProgressView.h; sourceTree = "<group>"; };
  428. 2B97D4872505C7BE00162A2B /* WFCUCardCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUCardCell.h; sourceTree = "<group>"; };
  429. 2B97D4882505C7BE00162A2B /* WFCUCardCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUCardCell.m; sourceTree = "<group>"; };
  430. 2BB4191424ED212200ABFEF1 /* WFCUUserMessageListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUUserMessageListViewController.h; sourceTree = "<group>"; };
  431. 2BB4191524ED212200ABFEF1 /* WFCUUserMessageListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUUserMessageListViewController.m; sourceTree = "<group>"; };
  432. 2BCEC52D232E10DF00D55E0D /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/wfc.strings; sourceTree = "<group>"; };
  433. 2BCEC52F232E10E900D55E0D /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/wfc.strings"; sourceTree = "<group>"; };
  434. 2BD671A22336E821007A9FEC /* WFCUConfigManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUConfigManager.h; sourceTree = "<group>"; };
  435. 2BD671A32336E821007A9FEC /* WFCUConfigManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUConfigManager.m; sourceTree = "<group>"; };
  436. 2BD8D72324D69B5300281B81 /* WFCUGroupFilesViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUGroupFilesViewController.h; sourceTree = "<group>"; };
  437. 2BD8D72424D69B5300281B81 /* WFCUGroupFilesViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUGroupFilesViewController.m; sourceTree = "<group>"; };
  438. 2BDF576824AD70C8003C1F08 /* DNImagePickerHelper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNImagePickerHelper.h; sourceTree = "<group>"; };
  439. 2BDF576A24AD70C8003C1F08 /* DNAlbum.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNAlbum.m; sourceTree = "<group>"; };
  440. 2BDF576B24AD70C8003C1F08 /* DNAsset.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNAsset.m; sourceTree = "<group>"; };
  441. 2BDF576C24AD70C8003C1F08 /* DNAsset.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNAsset.h; sourceTree = "<group>"; };
  442. 2BDF576D24AD70C8003C1F08 /* DNAlbum.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNAlbum.h; sourceTree = "<group>"; };
  443. 2BDF577024AD70C8003C1F08 /* UIColor+Hex.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Hex.m"; sourceTree = "<group>"; };
  444. 2BDF577124AD70C8003C1F08 /* UIView+DNImagePicker.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+DNImagePicker.m"; sourceTree = "<group>"; };
  445. 2BDF577324AD70C8003C1F08 /* UIColor+Hex.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Hex.h"; sourceTree = "<group>"; };
  446. 2BDF577424AD70C8003C1F08 /* UIView+DNImagePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+DNImagePicker.h"; sourceTree = "<group>"; };
  447. 2BDF577624AD70C8003C1F08 /* DNImagePickerHelper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNImagePickerHelper.m; sourceTree = "<group>"; };
  448. 2BDF577824AD70C8003C1F08 /* DNAlbumTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNAlbumTableViewController.h; sourceTree = "<group>"; };
  449. 2BDF577924AD70C8003C1F08 /* DNImageFetchOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNImageFetchOperation.h; sourceTree = "<group>"; };
  450. 2BDF577A24AD70C8003C1F08 /* DNImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNImagePickerController.h; sourceTree = "<group>"; };
  451. 2BDF577B24AD70C8003C1F08 /* DNPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNPhotoBrowser.h; sourceTree = "<group>"; };
  452. 2BDF577C24AD70C8003C1F08 /* DNImageFlowViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNImageFlowViewController.h; sourceTree = "<group>"; };
  453. 2BDF577D24AD70C8003C1F08 /* DNAlbumTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNAlbumTableViewController.m; sourceTree = "<group>"; };
  454. 2BDF577E24AD70C8003C1F08 /* DNImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNImagePickerController.m; sourceTree = "<group>"; };
  455. 2BDF577F24AD70C8003C1F08 /* DNPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNPhotoBrowser.m; sourceTree = "<group>"; };
  456. 2BDF578024AD70C8003C1F08 /* DNImageFlowViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNImageFlowViewController.m; sourceTree = "<group>"; };
  457. 2BDF578124AD70C8003C1F08 /* DNImageFetchOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNImageFetchOperation.m; sourceTree = "<group>"; };
  458. 2BDF578324AD70C8003C1F08 /* DNUnAuthorizedTipsView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNUnAuthorizedTipsView.h; sourceTree = "<group>"; };
  459. 2BDF578424AD70C8003C1F08 /* DNAssetsViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNAssetsViewCell.m; sourceTree = "<group>"; };
  460. 2BDF578524AD70C8003C1F08 /* DNAlbumCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNAlbumCell.h; sourceTree = "<group>"; };
  461. 2BDF578624AD70C8003C1F08 /* DNFullImageButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNFullImageButton.m; sourceTree = "<group>"; };
  462. 2BDF578724AD70C8003C1F08 /* DNBadgeLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNBadgeLabel.m; sourceTree = "<group>"; };
  463. 2BDF578824AD70C8003C1F08 /* DNTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNTapDetectingImageView.h; sourceTree = "<group>"; };
  464. 2BDF578924AD70C8003C1F08 /* DNBrowserCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNBrowserCell.h; sourceTree = "<group>"; };
  465. 2BDF578A24AD70C8003C1F08 /* DNSendButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNSendButton.h; sourceTree = "<group>"; };
  466. 2BDF578B24AD70C8003C1F08 /* DNUnAuthorizedTipsView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNUnAuthorizedTipsView.m; sourceTree = "<group>"; };
  467. 2BDF578C24AD70C8003C1F08 /* DNAlbumCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNAlbumCell.m; sourceTree = "<group>"; };
  468. 2BDF578D24AD70C8003C1F08 /* DNAssetsViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNAssetsViewCell.h; sourceTree = "<group>"; };
  469. 2BDF578E24AD70C8003C1F08 /* DNTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNTapDetectingImageView.m; sourceTree = "<group>"; };
  470. 2BDF578F24AD70C8003C1F08 /* DNBadgeLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNBadgeLabel.h; sourceTree = "<group>"; };
  471. 2BDF579024AD70C8003C1F08 /* DNFullImageButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNFullImageButton.h; sourceTree = "<group>"; };
  472. 2BDF579124AD70C8003C1F08 /* DNSendButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNSendButton.m; sourceTree = "<group>"; };
  473. 2BDF579224AD70C8003C1F08 /* DNBrowserCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DNBrowserCell.m; sourceTree = "<group>"; };
  474. 2BDF57BA24AD7257003C1F08 /* DNImagePicker.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DNImagePicker.h; sourceTree = "<group>"; };
  475. 2BEF789223F6A84C000DE285 /* WFCUParticipantCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUParticipantCollectionViewCell.m; sourceTree = "<group>"; };
  476. 2BEF789323F6A84C000DE285 /* WFCUMultiVideoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMultiVideoViewController.h; sourceTree = "<group>"; };
  477. 2BEF789423F6A84D000DE285 /* WFCUPortraitCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUPortraitCollectionViewCell.h; sourceTree = "<group>"; };
  478. 2BEF789523F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUParticipantCollectionViewLayout.h; sourceTree = "<group>"; };
  479. 2BEF789623F6A84D000DE285 /* WFCUMultiVideoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMultiVideoViewController.m; sourceTree = "<group>"; };
  480. 2BEF789723F6A84D000DE285 /* WFCUFloatingWindow.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUFloatingWindow.h; sourceTree = "<group>"; };
  481. 2BEF789823F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUParticipantCollectionViewLayout.m; sourceTree = "<group>"; };
  482. 2BEF789923F6A84D000DE285 /* WFCUPortraitCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUPortraitCollectionViewCell.m; sourceTree = "<group>"; };
  483. 2BEF789A23F6A84D000DE285 /* WFCUVideoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUVideoViewController.h; sourceTree = "<group>"; };
  484. 2BEF789B23F6A84D000DE285 /* WFCUVideoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUVideoViewController.m; sourceTree = "<group>"; };
  485. 2BEF789C23F6A84D000DE285 /* WFCUFloatingWindow.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUFloatingWindow.m; sourceTree = "<group>"; };
  486. 2BEF789D23F6A84D000DE285 /* WFCUParticipantCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUParticipantCollectionViewCell.h; sourceTree = "<group>"; };
  487. 2F1439F3217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUSearchGroupTableViewCell.h; sourceTree = "<group>"; };
  488. 2F1439F4217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUSearchGroupTableViewCell.m; sourceTree = "<group>"; };
  489. 2F143A68217F7D4100B3E38A /* Stickers.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = Stickers.bundle; sourceTree = "<group>"; };
  490. 2F143A69217F7D4100B3E38A /* Emoj.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Emoj.plist; sourceTree = "<group>"; };
  491. 2F1EB5B02499A21A00FD3575 /* WFCUConferenceViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConferenceViewController.m; sourceTree = "<group>"; };
  492. 2F1EB5B12499A21A00FD3575 /* WFCUConferenceViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConferenceViewController.h; sourceTree = "<group>"; };
  493. 2F1EB5B52499A30500FD3575 /* WFCUCreateConferenceViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUCreateConferenceViewController.h; sourceTree = "<group>"; };
  494. 2F1EB5B62499A30500FD3575 /* WFCUCreateConferenceViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUCreateConferenceViewController.m; sourceTree = "<group>"; };
  495. 2F1EB5B92499AA5E00FD3575 /* WFCUConferenceInviteViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConferenceInviteViewController.h; sourceTree = "<group>"; };
  496. 2F1EB5BA2499AA5E00FD3575 /* WFCUConferenceInviteViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConferenceInviteViewController.m; sourceTree = "<group>"; };
  497. 2F1EB5C12499AFF900FD3575 /* WFCUConferenceInviteCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConferenceInviteCell.h; sourceTree = "<group>"; };
  498. 2F1EB5C22499AFF900FD3575 /* WFCUConferenceInviteCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConferenceInviteCell.m; sourceTree = "<group>"; };
  499. 2F337EE5219EE1840086B0F3 /* WFCUTextCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUTextCell.h; sourceTree = "<group>"; };
  500. 2F341A4D235EF12B00F0D1B6 /* WFCUGroupAnnouncement.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUGroupAnnouncement.h; sourceTree = "<group>"; };
  501. 2F341A4E235EF12B00F0D1B6 /* WFCUGroupAnnouncement.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUGroupAnnouncement.m; sourceTree = "<group>"; };
  502. 2F341A51235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUGroupAnnouncementViewController.h; sourceTree = "<group>"; };
  503. 2F341A52235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUGroupAnnouncementViewController.m; sourceTree = "<group>"; };
  504. 2F36433121C136C400904CAB /* WFCUFavChannelTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUFavChannelTableViewController.h; sourceTree = "<group>"; };
  505. 2F36433221C136C400904CAB /* WFCUFavChannelTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUFavChannelTableViewController.m; sourceTree = "<group>"; };
  506. 2F36433521C13C5300904CAB /* WFCUChannelTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUChannelTableViewCell.h; sourceTree = "<group>"; };
  507. 2F36433621C13C5300904CAB /* WFCUChannelTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUChannelTableViewCell.m; sourceTree = "<group>"; };
  508. 2F3A6C12219EE941009A8B4B /* WFCUFaceBoard.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WFCUFaceBoard.m; path = WFChatUIKit/Vendor/ChatInputBar/FaceBoard/WFCUFaceBoard.m; sourceTree = SOURCE_ROOT; };
  509. 2F3A6C13219EE941009A8B4B /* WFCUFaceBoard.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WFCUFaceBoard.h; path = WFChatUIKit/Vendor/ChatInputBar/FaceBoard/WFCUFaceBoard.h; sourceTree = SOURCE_ROOT; };
  510. 2F3A6C14219EE941009A8B4B /* WFCUFaceButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WFCUFaceButton.m; path = WFChatUIKit/Vendor/ChatInputBar/FaceBoard/WFCUFaceButton.m; sourceTree = SOURCE_ROOT; };
  511. 2F3A6C15219EE941009A8B4B /* WFCUFaceButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WFCUFaceButton.h; path = WFChatUIKit/Vendor/ChatInputBar/FaceBoard/WFCUFaceButton.h; sourceTree = SOURCE_ROOT; };
  512. 2F3A6C16219EE941009A8B4B /* WFCUStickerItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WFCUStickerItem.h; path = WFChatUIKit/Vendor/ChatInputBar/FaceBoard/WFCUStickerItem.h; sourceTree = SOURCE_ROOT; };
  513. 2F3A6C17219EE941009A8B4B /* WFCUStickerItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WFCUStickerItem.m; path = WFChatUIKit/Vendor/ChatInputBar/FaceBoard/WFCUStickerItem.m; sourceTree = SOURCE_ROOT; };
  514. 2F518FEE235ED5B300FA3D58 /* WFCUAppServiceProvider.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUAppServiceProvider.h; sourceTree = "<group>"; };
  515. 2F535BFD25296E6600C9AF09 /* WFCUQuoteViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUQuoteViewController.h; sourceTree = "<group>"; };
  516. 2F535BFE25296E6600C9AF09 /* WFCUQuoteViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUQuoteViewController.m; sourceTree = "<group>"; };
  517. 2F550BDF217F4D7B00F56C26 /* WFChatUIKit.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = WFChatUIKit.framework; sourceTree = BUILT_PRODUCTS_DIR; };
  518. 2F550BE2217F4D7B00F56C26 /* WFChatUIKit.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFChatUIKit.h; sourceTree = "<group>"; };
  519. 2F550BE3217F4D7B00F56C26 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
  520. 2F550BEC217F4DCD00F56C26 /* WFChatClient.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WFChatClient.framework; path = Frameworks/WFChatClient.framework; sourceTree = SOURCE_ROOT; };
  521. 2F550EB4217F5CC000F56C26 /* WFCUMediaMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMediaMessageCell.m; sourceTree = "<group>"; };
  522. 2F550EB5217F5CC000F56C26 /* WFCULocationCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCULocationCell.h; sourceTree = "<group>"; };
  523. 2F550EB6217F5CC000F56C26 /* WFCUFileCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUFileCell.m; sourceTree = "<group>"; };
  524. 2F550EB7217F5CC000F56C26 /* WFCUCallSummaryCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUCallSummaryCell.m; sourceTree = "<group>"; };
  525. 2F550EB8217F5CC000F56C26 /* WFCUInformationCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUInformationCell.m; sourceTree = "<group>"; };
  526. 2F550EB9217F5CC000F56C26 /* WFCUImageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUImageCell.h; sourceTree = "<group>"; };
  527. 2F550EBA217F5CC000F56C26 /* WFCUVoiceCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUVoiceCell.m; sourceTree = "<group>"; };
  528. 2F550EBB217F5CC000F56C26 /* WFCUMessageCellBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMessageCellBase.h; sourceTree = "<group>"; };
  529. 2F550EBC217F5CC000F56C26 /* WFCUTextCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUTextCell.m; sourceTree = "<group>"; };
  530. 2F550EBD217F5CC000F56C26 /* WFCUVideoCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUVideoCell.m; sourceTree = "<group>"; };
  531. 2F550EBE217F5CC000F56C26 /* WFCUMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMessageCell.h; sourceTree = "<group>"; };
  532. 2F550EBF217F5CC000F56C26 /* WFCUStickerCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUStickerCell.h; sourceTree = "<group>"; };
  533. 2F550EC0217F5CC000F56C26 /* WFCUMediaMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMediaMessageCell.h; sourceTree = "<group>"; };
  534. 2F550EC1217F5CC000F56C26 /* WFCUFileCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUFileCell.h; sourceTree = "<group>"; };
  535. 2F550EC2217F5CC000F56C26 /* WFCULocationCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCULocationCell.m; sourceTree = "<group>"; };
  536. 2F550EC4217F5CC000F56C26 /* WFCUMessageCellBase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMessageCellBase.m; sourceTree = "<group>"; };
  537. 2F550EC5217F5CC000F56C26 /* WFCUVoiceCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUVoiceCell.h; sourceTree = "<group>"; };
  538. 2F550EC6217F5CC000F56C26 /* WFCUImageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUImageCell.m; sourceTree = "<group>"; };
  539. 2F550EC7217F5CC000F56C26 /* WFCUInformationCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUInformationCell.h; sourceTree = "<group>"; };
  540. 2F550EC8217F5CC000F56C26 /* WFCUCallSummaryCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUCallSummaryCell.h; sourceTree = "<group>"; };
  541. 2F550EC9217F5CC000F56C26 /* WFCUStickerCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUStickerCell.m; sourceTree = "<group>"; };
  542. 2F550ECA217F5CC000F56C26 /* WFCUMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMessageCell.m; sourceTree = "<group>"; };
  543. 2F550ECB217F5CC000F56C26 /* WFCUVideoCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUVideoCell.h; sourceTree = "<group>"; };
  544. 2F550ECD217F5CC000F56C26 /* WFCUMessageModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMessageModel.m; sourceTree = "<group>"; };
  545. 2F550ECE217F5CC000F56C26 /* WFCUMessageModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMessageModel.h; sourceTree = "<group>"; };
  546. 2F550ED0217F5CC000F56C26 /* WFCUMessageListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMessageListViewController.m; sourceTree = "<group>"; };
  547. 2F550ED1217F5CC000F56C26 /* WFCUMessageListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMessageListViewController.h; sourceTree = "<group>"; };
  548. 2F550ED3217F5CC000F56C26 /* WFCUProfileTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUProfileTableViewController.h; sourceTree = "<group>"; };
  549. 2F550ED4217F5CC000F56C26 /* WFCUGroupMemberTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUGroupMemberTableViewCell.m; sourceTree = "<group>"; };
  550. 2F550ED5217F5CC000F56C26 /* WFCUInviteGroupMemberViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUInviteGroupMemberViewController.h; sourceTree = "<group>"; };
  551. 2F550ED6217F5CC000F56C26 /* WFCUGroupMemberTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUGroupMemberTableViewController.h; sourceTree = "<group>"; };
  552. 2F550ED7217F5CC000F56C26 /* WFCUGroupTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUGroupTableViewCell.m; sourceTree = "<group>"; };
  553. 2F550ED8217F5CC000F56C26 /* WFCUImagePreviewViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUImagePreviewViewController.h; sourceTree = "<group>"; };
  554. 2F550ED9217F5CC000F56C26 /* WFCUSearchViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUSearchViewController.m; sourceTree = "<group>"; };
  555. 2F550EDA217F5CC000F56C26 /* WFCUGeneralModifyViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUGeneralModifyViewController.m; sourceTree = "<group>"; };
  556. 2F550EDB217F5CC000F56C26 /* WFCUBrowserViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUBrowserViewController.m; sourceTree = "<group>"; };
  557. 2F550EDC217F5CC000F56C26 /* WFCUProfileTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUProfileTableViewController.m; sourceTree = "<group>"; };
  558. 2F550EDD217F5CC000F56C26 /* WFCUGroupMemberTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUGroupMemberTableViewCell.h; sourceTree = "<group>"; };
  559. 2F550EDE217F5CC000F56C26 /* WFCUImagePreviewViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUImagePreviewViewController.m; sourceTree = "<group>"; };
  560. 2F550EDF217F5CC000F56C26 /* WFCUGroupTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUGroupTableViewCell.h; sourceTree = "<group>"; };
  561. 2F550EE0217F5CC000F56C26 /* WFCUGroupMemberTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUGroupMemberTableViewController.m; sourceTree = "<group>"; };
  562. 2F550EE1217F5CC000F56C26 /* WFCUInviteGroupMemberViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUInviteGroupMemberViewController.m; sourceTree = "<group>"; };
  563. 2F550EE2217F5CC000F56C26 /* WFCUBrowserViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUBrowserViewController.h; sourceTree = "<group>"; };
  564. 2F550EE3217F5CC000F56C26 /* WFCUGeneralModifyViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUGeneralModifyViewController.h; sourceTree = "<group>"; };
  565. 2F550EE4217F5CC000F56C26 /* WFCUSearchViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUSearchViewController.h; sourceTree = "<group>"; };
  566. 2F550EE7217F5CC000F56C26 /* WFCUCreateGroupViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUCreateGroupViewController.m; sourceTree = "<group>"; };
  567. 2F550EE8217F5CC000F56C26 /* WFCUCreateGroupViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUCreateGroupViewController.h; sourceTree = "<group>"; };
  568. 2F550EF0217F5CC000F56C26 /* WFCUFavGroupTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUFavGroupTableViewController.h; sourceTree = "<group>"; };
  569. 2F550EF1217F5CC000F56C26 /* WFCUFavGroupTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUFavGroupTableViewController.m; sourceTree = "<group>"; };
  570. 2F550EF4217F5CC000F56C26 /* WFCULocationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCULocationViewController.m; sourceTree = "<group>"; };
  571. 2F550EF5217F5CC000F56C26 /* WFCUPluginItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUPluginItemView.h; sourceTree = "<group>"; };
  572. 2F550EF6217F5CC000F56C26 /* WFCUSelectFileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUSelectFileViewController.m; sourceTree = "<group>"; };
  573. 2F550EF7217F5CC000F56C26 /* WFCUPluginBoardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUPluginBoardView.h; sourceTree = "<group>"; };
  574. 2F550EF8217F5CC000F56C26 /* WFCUChatInputBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUChatInputBar.h; sourceTree = "<group>"; };
  575. 2F550EF9217F5CC000F56C26 /* WFCUVoiceRecordView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUVoiceRecordView.h; sourceTree = "<group>"; };
  576. 2F550EFA217F5CC000F56C26 /* WFCUSelectedFileCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUSelectedFileCollectionViewCell.h; sourceTree = "<group>"; };
  577. 2F550F14217F5CC100F56C26 /* WFCUEmotionTextAttachment.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUEmotionTextAttachment.m; sourceTree = "<group>"; };
  578. 2F550F15217F5CC100F56C26 /* WFCULocationPoint.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCULocationPoint.h; sourceTree = "<group>"; };
  579. 2F550F16217F5CC100F56C26 /* WFCUPluginItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUPluginItemView.m; sourceTree = "<group>"; };
  580. 2F550F17217F5CC100F56C26 /* WFCULocationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCULocationViewController.h; sourceTree = "<group>"; };
  581. 2F550F18217F5CC100F56C26 /* WFCUChatInputBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUChatInputBar.m; sourceTree = "<group>"; };
  582. 2F550F19217F5CC100F56C26 /* WFCUPluginBoardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUPluginBoardView.m; sourceTree = "<group>"; };
  583. 2F550F1A217F5CC100F56C26 /* WFCUSelectFileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUSelectFileViewController.h; sourceTree = "<group>"; };
  584. 2F550F1B217F5CC100F56C26 /* WFCUEmotionTextAttachment.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUEmotionTextAttachment.h; sourceTree = "<group>"; };
  585. 2F550F1C217F5CC100F56C26 /* WFCUSelectedFileCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUSelectedFileCollectionViewCell.m; sourceTree = "<group>"; };
  586. 2F550F1D217F5CC100F56C26 /* WFCUVoiceRecordView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUVoiceRecordView.m; sourceTree = "<group>"; };
  587. 2F550F1E217F5CC100F56C26 /* WFCULocationPoint.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCULocationPoint.m; sourceTree = "<group>"; };
  588. 2F550F20217F5CC100F56C26 /* CCHMapTreeUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHMapTreeUtils.m; sourceTree = "<group>"; };
  589. 2F550F21217F5CC100F56C26 /* CCHMapClusterControllerDebugPolygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapClusterControllerDebugPolygon.h; sourceTree = "<group>"; };
  590. 2F550F22217F5CC100F56C26 /* CCHMapTree.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHMapTree.m; sourceTree = "<group>"; };
  591. 2F550F23217F5CC100F56C26 /* CCHMapClusterController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHMapClusterController.m; sourceTree = "<group>"; };
  592. 2F550F24217F5CC100F56C26 /* CCHMapClusterControllerUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHMapClusterControllerUtils.m; sourceTree = "<group>"; };
  593. 2F550F25217F5CC100F56C26 /* CCHMapClusterOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHMapClusterOperation.m; sourceTree = "<group>"; };
  594. 2F550F26217F5CC100F56C26 /* CCHCenterOfMassMapClusterer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHCenterOfMassMapClusterer.h; sourceTree = "<group>"; };
  595. 2F550F27217F5CC100F56C26 /* CCHMapViewDelegateProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapViewDelegateProxy.h; sourceTree = "<group>"; };
  596. 2F550F28217F5CC100F56C26 /* CCHMapAnimator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapAnimator.h; sourceTree = "<group>"; };
  597. 2F550F29217F5CC100F56C26 /* CCHMapClusterAnnotation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHMapClusterAnnotation.m; sourceTree = "<group>"; };
  598. 2F550F2A217F5CC100F56C26 /* CCHFadeInOutMapAnimator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHFadeInOutMapAnimator.h; sourceTree = "<group>"; };
  599. 2F550F2B217F5CC100F56C26 /* CCHNearCenterMapClusterer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHNearCenterMapClusterer.h; sourceTree = "<group>"; };
  600. 2F550F2C217F5CC100F56C26 /* CCHMapClusterControllerDebugPolygon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHMapClusterControllerDebugPolygon.m; sourceTree = "<group>"; };
  601. 2F550F2D217F5CC100F56C26 /* CCHMapClusterControllerDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapClusterControllerDelegate.h; sourceTree = "<group>"; };
  602. 2F550F2E217F5CC100F56C26 /* CCHMapTreeUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapTreeUtils.h; sourceTree = "<group>"; };
  603. 2F550F2F217F5CC100F56C26 /* CCHMapClusterController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapClusterController.h; sourceTree = "<group>"; };
  604. 2F550F30217F5CC100F56C26 /* CCHMapClusterer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapClusterer.h; sourceTree = "<group>"; };
  605. 2F550F31217F5CC100F56C26 /* CCHMapTree.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapTree.h; sourceTree = "<group>"; };
  606. 2F550F32217F5CC100F56C26 /* CCHMapClusterControllerUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapClusterControllerUtils.h; sourceTree = "<group>"; };
  607. 2F550F33217F5CC100F56C26 /* CCHMapClusterOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapClusterOperation.h; sourceTree = "<group>"; };
  608. 2F550F34217F5CC100F56C26 /* CCHNearCenterMapClusterer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHNearCenterMapClusterer.m; sourceTree = "<group>"; };
  609. 2F550F35217F5CC100F56C26 /* CCHFadeInOutMapAnimator.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHFadeInOutMapAnimator.m; sourceTree = "<group>"; };
  610. 2F550F36217F5CC100F56C26 /* CCHMapClusterAnnotation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CCHMapClusterAnnotation.h; sourceTree = "<group>"; };
  611. 2F550F37217F5CC100F56C26 /* CCHMapViewDelegateProxy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHMapViewDelegateProxy.m; sourceTree = "<group>"; };
  612. 2F550F38217F5CC100F56C26 /* CCHCenterOfMassMapClusterer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CCHCenterOfMassMapClusterer.m; sourceTree = "<group>"; };
  613. 2F550F3D217F5CC100F56C26 /* pinyin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pinyin.h; sourceTree = "<group>"; };
  614. 2F550F3E217F5CC100F56C26 /* pinyin.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pinyin.c; sourceTree = "<group>"; };
  615. 2F550F40217F5CC100F56C26 /* VideoPlayerSampleViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPlayerSampleViewController.h; sourceTree = "<group>"; };
  616. 2F550F41217F5CC100F56C26 /* FullScreenView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FullScreenView.h; sourceTree = "<group>"; };
  617. 2F550F42217F5CC100F56C26 /* AirplayActiveView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AirplayActiveView.m; sourceTree = "<group>"; };
  618. 2F550F43217F5CC100F56C26 /* VideoPlayerSampleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPlayerSampleView.h; sourceTree = "<group>"; };
  619. 2F550F44217F5CC100F56C26 /* FullScreenViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FullScreenViewController.h; sourceTree = "<group>"; };
  620. 2F550F45217F5CC100F56C26 /* VideoPlayerKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPlayerKit.h; sourceTree = "<group>"; };
  621. 2F550F46217F5CC100F56C26 /* VideoPlayerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPlayerView.h; sourceTree = "<group>"; };
  622. 2F550F47217F5CC100F56C26 /* VideoPlayerSampleViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoPlayerSampleViewController.m; sourceTree = "<group>"; };
  623. 2F550F48217F5CC100F56C26 /* VideoPlayerSampleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoPlayerSampleView.m; sourceTree = "<group>"; };
  624. 2F550F49217F5CC100F56C26 /* AirplayActiveView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AirplayActiveView.h; sourceTree = "<group>"; };
  625. 2F550F4A217F5CC100F56C26 /* FullScreenView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FullScreenView.m; sourceTree = "<group>"; };
  626. 2F550F5A217F5CC100F56C26 /* FullScreenViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FullScreenViewController.m; sourceTree = "<group>"; };
  627. 2F550F5B217F5CC100F56C26 /* VideoPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = VideoPlayer.h; sourceTree = "<group>"; };
  628. 2F550F5C217F5CC100F56C26 /* VideoPlayerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoPlayerView.m; sourceTree = "<group>"; };
  629. 2F550F5D217F5CC100F56C26 /* VideoPlayerKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = VideoPlayerKit.m; sourceTree = "<group>"; };
  630. 2F550F8E217F5CC100F56C26 /* KZVideoListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KZVideoListViewController.h; sourceTree = "<group>"; };
  631. 2F550F8F217F5CC100F56C26 /* KZVideoConfig.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KZVideoConfig.m; sourceTree = "<group>"; };
  632. 2F550F90217F5CC100F56C26 /* KZVideoSupport.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KZVideoSupport.h; sourceTree = "<group>"; };
  633. 2F550F91217F5CC100F56C26 /* KZVideoPlayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KZVideoPlayer.m; sourceTree = "<group>"; };
  634. 2F550F92217F5CC100F56C26 /* KZVideoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KZVideoViewController.m; sourceTree = "<group>"; };
  635. 2F550F93217F5CC100F56C26 /* KZVideoConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KZVideoConfig.h; sourceTree = "<group>"; };
  636. 2F550F94217F5CC100F56C26 /* KZVideoListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KZVideoListViewController.m; sourceTree = "<group>"; };
  637. 2F550F95217F5CC100F56C26 /* KZVideoSupport.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KZVideoSupport.m; sourceTree = "<group>"; };
  638. 2F550F96217F5CC100F56C26 /* KZVideoPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KZVideoPlayer.h; sourceTree = "<group>"; };
  639. 2F550F97217F5CC100F56C26 /* KZVideoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KZVideoViewController.h; sourceTree = "<group>"; };
  640. 2F550F99217F5CC100F56C26 /* SDPhotoBrowserConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDPhotoBrowserConfig.h; sourceTree = "<group>"; };
  641. 2F550F9A217F5CC100F56C26 /* SDPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDPhotoBrowser.m; sourceTree = "<group>"; };
  642. 2F550F9B217F5CC100F56C26 /* SDWaitingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWaitingView.m; sourceTree = "<group>"; };
  643. 2F550F9C217F5CC100F56C26 /* SDBrowserImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDBrowserImageView.m; sourceTree = "<group>"; };
  644. 2F550F9D217F5CC100F56C26 /* SDWaitingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWaitingView.h; sourceTree = "<group>"; };
  645. 2F550F9E217F5CC100F56C26 /* SDPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDPhotoBrowser.h; sourceTree = "<group>"; };
  646. 2F550F9F217F5CC100F56C26 /* SDBrowserImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDBrowserImageView.h; sourceTree = "<group>"; };
  647. 2F550FA1217F5CC100F56C26 /* KxMenu.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KxMenu.m; sourceTree = "<group>"; };
  648. 2F550FA2217F5CC100F56C26 /* KxMenu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KxMenu.h; sourceTree = "<group>"; };
  649. 2F550FA4217F5CC100F56C26 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
  650. 2F550FA5217F5CC100F56C26 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
  651. 2F550FA6217F5CC100F56C26 /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
  652. 2F550FA7217F5CC100F56C26 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
  653. 2F550FA8217F5CC100F56C26 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
  654. 2F550FA9217F5CC100F56C26 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
  655. 2F550FAA217F5CC100F56C26 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
  656. 2F550FAB217F5CC100F56C26 /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
  657. 2F550FAC217F5CC100F56C26 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
  658. 2F550FAD217F5CC100F56C26 /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
  659. 2F550FAE217F5CC100F56C26 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
  660. 2F550FAF217F5CC100F56C26 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
  661. 2F550FB0217F5CC100F56C26 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
  662. 2F550FD6217F5CC100F56C26 /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
  663. 2F550FD7217F5CC100F56C26 /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
  664. 2F550FD9217F5CC100F56C26 /* UIView+SDExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+SDExtension.h"; sourceTree = "<group>"; };
  665. 2F550FDA217F5CC100F56C26 /* SDRefreshFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDRefreshFooterView.h; sourceTree = "<group>"; };
  666. 2F550FDB217F5CC100F56C26 /* SDRefreshView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDRefreshView.h; sourceTree = "<group>"; };
  667. 2F550FDC217F5CC100F56C26 /* SDRefreshHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDRefreshHeaderView.m; sourceTree = "<group>"; };
  668. 2F550FDE217F5CC100F56C26 /* UIView+SDExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+SDExtension.m"; sourceTree = "<group>"; };
  669. 2F550FDF217F5CC100F56C26 /* SDRefreshFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDRefreshFooterView.m; sourceTree = "<group>"; };
  670. 2F550FE0217F5CC100F56C26 /* SDRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDRefresh.h; sourceTree = "<group>"; };
  671. 2F550FE1217F5CC100F56C26 /* SDRefreshHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDRefreshHeaderView.h; sourceTree = "<group>"; };
  672. 2F550FE2217F5CC100F56C26 /* SDRefreshView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDRefreshView.m; sourceTree = "<group>"; };
  673. 2F550FE4217F5CC100F56C26 /* UITextView+Placeholder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITextView+Placeholder.m"; sourceTree = "<group>"; };
  674. 2F550FE5217F5CC100F56C26 /* UITextView+Placeholder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITextView+Placeholder.h"; sourceTree = "<group>"; };
  675. 2F55101E217F5CC100F56C26 /* TYAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYAlertView.m; sourceTree = "<group>"; };
  676. 2F55101F217F5CC100F56C26 /* TYAlertDropDownAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYAlertDropDownAnimation.h; sourceTree = "<group>"; };
  677. 2F551020217F5CC100F56C26 /* UIView+TYAutoLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+TYAutoLayout.h"; sourceTree = "<group>"; };
  678. 2F551021217F5CC100F56C26 /* TYShowAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYShowAlertView.h; sourceTree = "<group>"; };
  679. 2F551022217F5CC100F56C26 /* UIView+TYAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+TYAlertView.m"; sourceTree = "<group>"; };
  680. 2F551023217F5CC100F56C26 /* TYAlertScaleFadeAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYAlertScaleFadeAnimation.m; sourceTree = "<group>"; };
  681. 2F551024217F5CC100F56C26 /* TYBaseAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYBaseAnimation.h; sourceTree = "<group>"; };
  682. 2F551025217F5CC100F56C26 /* TYAlertFadeAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYAlertFadeAnimation.m; sourceTree = "<group>"; };
  683. 2F551026217F5CC100F56C26 /* TYAlertController+TransitionAnimate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "TYAlertController+TransitionAnimate.m"; sourceTree = "<group>"; };
  684. 2F551027217F5CC100F56C26 /* TYAlertController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYAlertController.h; sourceTree = "<group>"; };
  685. 2F551028217F5CC100F56C26 /* UIView+TYAutoLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+TYAutoLayout.m"; sourceTree = "<group>"; };
  686. 2F551029217F5CC100F56C26 /* TYAlertDropDownAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYAlertDropDownAnimation.m; sourceTree = "<group>"; };
  687. 2F55102A217F5CC100F56C26 /* TYAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYAlertView.h; sourceTree = "<group>"; };
  688. 2F55102B217F5CC100F56C26 /* UIView+TYAlertView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+TYAlertView.h"; sourceTree = "<group>"; };
  689. 2F55102C217F5CC100F56C26 /* TYShowAlertView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYShowAlertView.m; sourceTree = "<group>"; };
  690. 2F55102D217F5CC100F56C26 /* TYBaseAnimation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYBaseAnimation.m; sourceTree = "<group>"; };
  691. 2F55102E217F5CC100F56C26 /* TYAlertScaleFadeAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYAlertScaleFadeAnimation.h; sourceTree = "<group>"; };
  692. 2F55102F217F5CC100F56C26 /* TYAlertController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TYAlertController.m; sourceTree = "<group>"; };
  693. 2F551030217F5CC100F56C26 /* TYAlertFadeAnimation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TYAlertFadeAnimation.h; sourceTree = "<group>"; };
  694. 2F551032217F5CC100F56C26 /* YLGIFImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YLGIFImage.m; sourceTree = "<group>"; };
  695. 2F551033217F5CC100F56C26 /* YLImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = YLImageView.m; sourceTree = "<group>"; };
  696. 2F551034217F5CC100F56C26 /* YLGIFImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YLGIFImage.h; sourceTree = "<group>"; };
  697. 2F551035217F5CC100F56C26 /* YLImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = YLImageView.h; sourceTree = "<group>"; };
  698. 2F551036217F5CC100F56C26 /* Predefine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Predefine.h; sourceTree = "<group>"; };
  699. 2F551038217F5CC100F56C26 /* WFCUForwardViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUForwardViewController.m; sourceTree = "<group>"; };
  700. 2F551039217F5CC100F56C26 /* WFCUForwardMessageCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUForwardMessageCell.m; sourceTree = "<group>"; };
  701. 2F55103A217F5CC100F56C26 /* WFCUShareMessageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUShareMessageView.m; sourceTree = "<group>"; };
  702. 2F55103B217F5CC100F56C26 /* WFCUForwardViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUForwardViewController.h; sourceTree = "<group>"; };
  703. 2F55103C217F5CC100F56C26 /* WFCUShareMessageView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WFCUShareMessageView.xib; sourceTree = "<group>"; };
  704. 2F55103D217F5CC100F56C26 /* WFCUShareMessageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUShareMessageView.h; sourceTree = "<group>"; };
  705. 2F55103E217F5CC100F56C26 /* WFCUForwardMessageCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUForwardMessageCell.h; sourceTree = "<group>"; };
  706. 2F551040217F5CC100F56C26 /* TabbarButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TabbarButton.h; sourceTree = "<group>"; };
  707. 2F551041217F5CC100F56C26 /* UIImage+ERCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ERCategory.h"; sourceTree = "<group>"; };
  708. 2F551042217F5CC100F56C26 /* AttributedLabel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AttributedLabel.h; sourceTree = "<group>"; };
  709. 2F551043217F5CC100F56C26 /* BubbleTipView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BubbleTipView.m; sourceTree = "<group>"; };
  710. 2F551044217F5CC100F56C26 /* UIView+Toast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Toast.h"; sourceTree = "<group>"; };
  711. 2F551045217F5CC100F56C26 /* UIView+Screenshot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Screenshot.h"; sourceTree = "<group>"; };
  712. 2F551046217F5CC100F56C26 /* UITabBar+badge.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITabBar+badge.h"; sourceTree = "<group>"; };
  713. 2F551047217F5CC100F56C26 /* AttributedLabel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AttributedLabel.m; sourceTree = "<group>"; };
  714. 2F551048217F5CC100F56C26 /* UIImage+ERCategory.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ERCategory.m"; sourceTree = "<group>"; };
  715. 2F551049217F5CC100F56C26 /* TabbarButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TabbarButton.m; sourceTree = "<group>"; };
  716. 2F55104A217F5CC100F56C26 /* BubbleTipView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BubbleTipView.h; sourceTree = "<group>"; };
  717. 2F55104B217F5CC100F56C26 /* UITabBar+badge.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITabBar+badge.m"; sourceTree = "<group>"; };
  718. 2F55104C217F5CC100F56C26 /* UIView+Screenshot.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Screenshot.m"; sourceTree = "<group>"; };
  719. 2F55104D217F5CC100F56C26 /* UIView+Toast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Toast.m"; sourceTree = "<group>"; };
  720. 2F551050217F5CC100F56C26 /* WFCUSwitchTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUSwitchTableViewCell.m; sourceTree = "<group>"; };
  721. 2F551051217F5CC100F56C26 /* WFCUConversationSettingMemberCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConversationSettingMemberCell.h; sourceTree = "<group>"; };
  722. 2F551052217F5CC100F56C26 /* WFCUSwitchTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUSwitchTableViewCell.h; sourceTree = "<group>"; };
  723. 2F551053217F5CC100F56C26 /* WFCUConversationSettingMemberCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConversationSettingMemberCell.m; sourceTree = "<group>"; };
  724. 2F551055217F5CC100F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConversationSettingMemberCollectionViewLayout.m; sourceTree = "<group>"; };
  725. 2F551056217F5CC100F56C26 /* WFCUConversationSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConversationSettingViewController.m; sourceTree = "<group>"; };
  726. 2F551057217F5CC100F56C26 /* WFCUConversationSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConversationSettingViewController.h; sourceTree = "<group>"; };
  727. 2F551058217F5CC100F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConversationSettingMemberCollectionViewLayout.h; sourceTree = "<group>"; };
  728. 2F55105B217F5CC100F56C26 /* WFCUConversationTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConversationTableViewCell.h; sourceTree = "<group>"; };
  729. 2F55105D217F5CC100F56C26 /* WFCUConversationTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConversationTableViewCell.m; sourceTree = "<group>"; };
  730. 2F551063217F5CC100F56C26 /* WFCUConversationTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConversationTableViewController.h; sourceTree = "<group>"; };
  731. 2F551064217F5CC100F56C26 /* WFCUConversationTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConversationTableViewController.m; sourceTree = "<group>"; };
  732. 2F551067217F5CC100F56C26 /* WFCUNewFriendTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUNewFriendTableViewCell.m; sourceTree = "<group>"; };
  733. 2F551068217F5CC100F56C26 /* WFCUContactTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUContactTableViewCell.m; sourceTree = "<group>"; };
  734. 2F551069217F5CC100F56C26 /* WFCUContactSelectTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUContactSelectTableViewCell.m; sourceTree = "<group>"; };
  735. 2F55106A217F5CC100F56C26 /* WFCUNewFriendTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUNewFriendTableViewCell.h; sourceTree = "<group>"; };
  736. 2F55106B217F5CC100F56C26 /* WFCUContactTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUContactTableViewCell.h; sourceTree = "<group>"; };
  737. 2F55106C217F5CC100F56C26 /* WFCUContactSelectTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUContactSelectTableViewCell.h; sourceTree = "<group>"; };
  738. 2F55106E217F5CC100F56C26 /* WFCUContactListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUContactListViewController.h; sourceTree = "<group>"; };
  739. 2F55106F217F5CC100F56C26 /* WFCUContactListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUContactListViewController.m; sourceTree = "<group>"; };
  740. 2F551072217F5CC100F56C26 /* WFCUAddFriendViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUAddFriendViewController.m; sourceTree = "<group>"; };
  741. 2F551073217F5CC100F56C26 /* WFCUAddFriendViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUAddFriendViewController.h; sourceTree = "<group>"; };
  742. 2F551076217F5CC100F56C26 /* WFCUMyProfileTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMyProfileTableViewController.h; sourceTree = "<group>"; };
  743. 2F55107A217F5CC100F56C26 /* WFCUMyPortraitViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMyPortraitViewController.h; sourceTree = "<group>"; };
  744. 2F55107B217F5CC100F56C26 /* WFCUMessageNotificationViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMessageNotificationViewController.m; sourceTree = "<group>"; };
  745. 2F55107C217F5CC100F56C26 /* WFCUModifyMyProfileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUModifyMyProfileViewController.m; sourceTree = "<group>"; };
  746. 2F551080217F5CC100F56C26 /* WFCUMyProfileTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMyProfileTableViewController.m; sourceTree = "<group>"; };
  747. 2F551082217F5CC100F56C26 /* WFCUModifyMyProfileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUModifyMyProfileViewController.h; sourceTree = "<group>"; };
  748. 2F551083217F5CC100F56C26 /* WFCUMessageNotificationViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMessageNotificationViewController.h; sourceTree = "<group>"; };
  749. 2F551084217F5CC100F56C26 /* WFCUMyPortraitViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMyPortraitViewController.m; sourceTree = "<group>"; };
  750. 2F551087217F5CC200F56C26 /* WFCUFriendRequestTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUFriendRequestTableViewCell.m; sourceTree = "<group>"; };
  751. 2F551088217F5CC200F56C26 /* WFCUFriendRequestTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUFriendRequestTableViewCell.h; sourceTree = "<group>"; };
  752. 2F55108A217F5CC200F56C26 /* WFCUFriendRequestViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUFriendRequestViewController.h; sourceTree = "<group>"; };
  753. 2F55108B217F5CC200F56C26 /* WFCUFriendRequestViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUFriendRequestViewController.m; sourceTree = "<group>"; };
  754. 2F55108D217F5CC200F56C26 /* WFCUMediaMessageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUMediaMessageDownloader.h; sourceTree = "<group>"; };
  755. 2F55108E217F5CC200F56C26 /* WFCUUtilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUUtilities.h; sourceTree = "<group>"; };
  756. 2F55108F217F5CC200F56C26 /* WFCUMediaMessageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUMediaMessageDownloader.m; sourceTree = "<group>"; };
  757. 2F551090217F5CC200F56C26 /* WFCUUtilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUUtilities.m; sourceTree = "<group>"; };
  758. 2F56F6A62529E43900B829C4 /* WFCUCompositeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUCompositeCell.h; sourceTree = "<group>"; };
  759. 2F56F6A72529E43900B829C4 /* WFCUCompositeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUCompositeCell.m; sourceTree = "<group>"; };
  760. 2F56F6B22529EE0F00B829C4 /* WFCUCompositeMessageViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUCompositeMessageViewController.h; sourceTree = "<group>"; };
  761. 2F56F6B32529EE0F00B829C4 /* WFCUCompositeMessageViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUCompositeMessageViewController.m; sourceTree = "<group>"; };
  762. 2F5EB43A22C2E21A00BC8C90 /* GroupManageTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GroupManageTableViewController.h; sourceTree = "<group>"; };
  763. 2F5EB43B22C2E21A00BC8C90 /* GroupManageTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = GroupManageTableViewController.m; sourceTree = "<group>"; };
  764. 2F5EB43E22C2E6BB00BC8C90 /* ManagerTableViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ManagerTableViewController.h; sourceTree = "<group>"; };
  765. 2F5EB43F22C2E6BB00BC8C90 /* ManagerTableViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ManagerTableViewController.m; sourceTree = "<group>"; };
  766. 2F5EB44222C2EE1800BC8C90 /* GroupMuteTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMuteTableViewController.h; sourceTree = "<group>"; };
  767. 2F5EB44322C2EE1800BC8C90 /* GroupMuteTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMuteTableViewController.m; sourceTree = "<group>"; };
  768. 2F5EB44622C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUGeneralSwitchTableViewCell.h; sourceTree = "<group>"; };
  769. 2F5EB44722C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUGeneralSwitchTableViewCell.m; sourceTree = "<group>"; };
  770. 2F5EB44A22C2F36A00BC8C90 /* GroupMemberControlTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GroupMemberControlTableViewController.h; sourceTree = "<group>"; };
  771. 2F5EB44B22C2F36A00BC8C90 /* GroupMemberControlTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GroupMemberControlTableViewController.m; sourceTree = "<group>"; };
  772. 2F7381F42308F72F00213421 /* WFCUGroupMemberCollectionViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUGroupMemberCollectionViewController.h; sourceTree = "<group>"; };
  773. 2F7381F52308F72F00213421 /* WFCUGroupMemberCollectionViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUGroupMemberCollectionViewController.m; sourceTree = "<group>"; };
  774. 2F9CE41A21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUSearchChannelViewController.m; sourceTree = "<group>"; };
  775. 2F9CE41B21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUSearchChannelViewController.h; sourceTree = "<group>"; };
  776. 2F9CE41E21BFE63C005E1BE1 /* WFCUChannelProfileViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUChannelProfileViewController.h; sourceTree = "<group>"; };
  777. 2F9CE41F21BFE63C005E1BE1 /* WFCUChannelProfileViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUChannelProfileViewController.m; sourceTree = "<group>"; };
  778. 2F9E85F8222B83CE0076B82B /* QrCodeHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = QrCodeHelper.h; sourceTree = "<group>"; };
  779. 2F9E85FE222B9D600076B82B /* QrCodeHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QrCodeHelper.m; sourceTree = "<group>"; };
  780. 2FA2164F22F1667F00670211 /* WFCUBlackListViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUBlackListViewController.h; sourceTree = "<group>"; };
  781. 2FA2165022F1667F00670211 /* WFCUBlackListViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUBlackListViewController.m; sourceTree = "<group>"; };
  782. 2FA2E908251633EF0038635A /* SDWebImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = SDWebImage.framework; sourceTree = "<group>"; };
  783. 2FD2EE7E218F15B500CBA8B0 /* WFCUVerifyRequestViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUVerifyRequestViewController.h; sourceTree = "<group>"; };
  784. 2FD2EE7F218F15B500CBA8B0 /* WFCUVerifyRequestViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUVerifyRequestViewController.m; sourceTree = "<group>"; };
  785. 2FD550EA2442AA0B00B3EE09 /* WFCURecallCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCURecallCell.h; sourceTree = "<group>"; };
  786. 2FD550EB2442AA0B00B3EE09 /* WFCURecallCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCURecallCell.m; sourceTree = "<group>"; };
  787. 2FD550F42442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+YBAttributeTextTapAction.h"; sourceTree = "<group>"; };
  788. 2FD550F52442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+YBAttributeTextTapAction.m"; sourceTree = "<group>"; };
  789. 2FE689A621AE9C0100DE54CC /* WFCUConversationSearchTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConversationSearchTableViewController.m; sourceTree = "<group>"; };
  790. 2FE689A721AE9C0200DE54CC /* WFCUConversationSearchTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConversationSearchTableViewController.h; sourceTree = "<group>"; };
  791. 2FF70EAA2402101000946D2D /* WFCUWaitingAnimationView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = WFCUWaitingAnimationView.h; sourceTree = "<group>"; };
  792. 2FF70EAB2402101000946D2D /* WFCUWaitingAnimationView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = WFCUWaitingAnimationView.m; sourceTree = "<group>"; };
  793. 901E270121F152F600A163CB /* LICENSE.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = LICENSE.md; sourceTree = "<group>"; };
  794. 901E270421F152F600A163CB /* WebRTC.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WebRTC.framework; sourceTree = "<group>"; };
  795. 901E270521F152F600A163CB /* WFAVEngineKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = WFAVEngineKit.framework; sourceTree = "<group>"; };
  796. 9029D0FC21C5D7930002EBAA /* WFCUCreateChannelViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = WFCUCreateChannelViewController.h; path = WFChatUIKit/CreateGroup/ViewController/WFCUCreateChannelViewController.h; sourceTree = SOURCE_ROOT; };
  797. 9029D0FD21C5D7930002EBAA /* WFCUCreateChannelViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = WFCUCreateChannelViewController.m; path = WFChatUIKit/CreateGroup/ViewController/WFCUCreateChannelViewController.m; sourceTree = SOURCE_ROOT; };
  798. 90414AFA21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WFCUConversationSearchTableViewCell.h; sourceTree = "<group>"; };
  799. 90414AFB21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WFCUConversationSearchTableViewCell.m; sourceTree = "<group>"; };
  800. /* End PBXFileReference section */
  801. /* Begin PBXFrameworksBuildPhase section */
  802. 2F550BDC217F4D7B00F56C26 /* Frameworks */ = {
  803. isa = PBXFrameworksBuildPhase;
  804. buildActionMask = 2147483647;
  805. files = (
  806. 2FA2E909251633EF0038635A /* SDWebImage.framework in Frameworks */,
  807. 901E270821F152F600A163CB /* WFAVEngineKit.framework in Frameworks */,
  808. 2F550BF3217F4DCD00F56C26 /* WFChatClient.framework in Frameworks */,
  809. 901E270721F152F600A163CB /* WebRTC.framework in Frameworks */,
  810. );
  811. runOnlyForDeploymentPostprocessing = 0;
  812. };
  813. /* End PBXFrameworksBuildPhase section */
  814. /* Begin PBXGroup section */
  815. 1450EA82243891F300BF51FC /* Support */ = {
  816. isa = PBXGroup;
  817. children = (
  818. 1450EA832438922800BF51FC /* WFCUUserSectionKeySupport.h */,
  819. 1450EA842438922800BF51FC /* WFCUUserSectionKeySupport.m */,
  820. 1450EA8F2439679500BF51FC /* WFCUSelectedUserInfo.h */,
  821. 1450EA902439679500BF51FC /* WFCUSelectedUserInfo.m */,
  822. );
  823. path = Support;
  824. sourceTree = "<group>";
  825. };
  826. 2B63367B24716864008D6B38 /* ZCCCircleProgressView */ = {
  827. isa = PBXGroup;
  828. children = (
  829. 2B63367C24716864008D6B38 /* ZCCCircleProgressView.m */,
  830. 2B63367D24716864008D6B38 /* ZCCCircleProgressView.h */,
  831. );
  832. path = ZCCCircleProgressView;
  833. sourceTree = "<group>";
  834. };
  835. 2BDF576724AD70C8003C1F08 /* DNImagePicker */ = {
  836. isa = PBXGroup;
  837. children = (
  838. 2BDF577724AD70C8003C1F08 /* Controllers */,
  839. 2BDF578224AD70C8003C1F08 /* Views */,
  840. 2BDF576F24AD70C8003C1F08 /* Support */,
  841. 2BDF576924AD70C8003C1F08 /* Models */,
  842. 2BDF57BA24AD7257003C1F08 /* DNImagePicker.h */,
  843. 2BDF576824AD70C8003C1F08 /* DNImagePickerHelper.h */,
  844. 2BDF577624AD70C8003C1F08 /* DNImagePickerHelper.m */,
  845. );
  846. path = DNImagePicker;
  847. sourceTree = "<group>";
  848. };
  849. 2BDF576924AD70C8003C1F08 /* Models */ = {
  850. isa = PBXGroup;
  851. children = (
  852. 2BDF576A24AD70C8003C1F08 /* DNAlbum.m */,
  853. 2BDF576B24AD70C8003C1F08 /* DNAsset.m */,
  854. 2BDF576C24AD70C8003C1F08 /* DNAsset.h */,
  855. 2BDF576D24AD70C8003C1F08 /* DNAlbum.h */,
  856. );
  857. path = Models;
  858. sourceTree = "<group>";
  859. };
  860. 2BDF576F24AD70C8003C1F08 /* Support */ = {
  861. isa = PBXGroup;
  862. children = (
  863. 2BDF577024AD70C8003C1F08 /* UIColor+Hex.m */,
  864. 2BDF577124AD70C8003C1F08 /* UIView+DNImagePicker.m */,
  865. 2BDF577324AD70C8003C1F08 /* UIColor+Hex.h */,
  866. 2BDF577424AD70C8003C1F08 /* UIView+DNImagePicker.h */,
  867. );
  868. path = Support;
  869. sourceTree = "<group>";
  870. };
  871. 2BDF577724AD70C8003C1F08 /* Controllers */ = {
  872. isa = PBXGroup;
  873. children = (
  874. 2BDF577824AD70C8003C1F08 /* DNAlbumTableViewController.h */,
  875. 2BDF577924AD70C8003C1F08 /* DNImageFetchOperation.h */,
  876. 2BDF577A24AD70C8003C1F08 /* DNImagePickerController.h */,
  877. 2BDF577B24AD70C8003C1F08 /* DNPhotoBrowser.h */,
  878. 2BDF577C24AD70C8003C1F08 /* DNImageFlowViewController.h */,
  879. 2BDF577D24AD70C8003C1F08 /* DNAlbumTableViewController.m */,
  880. 2BDF577E24AD70C8003C1F08 /* DNImagePickerController.m */,
  881. 2BDF577F24AD70C8003C1F08 /* DNPhotoBrowser.m */,
  882. 2BDF578024AD70C8003C1F08 /* DNImageFlowViewController.m */,
  883. 2BDF578124AD70C8003C1F08 /* DNImageFetchOperation.m */,
  884. );
  885. path = Controllers;
  886. sourceTree = "<group>";
  887. };
  888. 2BDF578224AD70C8003C1F08 /* Views */ = {
  889. isa = PBXGroup;
  890. children = (
  891. 2BDF578324AD70C8003C1F08 /* DNUnAuthorizedTipsView.h */,
  892. 2BDF578424AD70C8003C1F08 /* DNAssetsViewCell.m */,
  893. 2BDF578524AD70C8003C1F08 /* DNAlbumCell.h */,
  894. 2BDF578624AD70C8003C1F08 /* DNFullImageButton.m */,
  895. 2BDF578724AD70C8003C1F08 /* DNBadgeLabel.m */,
  896. 2BDF578824AD70C8003C1F08 /* DNTapDetectingImageView.h */,
  897. 2BDF578924AD70C8003C1F08 /* DNBrowserCell.h */,
  898. 2BDF578A24AD70C8003C1F08 /* DNSendButton.h */,
  899. 2BDF578B24AD70C8003C1F08 /* DNUnAuthorizedTipsView.m */,
  900. 2BDF578C24AD70C8003C1F08 /* DNAlbumCell.m */,
  901. 2BDF578D24AD70C8003C1F08 /* DNAssetsViewCell.h */,
  902. 2BDF578E24AD70C8003C1F08 /* DNTapDetectingImageView.m */,
  903. 2BDF578F24AD70C8003C1F08 /* DNBadgeLabel.h */,
  904. 2BDF579024AD70C8003C1F08 /* DNFullImageButton.h */,
  905. 2BDF579124AD70C8003C1F08 /* DNSendButton.m */,
  906. 2BDF579224AD70C8003C1F08 /* DNBrowserCell.m */,
  907. );
  908. path = Views;
  909. sourceTree = "<group>";
  910. };
  911. 2F143A66217F7D4100B3E38A /* Resources */ = {
  912. isa = PBXGroup;
  913. children = (
  914. 14349F61243392E300FE38B3 /* WFChatUIKit.xcassets */,
  915. 2F55103C217F5CC100F56C26 /* WFCUShareMessageView.xib */,
  916. 2F143A68217F7D4100B3E38A /* Stickers.bundle */,
  917. 2F143A69217F7D4100B3E38A /* Emoj.plist */,
  918. 2BCEC52E232E10DF00D55E0D /* wfc.strings */,
  919. );
  920. path = Resources;
  921. sourceTree = "<group>";
  922. };
  923. 2F1EB5B42499A2CA00FD3575 /* Conference */ = {
  924. isa = PBXGroup;
  925. children = (
  926. 2F1EB5B92499AA5E00FD3575 /* WFCUConferenceInviteViewController.h */,
  927. 2F1EB5BA2499AA5E00FD3575 /* WFCUConferenceInviteViewController.m */,
  928. 2F1EB5B12499A21A00FD3575 /* WFCUConferenceViewController.h */,
  929. 2F1EB5B02499A21A00FD3575 /* WFCUConferenceViewController.m */,
  930. 2F1EB5B52499A30500FD3575 /* WFCUCreateConferenceViewController.h */,
  931. 2F1EB5B62499A30500FD3575 /* WFCUCreateConferenceViewController.m */,
  932. );
  933. path = Conference;
  934. sourceTree = "<group>";
  935. };
  936. 2F341A4C235EF11700F0D1B6 /* Model */ = {
  937. isa = PBXGroup;
  938. children = (
  939. 2F341A4D235EF12B00F0D1B6 /* WFCUGroupAnnouncement.h */,
  940. 2F341A4E235EF12B00F0D1B6 /* WFCUGroupAnnouncement.m */,
  941. );
  942. path = Model;
  943. sourceTree = "<group>";
  944. };
  945. 2F44A3A42180B42300E74EA4 /* SelectMentionVC */ = {
  946. isa = PBXGroup;
  947. children = (
  948. );
  949. path = SelectMentionVC;
  950. sourceTree = "<group>";
  951. };
  952. 2F4991052189239E005F6A84 /* Voip */ = {
  953. isa = PBXGroup;
  954. children = (
  955. 2F1EB5B42499A2CA00FD3575 /* Conference */,
  956. 2BEF789723F6A84D000DE285 /* WFCUFloatingWindow.h */,
  957. 2BEF789C23F6A84D000DE285 /* WFCUFloatingWindow.m */,
  958. 2BEF789323F6A84C000DE285 /* WFCUMultiVideoViewController.h */,
  959. 2BEF789623F6A84D000DE285 /* WFCUMultiVideoViewController.m */,
  960. 2BEF789D23F6A84D000DE285 /* WFCUParticipantCollectionViewCell.h */,
  961. 2BEF789223F6A84C000DE285 /* WFCUParticipantCollectionViewCell.m */,
  962. 2BEF789523F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.h */,
  963. 2BEF789823F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.m */,
  964. 2BEF789423F6A84D000DE285 /* WFCUPortraitCollectionViewCell.h */,
  965. 2BEF789923F6A84D000DE285 /* WFCUPortraitCollectionViewCell.m */,
  966. 2BEF789A23F6A84D000DE285 /* WFCUVideoViewController.h */,
  967. 2BEF789B23F6A84D000DE285 /* WFCUVideoViewController.m */,
  968. 2FF70EAA2402101000946D2D /* WFCUWaitingAnimationView.h */,
  969. 2FF70EAB2402101000946D2D /* WFCUWaitingAnimationView.m */,
  970. );
  971. path = Voip;
  972. sourceTree = "<group>";
  973. };
  974. 2F550BD5217F4D7B00F56C26 = {
  975. isa = PBXGroup;
  976. children = (
  977. 2F550BEA217F4DCD00F56C26 /* Frameworks */,
  978. 2F550BE1217F4D7B00F56C26 /* WFChatUIKit */,
  979. 2F550BE0217F4D7B00F56C26 /* Products */,
  980. );
  981. sourceTree = "<group>";
  982. };
  983. 2F550BE0217F4D7B00F56C26 /* Products */ = {
  984. isa = PBXGroup;
  985. children = (
  986. 2F550BDF217F4D7B00F56C26 /* WFChatUIKit.framework */,
  987. );
  988. name = Products;
  989. sourceTree = "<group>";
  990. };
  991. 2F550BE1217F4D7B00F56C26 /* WFChatUIKit */ = {
  992. isa = PBXGroup;
  993. children = (
  994. 901E26FF21F152B200A163CB /* AVEngine */,
  995. 2F9CE41921BFE5A4005E1BE1 /* Channel */,
  996. 2F4991052189239E005F6A84 /* Voip */,
  997. 2F44A3A42180B42300E74EA4 /* SelectMentionVC */,
  998. 2F551070217F5CC100F56C26 /* AddFriend */,
  999. 2F55103F217F5CC100F56C26 /* Category */,
  1000. 2F550ED2217F5CC000F56C26 /* CommonVC */,
  1001. 2F551065217F5CC100F56C26 /* Contacts */,
  1002. 2F551059217F5CC100F56C26 /* ConversationList */,
  1003. 2F55104E217F5CC100F56C26 /* ConversationSetting */,
  1004. 2F550EE5217F5CC000F56C26 /* CreateGroup */,
  1005. 2F551037217F5CC100F56C26 /* ForwardMessage */,
  1006. 2F551085217F5CC200F56C26 /* FriendRequest */,
  1007. 2F550EEE217F5CC000F56C26 /* Group */,
  1008. 2F551074217F5CC100F56C26 /* Me */,
  1009. 2F550EB2217F5CC000F56C26 /* MessageList */,
  1010. 2F55108C217F5CC200F56C26 /* Utilities */,
  1011. 2F550EF2217F5CC000F56C26 /* Vendor */,
  1012. 2F550BE2217F4D7B00F56C26 /* WFChatUIKit.h */,
  1013. 2F551036217F5CC100F56C26 /* Predefine.h */,
  1014. 2F550BE3217F4D7B00F56C26 /* Info.plist */,
  1015. 2F143A66217F7D4100B3E38A /* Resources */,
  1016. 2F9E85F8222B83CE0076B82B /* QrCodeHelper.h */,
  1017. 2F9E85FE222B9D600076B82B /* QrCodeHelper.m */,
  1018. );
  1019. path = WFChatUIKit;
  1020. sourceTree = "<group>";
  1021. };
  1022. 2F550BEA217F4DCD00F56C26 /* Frameworks */ = {
  1023. isa = PBXGroup;
  1024. children = (
  1025. 2F550BEC217F4DCD00F56C26 /* WFChatClient.framework */,
  1026. );
  1027. path = Frameworks;
  1028. sourceTree = "<group>";
  1029. };
  1030. 2F550EB2217F5CC000F56C26 /* MessageList */ = {
  1031. isa = PBXGroup;
  1032. children = (
  1033. 2F550EB3217F5CC000F56C26 /* Cell */,
  1034. 2F550ECC217F5CC000F56C26 /* Model */,
  1035. 2F550ECF217F5CC000F56C26 /* ViewController */,
  1036. );
  1037. path = MessageList;
  1038. sourceTree = "<group>";
  1039. };
  1040. 2F550EB3217F5CC000F56C26 /* Cell */ = {
  1041. isa = PBXGroup;
  1042. children = (
  1043. 2F550EC8217F5CC000F56C26 /* WFCUCallSummaryCell.h */,
  1044. 2F550EB7217F5CC000F56C26 /* WFCUCallSummaryCell.m */,
  1045. 2F550EC1217F5CC000F56C26 /* WFCUFileCell.h */,
  1046. 2F550EB6217F5CC000F56C26 /* WFCUFileCell.m */,
  1047. 2F550EB9217F5CC000F56C26 /* WFCUImageCell.h */,
  1048. 2F550EC6217F5CC000F56C26 /* WFCUImageCell.m */,
  1049. 2F550EC7217F5CC000F56C26 /* WFCUInformationCell.h */,
  1050. 2F550EB8217F5CC000F56C26 /* WFCUInformationCell.m */,
  1051. 2F550EB5217F5CC000F56C26 /* WFCULocationCell.h */,
  1052. 2F550EC2217F5CC000F56C26 /* WFCULocationCell.m */,
  1053. 2F550EC0217F5CC000F56C26 /* WFCUMediaMessageCell.h */,
  1054. 2F550EB4217F5CC000F56C26 /* WFCUMediaMessageCell.m */,
  1055. 2F550EBE217F5CC000F56C26 /* WFCUMessageCell.h */,
  1056. 2F550ECA217F5CC000F56C26 /* WFCUMessageCell.m */,
  1057. 2F550EBB217F5CC000F56C26 /* WFCUMessageCellBase.h */,
  1058. 2F550EC4217F5CC000F56C26 /* WFCUMessageCellBase.m */,
  1059. 2F550EBF217F5CC000F56C26 /* WFCUStickerCell.h */,
  1060. 2F550EC9217F5CC000F56C26 /* WFCUStickerCell.m */,
  1061. 2F337EE5219EE1840086B0F3 /* WFCUTextCell.h */,
  1062. 2F550ECB217F5CC000F56C26 /* WFCUVideoCell.h */,
  1063. 2F550EBD217F5CC000F56C26 /* WFCUVideoCell.m */,
  1064. 2F550EBC217F5CC000F56C26 /* WFCUTextCell.m */,
  1065. 2F550EC5217F5CC000F56C26 /* WFCUVoiceCell.h */,
  1066. 2F550EBA217F5CC000F56C26 /* WFCUVoiceCell.m */,
  1067. 2FD550EA2442AA0B00B3EE09 /* WFCURecallCell.h */,
  1068. 2FD550EB2442AA0B00B3EE09 /* WFCURecallCell.m */,
  1069. 2B46D4DA24ACC9B900721792 /* MediaMessageGridViewCell.h */,
  1070. 2B46D4DB24ACC9B900721792 /* MediaMessageGridViewCell.m */,
  1071. 2F1EB5C12499AFF900FD3575 /* WFCUConferenceInviteCell.h */,
  1072. 2F1EB5C22499AFF900FD3575 /* WFCUConferenceInviteCell.m */,
  1073. 2B97D4872505C7BE00162A2B /* WFCUCardCell.h */,
  1074. 2B97D4882505C7BE00162A2B /* WFCUCardCell.m */,
  1075. 2F56F6A62529E43900B829C4 /* WFCUCompositeCell.h */,
  1076. 2F56F6A72529E43900B829C4 /* WFCUCompositeCell.m */,
  1077. );
  1078. path = Cell;
  1079. sourceTree = "<group>";
  1080. };
  1081. 2F550ECC217F5CC000F56C26 /* Model */ = {
  1082. isa = PBXGroup;
  1083. children = (
  1084. 2F550ECD217F5CC000F56C26 /* WFCUMessageModel.m */,
  1085. 2F550ECE217F5CC000F56C26 /* WFCUMessageModel.h */,
  1086. );
  1087. path = Model;
  1088. sourceTree = "<group>";
  1089. };
  1090. 2F550ECF217F5CC000F56C26 /* ViewController */ = {
  1091. isa = PBXGroup;
  1092. children = (
  1093. 2F550ED0217F5CC000F56C26 /* WFCUMessageListViewController.m */,
  1094. 2F550ED1217F5CC000F56C26 /* WFCUMessageListViewController.h */,
  1095. 2B46D4D624ACC64300721792 /* WFCUMediaMessageGridViewController.h */,
  1096. 2B46D4D724ACC64300721792 /* WFCUMediaMessageGridViewController.m */,
  1097. 2BB4191424ED212200ABFEF1 /* WFCUUserMessageListViewController.h */,
  1098. 2BB4191524ED212200ABFEF1 /* WFCUUserMessageListViewController.m */,
  1099. 2F535BFD25296E6600C9AF09 /* WFCUQuoteViewController.h */,
  1100. 2F535BFE25296E6600C9AF09 /* WFCUQuoteViewController.m */,
  1101. 2F56F6B22529EE0F00B829C4 /* WFCUCompositeMessageViewController.h */,
  1102. 2F56F6B32529EE0F00B829C4 /* WFCUCompositeMessageViewController.m */,
  1103. );
  1104. path = ViewController;
  1105. sourceTree = "<group>";
  1106. };
  1107. 2F550ED2217F5CC000F56C26 /* CommonVC */ = {
  1108. isa = PBXGroup;
  1109. children = (
  1110. 2FA2164F22F1667F00670211 /* WFCUBlackListViewController.h */,
  1111. 2FA2165022F1667F00670211 /* WFCUBlackListViewController.m */,
  1112. 2F550EE2217F5CC000F56C26 /* WFCUBrowserViewController.h */,
  1113. 2F550EDB217F5CC000F56C26 /* WFCUBrowserViewController.m */,
  1114. 2F550EE3217F5CC000F56C26 /* WFCUGeneralModifyViewController.h */,
  1115. 2F550EDA217F5CC000F56C26 /* WFCUGeneralModifyViewController.m */,
  1116. 2F550EDD217F5CC000F56C26 /* WFCUGroupMemberTableViewCell.h */,
  1117. 2F550ED4217F5CC000F56C26 /* WFCUGroupMemberTableViewCell.m */,
  1118. 2F550ED6217F5CC000F56C26 /* WFCUGroupMemberTableViewController.h */,
  1119. 2F550EE0217F5CC000F56C26 /* WFCUGroupMemberTableViewController.m */,
  1120. 2F550EDF217F5CC000F56C26 /* WFCUGroupTableViewCell.h */,
  1121. 2F550ED7217F5CC000F56C26 /* WFCUGroupTableViewCell.m */,
  1122. 2F550ED8217F5CC000F56C26 /* WFCUImagePreviewViewController.h */,
  1123. 2F550EDE217F5CC000F56C26 /* WFCUImagePreviewViewController.m */,
  1124. 2F550ED5217F5CC000F56C26 /* WFCUInviteGroupMemberViewController.h */,
  1125. 2F550EE1217F5CC000F56C26 /* WFCUInviteGroupMemberViewController.m */,
  1126. 2F550ED3217F5CC000F56C26 /* WFCUProfileTableViewController.h */,
  1127. 2F550EDC217F5CC000F56C26 /* WFCUProfileTableViewController.m */,
  1128. 2F550EE4217F5CC000F56C26 /* WFCUSearchViewController.h */,
  1129. 2F550ED9217F5CC000F56C26 /* WFCUSearchViewController.m */,
  1130. );
  1131. path = CommonVC;
  1132. sourceTree = "<group>";
  1133. };
  1134. 2F550EE5217F5CC000F56C26 /* CreateGroup */ = {
  1135. isa = PBXGroup;
  1136. children = (
  1137. 2F550EE6217F5CC000F56C26 /* ViewController */,
  1138. );
  1139. path = CreateGroup;
  1140. sourceTree = "<group>";
  1141. };
  1142. 2F550EE6217F5CC000F56C26 /* ViewController */ = {
  1143. isa = PBXGroup;
  1144. children = (
  1145. 2F550EE7217F5CC000F56C26 /* WFCUCreateGroupViewController.m */,
  1146. 2F550EE8217F5CC000F56C26 /* WFCUCreateGroupViewController.h */,
  1147. );
  1148. path = ViewController;
  1149. sourceTree = "<group>";
  1150. };
  1151. 2F550EEE217F5CC000F56C26 /* Group */ = {
  1152. isa = PBXGroup;
  1153. children = (
  1154. 2F341A4C235EF11700F0D1B6 /* Model */,
  1155. 2F550EEF217F5CC000F56C26 /* ViewController */,
  1156. );
  1157. path = Group;
  1158. sourceTree = "<group>";
  1159. };
  1160. 2F550EEF217F5CC000F56C26 /* ViewController */ = {
  1161. isa = PBXGroup;
  1162. children = (
  1163. 2F550EF0217F5CC000F56C26 /* WFCUFavGroupTableViewController.h */,
  1164. 2F550EF1217F5CC000F56C26 /* WFCUFavGroupTableViewController.m */,
  1165. 2B15F1B72509E285007022BC /* WFCUGroupInfoViewController.h */,
  1166. 2B15F1B62509E285007022BC /* WFCUGroupInfoViewController.m */,
  1167. );
  1168. path = ViewController;
  1169. sourceTree = "<group>";
  1170. };
  1171. 2F550EF2217F5CC000F56C26 /* Vendor */ = {
  1172. isa = PBXGroup;
  1173. children = (
  1174. 2FA2E6E025158CBA0038635A /* SDWebImage */,
  1175. 2BDF576724AD70C8003C1F08 /* DNImagePicker */,
  1176. 2B63367B24716864008D6B38 /* ZCCCircleProgressView */,
  1177. 2FD550F32442AA5800B3EE09 /* YBAttributeTextTapAction */,
  1178. 2F550EF3217F5CC000F56C26 /* ChatInputBar */,
  1179. 2F550F1F217F5CC100F56C26 /* CCHMapClusterController */,
  1180. 2F550F3C217F5CC100F56C26 /* Pinyin */,
  1181. 2F550F3F217F5CC100F56C26 /* VideoPlayerKit */,
  1182. 2F550F8D217F5CC100F56C26 /* KZSmallVideoRecorder */,
  1183. 2F550F98217F5CC100F56C26 /* SDPhotoBrowser */,
  1184. 2F550FA0217F5CC100F56C26 /* KxMenu */,
  1185. 2F550FA3217F5CC100F56C26 /* AFNetworking */,
  1186. 2F550FD5217F5CC100F56C26 /* MBProgressHUD */,
  1187. 2F550FD8217F5CC100F56C26 /* SDRefeshView */,
  1188. 2F550FE3217F5CC100F56C26 /* UITextViewPlaceholder */,
  1189. 2F55101D217F5CC100F56C26 /* TYAlertController */,
  1190. 2F551031217F5CC100F56C26 /* YLGIFImage */,
  1191. );
  1192. path = Vendor;
  1193. sourceTree = "<group>";
  1194. };
  1195. 2F550EF3217F5CC000F56C26 /* ChatInputBar */ = {
  1196. isa = PBXGroup;
  1197. children = (
  1198. 2F550EFB217F5CC000F56C26 /* FaceBoard */,
  1199. 2F550EF8217F5CC000F56C26 /* WFCUChatInputBar.h */,
  1200. 2F550F18217F5CC100F56C26 /* WFCUChatInputBar.m */,
  1201. 2F550F1B217F5CC100F56C26 /* WFCUEmotionTextAttachment.h */,
  1202. 2F550F14217F5CC100F56C26 /* WFCUEmotionTextAttachment.m */,
  1203. 2F550F15217F5CC100F56C26 /* WFCULocationPoint.h */,
  1204. 2F550F1E217F5CC100F56C26 /* WFCULocationPoint.m */,
  1205. 2F550F17217F5CC100F56C26 /* WFCULocationViewController.h */,
  1206. 2F550EF4217F5CC000F56C26 /* WFCULocationViewController.m */,
  1207. 2F550EF7217F5CC000F56C26 /* WFCUPluginBoardView.h */,
  1208. 2F550F19217F5CC100F56C26 /* WFCUPluginBoardView.m */,
  1209. 2F550EF5217F5CC000F56C26 /* WFCUPluginItemView.h */,
  1210. 2F550F16217F5CC100F56C26 /* WFCUPluginItemView.m */,
  1211. 2F550EFA217F5CC000F56C26 /* WFCUSelectedFileCollectionViewCell.h */,
  1212. 2F550F1C217F5CC100F56C26 /* WFCUSelectedFileCollectionViewCell.m */,
  1213. 2F550F1A217F5CC100F56C26 /* WFCUSelectFileViewController.h */,
  1214. 2F550EF6217F5CC000F56C26 /* WFCUSelectFileViewController.m */,
  1215. 2F550EF9217F5CC000F56C26 /* WFCUVoiceRecordView.h */,
  1216. 2F550F1D217F5CC100F56C26 /* WFCUVoiceRecordView.m */,
  1217. );
  1218. path = ChatInputBar;
  1219. sourceTree = "<group>";
  1220. };
  1221. 2F550EFB217F5CC000F56C26 /* FaceBoard */ = {
  1222. isa = PBXGroup;
  1223. children = (
  1224. 2F3A6C13219EE941009A8B4B /* WFCUFaceBoard.h */,
  1225. 2F3A6C12219EE941009A8B4B /* WFCUFaceBoard.m */,
  1226. 2F3A6C15219EE941009A8B4B /* WFCUFaceButton.h */,
  1227. 2F3A6C14219EE941009A8B4B /* WFCUFaceButton.m */,
  1228. 2F3A6C16219EE941009A8B4B /* WFCUStickerItem.h */,
  1229. 2F3A6C17219EE941009A8B4B /* WFCUStickerItem.m */,
  1230. );
  1231. path = FaceBoard;
  1232. sourceTree = "<group>";
  1233. };
  1234. 2F550F1F217F5CC100F56C26 /* CCHMapClusterController */ = {
  1235. isa = PBXGroup;
  1236. children = (
  1237. 2F550F20217F5CC100F56C26 /* CCHMapTreeUtils.m */,
  1238. 2F550F21217F5CC100F56C26 /* CCHMapClusterControllerDebugPolygon.h */,
  1239. 2F550F22217F5CC100F56C26 /* CCHMapTree.m */,
  1240. 2F550F23217F5CC100F56C26 /* CCHMapClusterController.m */,
  1241. 2F550F24217F5CC100F56C26 /* CCHMapClusterControllerUtils.m */,
  1242. 2F550F25217F5CC100F56C26 /* CCHMapClusterOperation.m */,
  1243. 2F550F26217F5CC100F56C26 /* CCHCenterOfMassMapClusterer.h */,
  1244. 2F550F27217F5CC100F56C26 /* CCHMapViewDelegateProxy.h */,
  1245. 2F550F28217F5CC100F56C26 /* CCHMapAnimator.h */,
  1246. 2F550F29217F5CC100F56C26 /* CCHMapClusterAnnotation.m */,
  1247. 2F550F2A217F5CC100F56C26 /* CCHFadeInOutMapAnimator.h */,
  1248. 2F550F2B217F5CC100F56C26 /* CCHNearCenterMapClusterer.h */,
  1249. 2F550F2C217F5CC100F56C26 /* CCHMapClusterControllerDebugPolygon.m */,
  1250. 2F550F2D217F5CC100F56C26 /* CCHMapClusterControllerDelegate.h */,
  1251. 2F550F2E217F5CC100F56C26 /* CCHMapTreeUtils.h */,
  1252. 2F550F2F217F5CC100F56C26 /* CCHMapClusterController.h */,
  1253. 2F550F30217F5CC100F56C26 /* CCHMapClusterer.h */,
  1254. 2F550F31217F5CC100F56C26 /* CCHMapTree.h */,
  1255. 2F550F32217F5CC100F56C26 /* CCHMapClusterControllerUtils.h */,
  1256. 2F550F33217F5CC100F56C26 /* CCHMapClusterOperation.h */,
  1257. 2F550F34217F5CC100F56C26 /* CCHNearCenterMapClusterer.m */,
  1258. 2F550F35217F5CC100F56C26 /* CCHFadeInOutMapAnimator.m */,
  1259. 2F550F36217F5CC100F56C26 /* CCHMapClusterAnnotation.h */,
  1260. 2F550F37217F5CC100F56C26 /* CCHMapViewDelegateProxy.m */,
  1261. 2F550F38217F5CC100F56C26 /* CCHCenterOfMassMapClusterer.m */,
  1262. );
  1263. path = CCHMapClusterController;
  1264. sourceTree = "<group>";
  1265. };
  1266. 2F550F3C217F5CC100F56C26 /* Pinyin */ = {
  1267. isa = PBXGroup;
  1268. children = (
  1269. 2F550F3D217F5CC100F56C26 /* pinyin.h */,
  1270. 2F550F3E217F5CC100F56C26 /* pinyin.c */,
  1271. );
  1272. path = Pinyin;
  1273. sourceTree = "<group>";
  1274. };
  1275. 2F550F3F217F5CC100F56C26 /* VideoPlayerKit */ = {
  1276. isa = PBXGroup;
  1277. children = (
  1278. 2F550F40217F5CC100F56C26 /* VideoPlayerSampleViewController.h */,
  1279. 2F550F41217F5CC100F56C26 /* FullScreenView.h */,
  1280. 2F550F42217F5CC100F56C26 /* AirplayActiveView.m */,
  1281. 2F550F43217F5CC100F56C26 /* VideoPlayerSampleView.h */,
  1282. 2F550F44217F5CC100F56C26 /* FullScreenViewController.h */,
  1283. 2F550F45217F5CC100F56C26 /* VideoPlayerKit.h */,
  1284. 2F550F46217F5CC100F56C26 /* VideoPlayerView.h */,
  1285. 2F550F47217F5CC100F56C26 /* VideoPlayerSampleViewController.m */,
  1286. 2F550F48217F5CC100F56C26 /* VideoPlayerSampleView.m */,
  1287. 2F550F49217F5CC100F56C26 /* AirplayActiveView.h */,
  1288. 2F550F4A217F5CC100F56C26 /* FullScreenView.m */,
  1289. 2F550F4B217F5CC100F56C26 /* Resource */,
  1290. 2F550F5A217F5CC100F56C26 /* FullScreenViewController.m */,
  1291. 2F550F5B217F5CC100F56C26 /* VideoPlayer.h */,
  1292. 2F550F5C217F5CC100F56C26 /* VideoPlayerView.m */,
  1293. 2F550F5D217F5CC100F56C26 /* VideoPlayerKit.m */,
  1294. );
  1295. path = VideoPlayerKit;
  1296. sourceTree = "<group>";
  1297. };
  1298. 2F550F4B217F5CC100F56C26 /* Resource */ = {
  1299. isa = PBXGroup;
  1300. children = (
  1301. );
  1302. path = Resource;
  1303. sourceTree = "<group>";
  1304. };
  1305. 2F550F8D217F5CC100F56C26 /* KZSmallVideoRecorder */ = {
  1306. isa = PBXGroup;
  1307. children = (
  1308. 2F550F8E217F5CC100F56C26 /* KZVideoListViewController.h */,
  1309. 2F550F8F217F5CC100F56C26 /* KZVideoConfig.m */,
  1310. 2F550F90217F5CC100F56C26 /* KZVideoSupport.h */,
  1311. 2F550F91217F5CC100F56C26 /* KZVideoPlayer.m */,
  1312. 2F550F92217F5CC100F56C26 /* KZVideoViewController.m */,
  1313. 2F550F93217F5CC100F56C26 /* KZVideoConfig.h */,
  1314. 2F550F94217F5CC100F56C26 /* KZVideoListViewController.m */,
  1315. 2F550F95217F5CC100F56C26 /* KZVideoSupport.m */,
  1316. 2F550F96217F5CC100F56C26 /* KZVideoPlayer.h */,
  1317. 2F550F97217F5CC100F56C26 /* KZVideoViewController.h */,
  1318. );
  1319. path = KZSmallVideoRecorder;
  1320. sourceTree = "<group>";
  1321. };
  1322. 2F550F98217F5CC100F56C26 /* SDPhotoBrowser */ = {
  1323. isa = PBXGroup;
  1324. children = (
  1325. 2F550F99217F5CC100F56C26 /* SDPhotoBrowserConfig.h */,
  1326. 2F550F9A217F5CC100F56C26 /* SDPhotoBrowser.m */,
  1327. 2F550F9B217F5CC100F56C26 /* SDWaitingView.m */,
  1328. 2F550F9C217F5CC100F56C26 /* SDBrowserImageView.m */,
  1329. 2F550F9D217F5CC100F56C26 /* SDWaitingView.h */,
  1330. 2F550F9E217F5CC100F56C26 /* SDPhotoBrowser.h */,
  1331. 2F550F9F217F5CC100F56C26 /* SDBrowserImageView.h */,
  1332. );
  1333. path = SDPhotoBrowser;
  1334. sourceTree = "<group>";
  1335. };
  1336. 2F550FA0217F5CC100F56C26 /* KxMenu */ = {
  1337. isa = PBXGroup;
  1338. children = (
  1339. 2F550FA1217F5CC100F56C26 /* KxMenu.m */,
  1340. 2F550FA2217F5CC100F56C26 /* KxMenu.h */,
  1341. );
  1342. path = KxMenu;
  1343. sourceTree = "<group>";
  1344. };
  1345. 2F550FA3217F5CC100F56C26 /* AFNetworking */ = {
  1346. isa = PBXGroup;
  1347. children = (
  1348. 2F550FA4217F5CC100F56C26 /* AFSecurityPolicy.h */,
  1349. 2F550FA5217F5CC100F56C26 /* AFNetworkReachabilityManager.h */,
  1350. 2F550FA6217F5CC100F56C26 /* AFURLSessionManager.h */,
  1351. 2F550FA7217F5CC100F56C26 /* AFURLRequestSerialization.h */,
  1352. 2F550FA8217F5CC100F56C26 /* AFURLResponseSerialization.m */,
  1353. 2F550FA9217F5CC100F56C26 /* AFHTTPSessionManager.m */,
  1354. 2F550FAA217F5CC100F56C26 /* AFURLResponseSerialization.h */,
  1355. 2F550FAB217F5CC100F56C26 /* AFURLSessionManager.m */,
  1356. 2F550FAC217F5CC100F56C26 /* AFURLRequestSerialization.m */,
  1357. 2F550FAD217F5CC100F56C26 /* AFNetworking.h */,
  1358. 2F550FAE217F5CC100F56C26 /* AFNetworkReachabilityManager.m */,
  1359. 2F550FAF217F5CC100F56C26 /* AFSecurityPolicy.m */,
  1360. 2F550FB0217F5CC100F56C26 /* AFHTTPSessionManager.h */,
  1361. );
  1362. path = AFNetworking;
  1363. sourceTree = "<group>";
  1364. };
  1365. 2F550FD5217F5CC100F56C26 /* MBProgressHUD */ = {
  1366. isa = PBXGroup;
  1367. children = (
  1368. 2F550FD6217F5CC100F56C26 /* MBProgressHUD.m */,
  1369. 2F550FD7217F5CC100F56C26 /* MBProgressHUD.h */,
  1370. );
  1371. path = MBProgressHUD;
  1372. sourceTree = "<group>";
  1373. };
  1374. 2F550FD8217F5CC100F56C26 /* SDRefeshView */ = {
  1375. isa = PBXGroup;
  1376. children = (
  1377. 2F550FD9217F5CC100F56C26 /* UIView+SDExtension.h */,
  1378. 2F550FDA217F5CC100F56C26 /* SDRefreshFooterView.h */,
  1379. 2F550FDB217F5CC100F56C26 /* SDRefreshView.h */,
  1380. 2F550FDC217F5CC100F56C26 /* SDRefreshHeaderView.m */,
  1381. 2F550FDE217F5CC100F56C26 /* UIView+SDExtension.m */,
  1382. 2F550FDF217F5CC100F56C26 /* SDRefreshFooterView.m */,
  1383. 2F550FE0217F5CC100F56C26 /* SDRefresh.h */,
  1384. 2F550FE1217F5CC100F56C26 /* SDRefreshHeaderView.h */,
  1385. 2F550FE2217F5CC100F56C26 /* SDRefreshView.m */,
  1386. );
  1387. path = SDRefeshView;
  1388. sourceTree = "<group>";
  1389. };
  1390. 2F550FE3217F5CC100F56C26 /* UITextViewPlaceholder */ = {
  1391. isa = PBXGroup;
  1392. children = (
  1393. 2F550FE4217F5CC100F56C26 /* UITextView+Placeholder.m */,
  1394. 2F550FE5217F5CC100F56C26 /* UITextView+Placeholder.h */,
  1395. );
  1396. path = UITextViewPlaceholder;
  1397. sourceTree = "<group>";
  1398. };
  1399. 2F55101D217F5CC100F56C26 /* TYAlertController */ = {
  1400. isa = PBXGroup;
  1401. children = (
  1402. 2F55101E217F5CC100F56C26 /* TYAlertView.m */,
  1403. 2F55101F217F5CC100F56C26 /* TYAlertDropDownAnimation.h */,
  1404. 2F551020217F5CC100F56C26 /* UIView+TYAutoLayout.h */,
  1405. 2F551021217F5CC100F56C26 /* TYShowAlertView.h */,
  1406. 2F551022217F5CC100F56C26 /* UIView+TYAlertView.m */,
  1407. 2F551023217F5CC100F56C26 /* TYAlertScaleFadeAnimation.m */,
  1408. 2F551024217F5CC100F56C26 /* TYBaseAnimation.h */,
  1409. 2F551025217F5CC100F56C26 /* TYAlertFadeAnimation.m */,
  1410. 2F551026217F5CC100F56C26 /* TYAlertController+TransitionAnimate.m */,
  1411. 2F551027217F5CC100F56C26 /* TYAlertController.h */,
  1412. 2F551028217F5CC100F56C26 /* UIView+TYAutoLayout.m */,
  1413. 2F551029217F5CC100F56C26 /* TYAlertDropDownAnimation.m */,
  1414. 2F55102A217F5CC100F56C26 /* TYAlertView.h */,
  1415. 2F55102B217F5CC100F56C26 /* UIView+TYAlertView.h */,
  1416. 2F55102C217F5CC100F56C26 /* TYShowAlertView.m */,
  1417. 2F55102D217F5CC100F56C26 /* TYBaseAnimation.m */,
  1418. 2F55102E217F5CC100F56C26 /* TYAlertScaleFadeAnimation.h */,
  1419. 2F55102F217F5CC100F56C26 /* TYAlertController.m */,
  1420. 2F551030217F5CC100F56C26 /* TYAlertFadeAnimation.h */,
  1421. );
  1422. path = TYAlertController;
  1423. sourceTree = "<group>";
  1424. };
  1425. 2F551031217F5CC100F56C26 /* YLGIFImage */ = {
  1426. isa = PBXGroup;
  1427. children = (
  1428. 2F551032217F5CC100F56C26 /* YLGIFImage.m */,
  1429. 2F551033217F5CC100F56C26 /* YLImageView.m */,
  1430. 2F551034217F5CC100F56C26 /* YLGIFImage.h */,
  1431. 2F551035217F5CC100F56C26 /* YLImageView.h */,
  1432. );
  1433. path = YLGIFImage;
  1434. sourceTree = "<group>";
  1435. };
  1436. 2F551037217F5CC100F56C26 /* ForwardMessage */ = {
  1437. isa = PBXGroup;
  1438. children = (
  1439. 2F551038217F5CC100F56C26 /* WFCUForwardViewController.m */,
  1440. 2F551039217F5CC100F56C26 /* WFCUForwardMessageCell.m */,
  1441. 2F55103A217F5CC100F56C26 /* WFCUShareMessageView.m */,
  1442. 2F55103B217F5CC100F56C26 /* WFCUForwardViewController.h */,
  1443. 2F55103D217F5CC100F56C26 /* WFCUShareMessageView.h */,
  1444. 2F55103E217F5CC100F56C26 /* WFCUForwardMessageCell.h */,
  1445. );
  1446. path = ForwardMessage;
  1447. sourceTree = "<group>";
  1448. };
  1449. 2F55103F217F5CC100F56C26 /* Category */ = {
  1450. isa = PBXGroup;
  1451. children = (
  1452. 2F551042217F5CC100F56C26 /* AttributedLabel.h */,
  1453. 2F551047217F5CC100F56C26 /* AttributedLabel.m */,
  1454. 2F55104A217F5CC100F56C26 /* BubbleTipView.h */,
  1455. 2F551043217F5CC100F56C26 /* BubbleTipView.m */,
  1456. 2F551040217F5CC100F56C26 /* TabbarButton.h */,
  1457. 2F551049217F5CC100F56C26 /* TabbarButton.m */,
  1458. 149B310D241E65D500B935D3 /* UIColor+YH.h */,
  1459. 149B310C241E65D500B935D3 /* UIColor+YH.m */,
  1460. 149B310B241E65D500B935D3 /* UIFont+YH.h */,
  1461. 149B310E241E65D500B935D3 /* UIFont+YH.m */,
  1462. 2F551041217F5CC100F56C26 /* UIImage+ERCategory.h */,
  1463. 2F551048217F5CC100F56C26 /* UIImage+ERCategory.m */,
  1464. 2F551046217F5CC100F56C26 /* UITabBar+badge.h */,
  1465. 2F55104B217F5CC100F56C26 /* UITabBar+badge.m */,
  1466. 2F551045217F5CC100F56C26 /* UIView+Screenshot.h */,
  1467. 2F55104C217F5CC100F56C26 /* UIView+Screenshot.m */,
  1468. 2F551044217F5CC100F56C26 /* UIView+Toast.h */,
  1469. 2F55104D217F5CC100F56C26 /* UIView+Toast.m */,
  1470. );
  1471. path = Category;
  1472. sourceTree = "<group>";
  1473. };
  1474. 2F55104E217F5CC100F56C26 /* ConversationSetting */ = {
  1475. isa = PBXGroup;
  1476. children = (
  1477. 2F55104F217F5CC100F56C26 /* Cell */,
  1478. 2F551054217F5CC100F56C26 /* ViewController */,
  1479. );
  1480. path = ConversationSetting;
  1481. sourceTree = "<group>";
  1482. };
  1483. 2F55104F217F5CC100F56C26 /* Cell */ = {
  1484. isa = PBXGroup;
  1485. children = (
  1486. 2F551051217F5CC100F56C26 /* WFCUConversationSettingMemberCell.h */,
  1487. 2F551053217F5CC100F56C26 /* WFCUConversationSettingMemberCell.m */,
  1488. 2F5EB44622C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.h */,
  1489. 2F5EB44722C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.m */,
  1490. 2F551052217F5CC100F56C26 /* WFCUSwitchTableViewCell.h */,
  1491. 2F551050217F5CC100F56C26 /* WFCUSwitchTableViewCell.m */,
  1492. );
  1493. path = Cell;
  1494. sourceTree = "<group>";
  1495. };
  1496. 2F551054217F5CC100F56C26 /* ViewController */ = {
  1497. isa = PBXGroup;
  1498. children = (
  1499. 2F5EB43A22C2E21A00BC8C90 /* GroupManageTableViewController.h */,
  1500. 2F5EB43B22C2E21A00BC8C90 /* GroupManageTableViewController.m */,
  1501. 2F5EB44A22C2F36A00BC8C90 /* GroupMemberControlTableViewController.h */,
  1502. 2F5EB44B22C2F36A00BC8C90 /* GroupMemberControlTableViewController.m */,
  1503. 2F5EB44222C2EE1800BC8C90 /* GroupMuteTableViewController.h */,
  1504. 2F5EB44322C2EE1800BC8C90 /* GroupMuteTableViewController.m */,
  1505. 2F5EB43E22C2E6BB00BC8C90 /* ManagerTableViewController.h */,
  1506. 2F5EB43F22C2E6BB00BC8C90 /* ManagerTableViewController.m */,
  1507. 2F551058217F5CC100F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.h */,
  1508. 2F551055217F5CC100F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.m */,
  1509. 2F551057217F5CC100F56C26 /* WFCUConversationSettingViewController.h */,
  1510. 2F551056217F5CC100F56C26 /* WFCUConversationSettingViewController.m */,
  1511. 2F7381F42308F72F00213421 /* WFCUGroupMemberCollectionViewController.h */,
  1512. 2F7381F52308F72F00213421 /* WFCUGroupMemberCollectionViewController.m */,
  1513. 2BD8D72324D69B5300281B81 /* WFCUGroupFilesViewController.h */,
  1514. 2BD8D72424D69B5300281B81 /* WFCUGroupFilesViewController.m */,
  1515. );
  1516. path = ViewController;
  1517. sourceTree = "<group>";
  1518. };
  1519. 2F551059217F5CC100F56C26 /* ConversationList */ = {
  1520. isa = PBXGroup;
  1521. children = (
  1522. 2F55105A217F5CC100F56C26 /* Cell */,
  1523. 2F55105F217F5CC100F56C26 /* SearchCell */,
  1524. 2F551062217F5CC100F56C26 /* ViewController */,
  1525. );
  1526. path = ConversationList;
  1527. sourceTree = "<group>";
  1528. };
  1529. 2F55105A217F5CC100F56C26 /* Cell */ = {
  1530. isa = PBXGroup;
  1531. children = (
  1532. 2F55105B217F5CC100F56C26 /* WFCUConversationTableViewCell.h */,
  1533. 2F55105D217F5CC100F56C26 /* WFCUConversationTableViewCell.m */,
  1534. );
  1535. path = Cell;
  1536. sourceTree = "<group>";
  1537. };
  1538. 2F55105F217F5CC100F56C26 /* SearchCell */ = {
  1539. isa = PBXGroup;
  1540. children = (
  1541. 2F1439F3217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.h */,
  1542. 2F1439F4217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.m */,
  1543. 90414AFA21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.h */,
  1544. 90414AFB21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.m */,
  1545. );
  1546. path = SearchCell;
  1547. sourceTree = "<group>";
  1548. };
  1549. 2F551062217F5CC100F56C26 /* ViewController */ = {
  1550. isa = PBXGroup;
  1551. children = (
  1552. 2F551063217F5CC100F56C26 /* WFCUConversationTableViewController.h */,
  1553. 2F551064217F5CC100F56C26 /* WFCUConversationTableViewController.m */,
  1554. 2FE689A721AE9C0200DE54CC /* WFCUConversationSearchTableViewController.h */,
  1555. 2FE689A621AE9C0100DE54CC /* WFCUConversationSearchTableViewController.m */,
  1556. 2F341A51235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.h */,
  1557. 2F341A52235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.m */,
  1558. 2B07FBDF247562D90035C4DF /* WFCUReceiptViewController.h */,
  1559. 2B07FBE0247562D90035C4DF /* WFCUReceiptViewController.m */,
  1560. );
  1561. path = ViewController;
  1562. sourceTree = "<group>";
  1563. };
  1564. 2F551065217F5CC100F56C26 /* Contacts */ = {
  1565. isa = PBXGroup;
  1566. children = (
  1567. 1450EA82243891F300BF51FC /* Support */,
  1568. 2F551066217F5CC100F56C26 /* Cell */,
  1569. 2F55106D217F5CC100F56C26 /* ViewController */,
  1570. );
  1571. path = Contacts;
  1572. sourceTree = "<group>";
  1573. };
  1574. 2F551066217F5CC100F56C26 /* Cell */ = {
  1575. isa = PBXGroup;
  1576. children = (
  1577. 2F55106C217F5CC100F56C26 /* WFCUContactSelectTableViewCell.h */,
  1578. 2F551069217F5CC100F56C26 /* WFCUContactSelectTableViewCell.m */,
  1579. 2F55106B217F5CC100F56C26 /* WFCUContactTableViewCell.h */,
  1580. 2F551068217F5CC100F56C26 /* WFCUContactTableViewCell.m */,
  1581. 2F55106A217F5CC100F56C26 /* WFCUNewFriendTableViewCell.h */,
  1582. 2F551067217F5CC100F56C26 /* WFCUNewFriendTableViewCell.m */,
  1583. 1450EA7E243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.h */,
  1584. 1450EA7F243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.m */,
  1585. 1450EA8B243960C600BF51FC /* WFCUSelectedUserTableViewCell.h */,
  1586. 1450EA8C243960C600BF51FC /* WFCUSelectedUserTableViewCell.m */,
  1587. );
  1588. path = Cell;
  1589. sourceTree = "<group>";
  1590. };
  1591. 2F55106D217F5CC100F56C26 /* ViewController */ = {
  1592. isa = PBXGroup;
  1593. children = (
  1594. 2F55106E217F5CC100F56C26 /* WFCUContactListViewController.h */,
  1595. 2F55106F217F5CC100F56C26 /* WFCUContactListViewController.m */,
  1596. 14349FA424362A6600FE38B3 /* WFCUSeletedUserViewController.h */,
  1597. 14349FA524362A6600FE38B3 /* WFCUSeletedUserViewController.m */,
  1598. 1450EA8724389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.h */,
  1599. 1450EA8824389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.m */,
  1600. );
  1601. path = ViewController;
  1602. sourceTree = "<group>";
  1603. };
  1604. 2F551070217F5CC100F56C26 /* AddFriend */ = {
  1605. isa = PBXGroup;
  1606. children = (
  1607. 2F551071217F5CC100F56C26 /* ViewController */,
  1608. );
  1609. path = AddFriend;
  1610. sourceTree = "<group>";
  1611. };
  1612. 2F551071217F5CC100F56C26 /* ViewController */ = {
  1613. isa = PBXGroup;
  1614. children = (
  1615. 2F551072217F5CC100F56C26 /* WFCUAddFriendViewController.m */,
  1616. 2F551073217F5CC100F56C26 /* WFCUAddFriendViewController.h */,
  1617. 2FD2EE7E218F15B500CBA8B0 /* WFCUVerifyRequestViewController.h */,
  1618. 2FD2EE7F218F15B500CBA8B0 /* WFCUVerifyRequestViewController.m */,
  1619. );
  1620. path = ViewController;
  1621. sourceTree = "<group>";
  1622. };
  1623. 2F551074217F5CC100F56C26 /* Me */ = {
  1624. isa = PBXGroup;
  1625. children = (
  1626. 2F551083217F5CC100F56C26 /* WFCUMessageNotificationViewController.h */,
  1627. 2F55107B217F5CC100F56C26 /* WFCUMessageNotificationViewController.m */,
  1628. 2F551082217F5CC100F56C26 /* WFCUModifyMyProfileViewController.h */,
  1629. 2F55107C217F5CC100F56C26 /* WFCUModifyMyProfileViewController.m */,
  1630. 2F55107A217F5CC100F56C26 /* WFCUMyPortraitViewController.h */,
  1631. 2F551084217F5CC100F56C26 /* WFCUMyPortraitViewController.m */,
  1632. 2F551076217F5CC100F56C26 /* WFCUMyProfileTableViewController.h */,
  1633. 2F551080217F5CC100F56C26 /* WFCUMyProfileTableViewController.m */,
  1634. );
  1635. path = Me;
  1636. sourceTree = "<group>";
  1637. };
  1638. 2F551085217F5CC200F56C26 /* FriendRequest */ = {
  1639. isa = PBXGroup;
  1640. children = (
  1641. 2F551086217F5CC200F56C26 /* Cell */,
  1642. 2F551089217F5CC200F56C26 /* ViewController */,
  1643. );
  1644. path = FriendRequest;
  1645. sourceTree = "<group>";
  1646. };
  1647. 2F551086217F5CC200F56C26 /* Cell */ = {
  1648. isa = PBXGroup;
  1649. children = (
  1650. 2F551087217F5CC200F56C26 /* WFCUFriendRequestTableViewCell.m */,
  1651. 2F551088217F5CC200F56C26 /* WFCUFriendRequestTableViewCell.h */,
  1652. );
  1653. path = Cell;
  1654. sourceTree = "<group>";
  1655. };
  1656. 2F551089217F5CC200F56C26 /* ViewController */ = {
  1657. isa = PBXGroup;
  1658. children = (
  1659. 2F55108A217F5CC200F56C26 /* WFCUFriendRequestViewController.h */,
  1660. 2F55108B217F5CC200F56C26 /* WFCUFriendRequestViewController.m */,
  1661. );
  1662. path = ViewController;
  1663. sourceTree = "<group>";
  1664. };
  1665. 2F55108C217F5CC200F56C26 /* Utilities */ = {
  1666. isa = PBXGroup;
  1667. children = (
  1668. 2F55108D217F5CC200F56C26 /* WFCUMediaMessageDownloader.h */,
  1669. 2F55108E217F5CC200F56C26 /* WFCUUtilities.h */,
  1670. 2F55108F217F5CC200F56C26 /* WFCUMediaMessageDownloader.m */,
  1671. 2F551090217F5CC200F56C26 /* WFCUUtilities.m */,
  1672. 2BD671A22336E821007A9FEC /* WFCUConfigManager.h */,
  1673. 2BD671A32336E821007A9FEC /* WFCUConfigManager.m */,
  1674. 2F518FEE235ED5B300FA3D58 /* WFCUAppServiceProvider.h */,
  1675. );
  1676. path = Utilities;
  1677. sourceTree = "<group>";
  1678. };
  1679. 2F9CE41921BFE5A4005E1BE1 /* Channel */ = {
  1680. isa = PBXGroup;
  1681. children = (
  1682. 9029D0FC21C5D7930002EBAA /* WFCUCreateChannelViewController.h */,
  1683. 9029D0FD21C5D7930002EBAA /* WFCUCreateChannelViewController.m */,
  1684. 2F36433121C136C400904CAB /* WFCUFavChannelTableViewController.h */,
  1685. 2F36433221C136C400904CAB /* WFCUFavChannelTableViewController.m */,
  1686. 2F9CE41B21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.h */,
  1687. 2F9CE41A21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.m */,
  1688. 2F9CE41E21BFE63C005E1BE1 /* WFCUChannelProfileViewController.h */,
  1689. 2F9CE41F21BFE63C005E1BE1 /* WFCUChannelProfileViewController.m */,
  1690. 2F36433521C13C5300904CAB /* WFCUChannelTableViewCell.h */,
  1691. 2F36433621C13C5300904CAB /* WFCUChannelTableViewCell.m */,
  1692. );
  1693. path = Channel;
  1694. sourceTree = "<group>";
  1695. };
  1696. 2FA2E6E025158CBA0038635A /* SDWebImage */ = {
  1697. isa = PBXGroup;
  1698. children = (
  1699. 2FA2E908251633EF0038635A /* SDWebImage.framework */,
  1700. );
  1701. path = SDWebImage;
  1702. sourceTree = "<group>";
  1703. };
  1704. 2FD550F32442AA5800B3EE09 /* YBAttributeTextTapAction */ = {
  1705. isa = PBXGroup;
  1706. children = (
  1707. 2FD550F42442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.h */,
  1708. 2FD550F52442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.m */,
  1709. );
  1710. path = YBAttributeTextTapAction;
  1711. sourceTree = "<group>";
  1712. };
  1713. 901E26FF21F152B200A163CB /* AVEngine */ = {
  1714. isa = PBXGroup;
  1715. children = (
  1716. 901E270021F152F600A163CB /* GoogleWebRTC */,
  1717. 901E270521F152F600A163CB /* WFAVEngineKit.framework */,
  1718. );
  1719. path = AVEngine;
  1720. sourceTree = "<group>";
  1721. };
  1722. 901E270021F152F600A163CB /* GoogleWebRTC */ = {
  1723. isa = PBXGroup;
  1724. children = (
  1725. 901E270121F152F600A163CB /* LICENSE.md */,
  1726. 901E270221F152F600A163CB /* Frameworks */,
  1727. );
  1728. path = GoogleWebRTC;
  1729. sourceTree = "<group>";
  1730. };
  1731. 901E270221F152F600A163CB /* Frameworks */ = {
  1732. isa = PBXGroup;
  1733. children = (
  1734. 901E270321F152F600A163CB /* frameworks */,
  1735. );
  1736. path = Frameworks;
  1737. sourceTree = "<group>";
  1738. };
  1739. 901E270321F152F600A163CB /* frameworks */ = {
  1740. isa = PBXGroup;
  1741. children = (
  1742. 901E270421F152F600A163CB /* WebRTC.framework */,
  1743. );
  1744. path = frameworks;
  1745. sourceTree = "<group>";
  1746. };
  1747. /* End PBXGroup section */
  1748. /* Begin PBXHeadersBuildPhase section */
  1749. 2F550BDA217F4D7B00F56C26 /* Headers */ = {
  1750. isa = PBXHeadersBuildPhase;
  1751. buildActionMask = 2147483647;
  1752. files = (
  1753. 2F55122A217F5CC300F56C26 /* WFCUUtilities.h in Headers */,
  1754. 2F518FEF235ED5B300FA3D58 /* WFCUAppServiceProvider.h in Headers */,
  1755. 2F36433321C136C400904CAB /* WFCUFavChannelTableViewController.h in Headers */,
  1756. 2F5511F3217F5CC300F56C26 /* UITabBar+badge.h in Headers */,
  1757. 2BD671A42336E821007A9FEC /* WFCUConfigManager.h in Headers */,
  1758. 2F1EB5B72499A30500FD3575 /* WFCUCreateConferenceViewController.h in Headers */,
  1759. 2F5510BD217F5CC200F56C26 /* WFCUGeneralModifyViewController.h in Headers */,
  1760. 2F551155217F5CC200F56C26 /* KZVideoConfig.h in Headers */,
  1761. 2F5511F7217F5CC300F56C26 /* BubbleTipView.h in Headers */,
  1762. 2F551159217F5CC200F56C26 /* KZVideoViewController.h in Headers */,
  1763. 1450EA80243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.h in Headers */,
  1764. 2BEF789F23F6A84D000DE285 /* WFCUMultiVideoViewController.h in Headers */,
  1765. 2F5EB44822C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.h in Headers */,
  1766. 1450EA912439679500BF51FC /* WFCUSelectedUserInfo.h in Headers */,
  1767. 2F551229217F5CC300F56C26 /* WFCUMediaMessageDownloader.h in Headers */,
  1768. 2BDF57B124AD70C8003C1F08 /* DNSendButton.h in Headers */,
  1769. 2F341A4F235EF12B00F0D1B6 /* WFCUGroupAnnouncement.h in Headers */,
  1770. 2BEF78A623F6A84D000DE285 /* WFCUVideoViewController.h in Headers */,
  1771. 2F551166217F5CC200F56C26 /* AFURLRequestSerialization.h in Headers */,
  1772. 2FA2165122F1667F00670211 /* WFCUBlackListViewController.h in Headers */,
  1773. 2F551110217F5CC200F56C26 /* VideoPlayerKit.h in Headers */,
  1774. 149B310F241E65D500B935D3 /* UIFont+YH.h in Headers */,
  1775. 2F5510AD217F5CC200F56C26 /* WFCUProfileTableViewController.h in Headers */,
  1776. 2BDF57B724AD70C8003C1F08 /* DNFullImageButton.h in Headers */,
  1777. 2F5510BC217F5CC200F56C26 /* WFCUBrowserViewController.h in Headers */,
  1778. 2F551111217F5CC200F56C26 /* VideoPlayerView.h in Headers */,
  1779. 2F551209217F5CC300F56C26 /* WFCUConversationTableViewController.h in Headers */,
  1780. 2B15F1B92509E2C5007022BC /* WFCUGroupInfoViewController.h in Headers */,
  1781. 2F551114217F5CC200F56C26 /* AirplayActiveView.h in Headers */,
  1782. 2F551216217F5CC300F56C26 /* WFCUMyProfileTableViewController.h in Headers */,
  1783. 2F551125217F5CC200F56C26 /* VideoPlayer.h in Headers */,
  1784. 2F5510AC217F5CC200F56C26 /* WFCUMessageListViewController.h in Headers */,
  1785. 2FF70EAC2402101000946D2D /* WFCUWaitingAnimationView.h in Headers */,
  1786. 2F551222217F5CC300F56C26 /* WFCUModifyMyProfileViewController.h in Headers */,
  1787. 2F1EB5C32499AFF900FD3575 /* WFCUConferenceInviteCell.h in Headers */,
  1788. 2F551223217F5CC300F56C26 /* WFCUMessageNotificationViewController.h in Headers */,
  1789. 2BDF57AC24AD70C8003C1F08 /* DNAlbumCell.h in Headers */,
  1790. 2F56F6A82529E43900B829C4 /* WFCUCompositeCell.h in Headers */,
  1791. 2BDF579324AD70C8003C1F08 /* DNImagePickerHelper.h in Headers */,
  1792. 2F5511F1217F5CC300F56C26 /* UIView+Toast.h in Headers */,
  1793. 2F9E85F9222B84690076B82B /* QrCodeHelper.h in Headers */,
  1794. 2B63367F24716864008D6B38 /* ZCCCircleProgressView.h in Headers */,
  1795. 2F55121A217F5CC300F56C26 /* WFCUMyPortraitViewController.h in Headers */,
  1796. 2F551211217F5CC300F56C26 /* WFCUContactListViewController.h in Headers */,
  1797. 2F3A6C19219EE941009A8B4B /* WFCUFaceBoard.h in Headers */,
  1798. 2F7381F62308F72F00213421 /* WFCUGroupMemberCollectionViewController.h in Headers */,
  1799. 2F3A6C1C219EE941009A8B4B /* WFCUStickerItem.h in Headers */,
  1800. 2F5510B0217F5CC200F56C26 /* WFCUGroupMemberTableViewController.h in Headers */,
  1801. 1450EA852438922800BF51FC /* WFCUUserSectionKeySupport.h in Headers */,
  1802. 2F551100217F5CC200F56C26 /* CCHMapClusterControllerUtils.h in Headers */,
  1803. 2F9CE42021BFE63C005E1BE1 /* WFCUChannelProfileViewController.h in Headers */,
  1804. 2F55109E217F5CC200F56C26 /* WFCUFileCell.h in Headers */,
  1805. 2B07FBE1247562D90035C4DF /* WFCUReceiptViewController.h in Headers */,
  1806. 2F5510A5217F5CC200F56C26 /* WFCUCallSummaryCell.h in Headers */,
  1807. 2F5510AA217F5CC200F56C26 /* WFCUMessageModel.h in Headers */,
  1808. 2F55115E217F5CC200F56C26 /* SDWaitingView.h in Headers */,
  1809. 2F551160217F5CC200F56C26 /* SDBrowserImageView.h in Headers */,
  1810. 2F5510E4217F5CC200F56C26 /* WFCULocationPoint.h in Headers */,
  1811. 2F5511DE217F5CC300F56C26 /* TYAlertScaleFadeAnimation.h in Headers */,
  1812. 2B97D4892505C7BE00162A2B /* WFCUCardCell.h in Headers */,
  1813. 2F551164217F5CC200F56C26 /* AFNetworkReachabilityManager.h in Headers */,
  1814. 2F55110E217F5CC200F56C26 /* VideoPlayerSampleView.h in Headers */,
  1815. 2BDF57A124AD70C8003C1F08 /* DNImageFetchOperation.h in Headers */,
  1816. 2F3A6C1B219EE941009A8B4B /* WFCUFaceButton.h in Headers */,
  1817. 2F5511D4217F5CC300F56C26 /* TYBaseAnimation.h in Headers */,
  1818. 2F55110B217F5CC200F56C26 /* VideoPlayerSampleViewController.h in Headers */,
  1819. 2BD8D72524D69B5300281B81 /* WFCUGroupFilesViewController.h in Headers */,
  1820. 2F5510CB217F5CC200F56C26 /* WFCUChatInputBar.h in Headers */,
  1821. 2F551227217F5CC300F56C26 /* WFCUFriendRequestViewController.h in Headers */,
  1822. 2F551202217F5CC300F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.h in Headers */,
  1823. 2F551203217F5CC300F56C26 /* WFCUConversationTableViewCell.h in Headers */,
  1824. 2F551196217F5CC200F56C26 /* SDRefresh.h in Headers */,
  1825. 2F55120F217F5CC300F56C26 /* WFCUContactTableViewCell.h in Headers */,
  1826. 2F55120E217F5CC300F56C26 /* WFCUNewFriendTableViewCell.h in Headers */,
  1827. 2F55109B217F5CC200F56C26 /* WFCUMessageCell.h in Headers */,
  1828. 2F5511DB217F5CC300F56C26 /* UIView+TYAlertView.h in Headers */,
  1829. 2F551109217F5CC200F56C26 /* pinyin.h in Headers */,
  1830. 2F1439F5217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.h in Headers */,
  1831. 2F551191217F5CC200F56C26 /* SDRefreshView.h in Headers */,
  1832. 2F551201217F5CC300F56C26 /* WFCUConversationSettingViewController.h in Headers */,
  1833. 2F5510F5217F5CC200F56C26 /* CCHMapViewDelegateProxy.h in Headers */,
  1834. 2F5511D0217F5CC300F56C26 /* UIView+TYAutoLayout.h in Headers */,
  1835. 2F551169217F5CC200F56C26 /* AFURLResponseSerialization.h in Headers */,
  1836. 2BDF57BB24AD7257003C1F08 /* DNImagePicker.h in Headers */,
  1837. 2F551165217F5CC200F56C26 /* AFURLSessionManager.h in Headers */,
  1838. 2F36433721C13C5300904CAB /* WFCUChannelTableViewCell.h in Headers */,
  1839. 2F9CE41D21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.h in Headers */,
  1840. 149B3111241E65D500B935D3 /* UIColor+YH.h in Headers */,
  1841. 2F5510B9217F5CC200F56C26 /* WFCUGroupTableViewCell.h in Headers */,
  1842. 2F551152217F5CC200F56C26 /* KZVideoSupport.h in Headers */,
  1843. 2F55118E217F5CC200F56C26 /* MBProgressHUD.h in Headers */,
  1844. 2F535BFF25296E6600C9AF09 /* WFCUQuoteViewController.h in Headers */,
  1845. 2F5510EF217F5CC200F56C26 /* CCHMapClusterControllerDebugPolygon.h in Headers */,
  1846. 2BDF57AF24AD70C8003C1F08 /* DNTapDetectingImageView.h in Headers */,
  1847. 2F5510C5217F5CC200F56C26 /* WFCUFavGroupTableViewController.h in Headers */,
  1848. 2F55116C217F5CC200F56C26 /* AFNetworking.h in Headers */,
  1849. 2F550BE4217F4D7B00F56C26 /* WFChatUIKit.h in Headers */,
  1850. 2FE689A921AE9C0200DE54CC /* WFCUConversationSearchTableViewController.h in Headers */,
  1851. 2F5510BE217F5CC200F56C26 /* WFCUSearchViewController.h in Headers */,
  1852. 2F551197217F5CC200F56C26 /* SDRefreshHeaderView.h in Headers */,
  1853. 2F551104217F5CC200F56C26 /* CCHMapClusterAnnotation.h in Headers */,
  1854. 2F1EB5BB2499AA5E00FD3575 /* WFCUConferenceInviteViewController.h in Headers */,
  1855. 2BEF78A123F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.h in Headers */,
  1856. 2F5511D1217F5CC300F56C26 /* TYShowAlertView.h in Headers */,
  1857. 2F5511FC217F5CC300F56C26 /* WFCUConversationSettingMemberCell.h in Headers */,
  1858. 2F551226217F5CC300F56C26 /* WFCUFriendRequestTableViewCell.h in Headers */,
  1859. 2F5510FD217F5CC200F56C26 /* CCHMapClusterController.h in Headers */,
  1860. 2F551096217F5CC200F56C26 /* WFCUImageCell.h in Headers */,
  1861. 2F5510AF217F5CC200F56C26 /* WFCUInviteGroupMemberViewController.h in Headers */,
  1862. 2F5511EB217F5CC300F56C26 /* WFCUShareMessageView.h in Headers */,
  1863. 2B46D4DC24ACC9B900721792 /* MediaMessageGridViewCell.h in Headers */,
  1864. 2F5510B2217F5CC200F56C26 /* WFCUImagePreviewViewController.h in Headers */,
  1865. 2F5510EA217F5CC200F56C26 /* WFCUEmotionTextAttachment.h in Headers */,
  1866. 2F5510C8217F5CC200F56C26 /* WFCUPluginItemView.h in Headers */,
  1867. 2F5510CD217F5CC200F56C26 /* WFCUSelectedFileCollectionViewCell.h in Headers */,
  1868. 2BDF57A224AD70C8003C1F08 /* DNImagePickerController.h in Headers */,
  1869. 2F5511EE217F5CC300F56C26 /* UIImage+ERCategory.h in Headers */,
  1870. 2F56F6B42529EE0F00B829C4 /* WFCUCompositeMessageViewController.h in Headers */,
  1871. 2F551190217F5CC200F56C26 /* SDRefreshFooterView.h in Headers */,
  1872. 2F5511DA217F5CC300F56C26 /* TYAlertView.h in Headers */,
  1873. 2F551092217F5CC200F56C26 /* WFCULocationCell.h in Headers */,
  1874. 2F5511EF217F5CC300F56C26 /* AttributedLabel.h in Headers */,
  1875. 2F5511ED217F5CC300F56C26 /* TabbarButton.h in Headers */,
  1876. 2F5510CA217F5CC200F56C26 /* WFCUPluginBoardView.h in Headers */,
  1877. 2F5510FF217F5CC200F56C26 /* CCHMapTree.h in Headers */,
  1878. 2BEF78A323F6A84D000DE285 /* WFCUFloatingWindow.h in Headers */,
  1879. 2F5510A2217F5CC200F56C26 /* WFCUVoiceCell.h in Headers */,
  1880. 2F5EB43C22C2E21A00BC8C90 /* GroupManageTableViewController.h in Headers */,
  1881. 2F551210217F5CC300F56C26 /* WFCUContactSelectTableViewCell.h in Headers */,
  1882. 2BDF57A024AD70C8003C1F08 /* DNAlbumTableViewController.h in Headers */,
  1883. 2F5511E0217F5CC300F56C26 /* TYAlertFadeAnimation.h in Headers */,
  1884. 2F5EB44C22C2F36A00BC8C90 /* GroupMemberControlTableViewController.h in Headers */,
  1885. 2F5511E4217F5CC300F56C26 /* YLImageView.h in Headers */,
  1886. 2F551214217F5CC300F56C26 /* WFCUAddFriendViewController.h in Headers */,
  1887. 2F5511E9217F5CC300F56C26 /* WFCUForwardViewController.h in Headers */,
  1888. 1450EA8924389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.h in Headers */,
  1889. 2FD550EC2442AA0B00B3EE09 /* WFCURecallCell.h in Headers */,
  1890. 2F5511D7217F5CC300F56C26 /* TYAlertController.h in Headers */,
  1891. 2F1EB5B32499A21A00FD3575 /* WFCUConferenceViewController.h in Headers */,
  1892. 2F5510F4217F5CC200F56C26 /* CCHCenterOfMassMapClusterer.h in Headers */,
  1893. 2F5510F6217F5CC200F56C26 /* CCHMapAnimator.h in Headers */,
  1894. 2BDF57A424AD70C8003C1F08 /* DNImageFlowViewController.h in Headers */,
  1895. 2BEF78A023F6A84D000DE285 /* WFCUPortraitCollectionViewCell.h in Headers */,
  1896. 2F5511CF217F5CC300F56C26 /* TYAlertDropDownAnimation.h in Headers */,
  1897. 2F5510B7217F5CC200F56C26 /* WFCUGroupMemberTableViewCell.h in Headers */,
  1898. 2F5510F8217F5CC200F56C26 /* CCHFadeInOutMapAnimator.h in Headers */,
  1899. 2F5510CC217F5CC200F56C26 /* WFCUVoiceRecordView.h in Headers */,
  1900. 2BB4191624ED212200ABFEF1 /* WFCUUserMessageListViewController.h in Headers */,
  1901. 9029D0FE21C5D7930002EBAA /* WFCUCreateChannelViewController.h in Headers */,
  1902. 2F5EB44022C2E6BB00BC8C90 /* ManagerTableViewController.h in Headers */,
  1903. 2F55109C217F5CC200F56C26 /* WFCUStickerCell.h in Headers */,
  1904. 2F5511EC217F5CC300F56C26 /* WFCUForwardMessageCell.h in Headers */,
  1905. 2BDF579D24AD70C8003C1F08 /* UIView+DNImagePicker.h in Headers */,
  1906. 2F551150217F5CC200F56C26 /* KZVideoListViewController.h in Headers */,
  1907. 2F5510E9217F5CC200F56C26 /* WFCUSelectFileViewController.h in Headers */,
  1908. 2F55118F217F5CC200F56C26 /* UIView+SDExtension.h in Headers */,
  1909. 2BDF579624AD70C8003C1F08 /* DNAsset.h in Headers */,
  1910. 2F5510A4217F5CC200F56C26 /* WFCUInformationCell.h in Headers */,
  1911. 2F5511E3217F5CC300F56C26 /* YLGIFImage.h in Headers */,
  1912. 2F337EE6219EE1840086B0F3 /* WFCUTextCell.h in Headers */,
  1913. 2F5EB44422C2EE1900BC8C90 /* GroupMuteTableViewController.h in Headers */,
  1914. 2F5511FD217F5CC300F56C26 /* WFCUSwitchTableViewCell.h in Headers */,
  1915. 2F551101217F5CC200F56C26 /* CCHMapClusterOperation.h in Headers */,
  1916. 2FD550F62442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.h in Headers */,
  1917. 2FD2EE80218F15B500CBA8B0 /* WFCUVerifyRequestViewController.h in Headers */,
  1918. 2F5510C0217F5CC200F56C26 /* WFCUCreateGroupViewController.h in Headers */,
  1919. 2F55109D217F5CC200F56C26 /* WFCUMediaMessageCell.h in Headers */,
  1920. 2BDF579C24AD70C8003C1F08 /* UIColor+Hex.h in Headers */,
  1921. 2F5510FE217F5CC200F56C26 /* CCHMapClusterer.h in Headers */,
  1922. 2BDF57A324AD70C8003C1F08 /* DNPhotoBrowser.h in Headers */,
  1923. 2F5510F9217F5CC200F56C26 /* CCHNearCenterMapClusterer.h in Headers */,
  1924. 2F55119A217F5CC200F56C26 /* UITextView+Placeholder.h in Headers */,
  1925. 2BDF57B624AD70C8003C1F08 /* DNBadgeLabel.h in Headers */,
  1926. 2F551158217F5CC200F56C26 /* KZVideoPlayer.h in Headers */,
  1927. 2BDF579724AD70C8003C1F08 /* DNAlbum.h in Headers */,
  1928. 2F551098217F5CC200F56C26 /* WFCUMessageCellBase.h in Headers */,
  1929. 2BDF57B424AD70C8003C1F08 /* DNAssetsViewCell.h in Headers */,
  1930. 2F55115F217F5CC200F56C26 /* SDPhotoBrowser.h in Headers */,
  1931. 2BDF57AA24AD70C8003C1F08 /* DNUnAuthorizedTipsView.h in Headers */,
  1932. 2F5510FB217F5CC200F56C26 /* CCHMapClusterControllerDelegate.h in Headers */,
  1933. 2F5510FC217F5CC200F56C26 /* CCHMapTreeUtils.h in Headers */,
  1934. 2F341A53235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.h in Headers */,
  1935. 2F551163217F5CC200F56C26 /* AFSecurityPolicy.h in Headers */,
  1936. 2BEF78A923F6A84D000DE285 /* WFCUParticipantCollectionViewCell.h in Headers */,
  1937. 2BDF57B024AD70C8003C1F08 /* DNBrowserCell.h in Headers */,
  1938. 2F5511F2217F5CC300F56C26 /* UIView+Screenshot.h in Headers */,
  1939. 2F551162217F5CC200F56C26 /* KxMenu.h in Headers */,
  1940. 1450EA8D243960C600BF51FC /* WFCUSelectedUserTableViewCell.h in Headers */,
  1941. 2F5510E6217F5CC200F56C26 /* WFCULocationViewController.h in Headers */,
  1942. 2F55110F217F5CC200F56C26 /* FullScreenViewController.h in Headers */,
  1943. 14349FA624362A6600FE38B3 /* WFCUSeletedUserViewController.h in Headers */,
  1944. 2F55116F217F5CC200F56C26 /* AFHTTPSessionManager.h in Headers */,
  1945. 2F5510A8217F5CC200F56C26 /* WFCUVideoCell.h in Headers */,
  1946. 90414AFC21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.h in Headers */,
  1947. 2B46D4D824ACC64300721792 /* WFCUMediaMessageGridViewController.h in Headers */,
  1948. 2F55115A217F5CC200F56C26 /* SDPhotoBrowserConfig.h in Headers */,
  1949. 2F55110C217F5CC200F56C26 /* FullScreenView.h in Headers */,
  1950. );
  1951. runOnlyForDeploymentPostprocessing = 0;
  1952. };
  1953. /* End PBXHeadersBuildPhase section */
  1954. /* Begin PBXNativeTarget section */
  1955. 2F550BDE217F4D7B00F56C26 /* WFChatUIKit */ = {
  1956. isa = PBXNativeTarget;
  1957. buildConfigurationList = 2F550BE7217F4D7B00F56C26 /* Build configuration list for PBXNativeTarget "WFChatUIKit" */;
  1958. buildPhases = (
  1959. 2F550BDA217F4D7B00F56C26 /* Headers */,
  1960. 2F550BDB217F4D7B00F56C26 /* Sources */,
  1961. 2F550BDC217F4D7B00F56C26 /* Frameworks */,
  1962. 2F550BDD217F4D7B00F56C26 /* Resources */,
  1963. 2F550BF6217F502600F56C26 /* ShellScript */,
  1964. );
  1965. buildRules = (
  1966. );
  1967. dependencies = (
  1968. );
  1969. name = WFChatUIKit;
  1970. productName = WFChatUIKit;
  1971. productReference = 2F550BDF217F4D7B00F56C26 /* WFChatUIKit.framework */;
  1972. productType = "com.apple.product-type.framework";
  1973. };
  1974. /* End PBXNativeTarget section */
  1975. /* Begin PBXProject section */
  1976. 2F550BD6217F4D7B00F56C26 /* Project object */ = {
  1977. isa = PBXProject;
  1978. attributes = {
  1979. LastUpgradeCheck = 1000;
  1980. ORGANIZATIONNAME = "Tom Lee";
  1981. TargetAttributes = {
  1982. 2F550BDE217F4D7B00F56C26 = {
  1983. CreatedOnToolsVersion = 10.0;
  1984. };
  1985. };
  1986. };
  1987. buildConfigurationList = 2F550BD9217F4D7B00F56C26 /* Build configuration list for PBXProject "WFChatUIKit" */;
  1988. compatibilityVersion = "Xcode 9.3";
  1989. developmentRegion = en;
  1990. hasScannedForEncodings = 0;
  1991. knownRegions = (
  1992. en,
  1993. "zh-Hans",
  1994. );
  1995. mainGroup = 2F550BD5217F4D7B00F56C26;
  1996. productRefGroup = 2F550BE0217F4D7B00F56C26 /* Products */;
  1997. projectDirPath = "";
  1998. projectRoot = "";
  1999. targets = (
  2000. 2F550BDE217F4D7B00F56C26 /* WFChatUIKit */,
  2001. );
  2002. };
  2003. /* End PBXProject section */
  2004. /* Begin PBXResourcesBuildPhase section */
  2005. 2F550BDD217F4D7B00F56C26 /* Resources */ = {
  2006. isa = PBXResourcesBuildPhase;
  2007. buildActionMask = 2147483647;
  2008. files = (
  2009. 14349F62243392E300FE38B3 /* WFChatUIKit.xcassets in Resources */,
  2010. );
  2011. runOnlyForDeploymentPostprocessing = 0;
  2012. };
  2013. /* End PBXResourcesBuildPhase section */
  2014. /* Begin PBXShellScriptBuildPhase section */
  2015. 2F550BF6217F502600F56C26 /* ShellScript */ = {
  2016. isa = PBXShellScriptBuildPhase;
  2017. buildActionMask = 12;
  2018. files = (
  2019. );
  2020. inputFileListPaths = (
  2021. );
  2022. inputPaths = (
  2023. );
  2024. outputFileListPaths = (
  2025. );
  2026. outputPaths = (
  2027. );
  2028. runOnlyForDeploymentPostprocessing = 0;
  2029. shellPath = /bin/sh;
  2030. shellScript = "bash xcodescript.sh\n";
  2031. };
  2032. /* End PBXShellScriptBuildPhase section */
  2033. /* Begin PBXSourcesBuildPhase section */
  2034. 2F550BDB217F4D7B00F56C26 /* Sources */ = {
  2035. isa = PBXSourcesBuildPhase;
  2036. buildActionMask = 2147483647;
  2037. files = (
  2038. 2F551105217F5CC200F56C26 /* CCHMapViewDelegateProxy.m in Sources */,
  2039. 2F551224217F5CC300F56C26 /* WFCUMyPortraitViewController.m in Sources */,
  2040. 2F5511F9217F5CC300F56C26 /* UIView+Screenshot.m in Sources */,
  2041. 2F55116D217F5CC200F56C26 /* AFNetworkReachabilityManager.m in Sources */,
  2042. 2BDF57B324AD70C8003C1F08 /* DNAlbumCell.m in Sources */,
  2043. 2FA2165222F1667F00670211 /* WFCUBlackListViewController.m in Sources */,
  2044. 2F5510EB217F5CC200F56C26 /* WFCUSelectedFileCollectionViewCell.m in Sources */,
  2045. 2F5510EC217F5CC200F56C26 /* WFCUVoiceRecordView.m in Sources */,
  2046. 2F551127217F5CC200F56C26 /* VideoPlayerKit.m in Sources */,
  2047. 2BDF57AB24AD70C8003C1F08 /* DNAssetsViewCell.m in Sources */,
  2048. 14349FA724362A6600FE38B3 /* WFCUSeletedUserViewController.m in Sources */,
  2049. 2BDF57B224AD70C8003C1F08 /* DNUnAuthorizedTipsView.m in Sources */,
  2050. 2F551102217F5CC200F56C26 /* CCHNearCenterMapClusterer.m in Sources */,
  2051. 2F7381F72308F72F00213421 /* WFCUGroupMemberCollectionViewController.m in Sources */,
  2052. 2BB4191724ED212200ABFEF1 /* WFCUUserMessageListViewController.m in Sources */,
  2053. 2F5511D8217F5CC300F56C26 /* UIView+TYAutoLayout.m in Sources */,
  2054. 2F551099217F5CC200F56C26 /* WFCUTextCell.m in Sources */,
  2055. 2FE689A821AE9C0200DE54CC /* WFCUConversationSearchTableViewController.m in Sources */,
  2056. 2F9E85FF222B9D600076B82B /* QrCodeHelper.m in Sources */,
  2057. 2F5510B8217F5CC200F56C26 /* WFCUImagePreviewViewController.m in Sources */,
  2058. 2F5510C6217F5CC200F56C26 /* WFCUFavGroupTableViewController.m in Sources */,
  2059. 2BEF78A823F6A84D000DE285 /* WFCUFloatingWindow.m in Sources */,
  2060. 2BD8D72624D69B5400281B81 /* WFCUGroupFilesViewController.m in Sources */,
  2061. 149B3112241E65D500B935D3 /* UIFont+YH.m in Sources */,
  2062. 2FD550ED2442AA0B00B3EE09 /* WFCURecallCell.m in Sources */,
  2063. 2F5510A3217F5CC200F56C26 /* WFCUImageCell.m in Sources */,
  2064. 2BDF57B924AD70C8003C1F08 /* DNBrowserCell.m in Sources */,
  2065. 2F5510B5217F5CC200F56C26 /* WFCUBrowserViewController.m in Sources */,
  2066. 2F551199217F5CC200F56C26 /* UITextView+Placeholder.m in Sources */,
  2067. 2B07FBE2247562D90035C4DF /* WFCUReceiptViewController.m in Sources */,
  2068. 2F5510B6217F5CC200F56C26 /* WFCUProfileTableViewController.m in Sources */,
  2069. 2F551198217F5CC200F56C26 /* SDRefreshView.m in Sources */,
  2070. 2F551157217F5CC200F56C26 /* KZVideoSupport.m in Sources */,
  2071. 2F5EB44122C2E6BB00BC8C90 /* ManagerTableViewController.m in Sources */,
  2072. 1450EA922439679500BF51FC /* WFCUSelectedUserInfo.m in Sources */,
  2073. 2F5510F1217F5CC200F56C26 /* CCHMapClusterController.m in Sources */,
  2074. 2F551213217F5CC300F56C26 /* WFCUAddFriendViewController.m in Sources */,
  2075. 2F55110D217F5CC200F56C26 /* AirplayActiveView.m in Sources */,
  2076. 2F5511D3217F5CC300F56C26 /* TYAlertScaleFadeAnimation.m in Sources */,
  2077. 2F5511E2217F5CC300F56C26 /* YLImageView.m in Sources */,
  2078. 2B97D48A2505C7BE00162A2B /* WFCUCardCell.m in Sources */,
  2079. 2F55115B217F5CC200F56C26 /* SDPhotoBrowser.m in Sources */,
  2080. 2F5511E8217F5CC300F56C26 /* WFCUShareMessageView.m in Sources */,
  2081. 2F55121B217F5CC300F56C26 /* WFCUMessageNotificationViewController.m in Sources */,
  2082. 2B46D4D924ACC64300721792 /* WFCUMediaMessageGridViewController.m in Sources */,
  2083. 2F55120A217F5CC300F56C26 /* WFCUConversationTableViewController.m in Sources */,
  2084. 2F56F6A92529E43900B829C4 /* WFCUCompositeCell.m in Sources */,
  2085. 2F1EB5C42499AFF900FD3575 /* WFCUConferenceInviteCell.m in Sources */,
  2086. 2F551167217F5CC200F56C26 /* AFURLResponseSerialization.m in Sources */,
  2087. 2F551112217F5CC200F56C26 /* VideoPlayerSampleViewController.m in Sources */,
  2088. 2F551115217F5CC200F56C26 /* FullScreenView.m in Sources */,
  2089. 2F5510AE217F5CC200F56C26 /* WFCUGroupMemberTableViewCell.m in Sources */,
  2090. 2BEF789E23F6A84D000DE285 /* WFCUParticipantCollectionViewCell.m in Sources */,
  2091. 2F55116A217F5CC200F56C26 /* AFURLSessionManager.m in Sources */,
  2092. 2BDF57A824AD70C8003C1F08 /* DNImageFlowViewController.m in Sources */,
  2093. 2F5511D5217F5CC300F56C26 /* TYAlertFadeAnimation.m in Sources */,
  2094. 2BDF57A624AD70C8003C1F08 /* DNImagePickerController.m in Sources */,
  2095. 2F551195217F5CC200F56C26 /* SDRefreshFooterView.m in Sources */,
  2096. 2F5510E3217F5CC200F56C26 /* WFCUEmotionTextAttachment.m in Sources */,
  2097. 2F1EB5BC2499AA5E00FD3575 /* WFCUConferenceInviteViewController.m in Sources */,
  2098. 1450EA8A24389CA200BF51FC /* WFCUSeletedUserSearchResultViewController.m in Sources */,
  2099. 2F341A50235EF12B00F0D1B6 /* WFCUGroupAnnouncement.m in Sources */,
  2100. 1450EA862438922800BF51FC /* WFCUUserSectionKeySupport.m in Sources */,
  2101. 2F5510F2217F5CC200F56C26 /* CCHMapClusterControllerUtils.m in Sources */,
  2102. 2F55109A217F5CC200F56C26 /* WFCUVideoCell.m in Sources */,
  2103. 2F5510ED217F5CC200F56C26 /* WFCULocationPoint.m in Sources */,
  2104. 2BDF57B824AD70C8003C1F08 /* DNSendButton.m in Sources */,
  2105. 2F535C0025296E6600C9AF09 /* WFCUQuoteViewController.m in Sources */,
  2106. 2BD671A52336E821007A9FEC /* WFCUConfigManager.m in Sources */,
  2107. 2F551205217F5CC300F56C26 /* WFCUConversationTableViewCell.m in Sources */,
  2108. 2BDF57A924AD70C8003C1F08 /* DNImageFetchOperation.m in Sources */,
  2109. 2F5EB43D22C2E21A00BC8C90 /* GroupManageTableViewController.m in Sources */,
  2110. 2F55109F217F5CC200F56C26 /* WFCULocationCell.m in Sources */,
  2111. 2F5511E1217F5CC300F56C26 /* YLGIFImage.m in Sources */,
  2112. 2F5511F4217F5CC300F56C26 /* AttributedLabel.m in Sources */,
  2113. 2BEF78A223F6A84D000DE285 /* WFCUMultiVideoViewController.m in Sources */,
  2114. 2F551156217F5CC200F56C26 /* KZVideoListViewController.m in Sources */,
  2115. 2F551154217F5CC200F56C26 /* KZVideoViewController.m in Sources */,
  2116. 2F5EB44D22C2F36A00BC8C90 /* GroupMemberControlTableViewController.m in Sources */,
  2117. 2F55120B217F5CC300F56C26 /* WFCUNewFriendTableViewCell.m in Sources */,
  2118. 2BDF57A524AD70C8003C1F08 /* DNAlbumTableViewController.m in Sources */,
  2119. 2F5510B3217F5CC200F56C26 /* WFCUSearchViewController.m in Sources */,
  2120. 2F551097217F5CC200F56C26 /* WFCUVoiceCell.m in Sources */,
  2121. 2F551091217F5CC200F56C26 /* WFCUMediaMessageCell.m in Sources */,
  2122. 2F5511FA217F5CC300F56C26 /* UIView+Toast.m in Sources */,
  2123. 2BEF78A723F6A84D000DE285 /* WFCUVideoViewController.m in Sources */,
  2124. 2B46D4DD24ACC9B900721792 /* MediaMessageGridViewCell.m in Sources */,
  2125. 2F5510AB217F5CC200F56C26 /* WFCUMessageListViewController.m in Sources */,
  2126. 2F551126217F5CC200F56C26 /* VideoPlayerView.m in Sources */,
  2127. 2BDF579F24AD70C8003C1F08 /* DNImagePickerHelper.m in Sources */,
  2128. 2F5511F6217F5CC300F56C26 /* TabbarButton.m in Sources */,
  2129. 2F5510BB217F5CC200F56C26 /* WFCUInviteGroupMemberViewController.m in Sources */,
  2130. 2F1EB5B22499A21A00FD3575 /* WFCUConferenceViewController.m in Sources */,
  2131. 2F551228217F5CC300F56C26 /* WFCUFriendRequestViewController.m in Sources */,
  2132. 2F5511D9217F5CC300F56C26 /* TYAlertDropDownAnimation.m in Sources */,
  2133. 2F5EB44522C2EE1900BC8C90 /* GroupMuteTableViewController.m in Sources */,
  2134. 2F55116B217F5CC200F56C26 /* AFURLRequestSerialization.m in Sources */,
  2135. 2BEF78A523F6A84D000DE285 /* WFCUPortraitCollectionViewCell.m in Sources */,
  2136. 2BDF57AD24AD70C8003C1F08 /* DNFullImageButton.m in Sources */,
  2137. 2BDF579A24AD70C8003C1F08 /* UIView+DNImagePicker.m in Sources */,
  2138. 149B3110241E65D500B935D3 /* UIColor+YH.m in Sources */,
  2139. 2F9CE42121BFE63C005E1BE1 /* WFCUChannelProfileViewController.m in Sources */,
  2140. 2F5511F8217F5CC300F56C26 /* UITabBar+badge.m in Sources */,
  2141. 2F5511F5217F5CC300F56C26 /* UIImage+ERCategory.m in Sources */,
  2142. 2F551192217F5CC200F56C26 /* SDRefreshHeaderView.m in Sources */,
  2143. 2F1EB5B82499A30500FD3575 /* WFCUCreateConferenceViewController.m in Sources */,
  2144. 2F551113217F5CC200F56C26 /* VideoPlayerSampleView.m in Sources */,
  2145. 2F5EB44922C2EEFC00BC8C90 /* WFCUGeneralSwitchTableViewCell.m in Sources */,
  2146. 2F9CE41C21BFE5D9005E1BE1 /* WFCUSearchChannelViewController.m in Sources */,
  2147. 2F5510B4217F5CC200F56C26 /* WFCUGeneralModifyViewController.m in Sources */,
  2148. 2BDF579924AD70C8003C1F08 /* UIColor+Hex.m in Sources */,
  2149. 2F5510A1217F5CC200F56C26 /* WFCUMessageCellBase.m in Sources */,
  2150. 2F551106217F5CC200F56C26 /* CCHCenterOfMassMapClusterer.m in Sources */,
  2151. 2F551153217F5CC200F56C26 /* KZVideoPlayer.m in Sources */,
  2152. 2F551225217F5CC300F56C26 /* WFCUFriendRequestTableViewCell.m in Sources */,
  2153. 2F56F6B52529EE0F00B829C4 /* WFCUCompositeMessageViewController.m in Sources */,
  2154. 2F5510FA217F5CC200F56C26 /* CCHMapClusterControllerDebugPolygon.m in Sources */,
  2155. 2F551094217F5CC200F56C26 /* WFCUCallSummaryCell.m in Sources */,
  2156. 2F5510EE217F5CC200F56C26 /* CCHMapTreeUtils.m in Sources */,
  2157. 2F5510A9217F5CC200F56C26 /* WFCUMessageModel.m in Sources */,
  2158. 2F551194217F5CC200F56C26 /* UIView+SDExtension.m in Sources */,
  2159. 2F5510BA217F5CC200F56C26 /* WFCUGroupMemberTableViewController.m in Sources */,
  2160. 2F3A6C1D219EE941009A8B4B /* WFCUStickerItem.m in Sources */,
  2161. 2BDF579524AD70C8003C1F08 /* DNAsset.m in Sources */,
  2162. 2BDF57A724AD70C8003C1F08 /* DNPhotoBrowser.m in Sources */,
  2163. 2F5511DD217F5CC300F56C26 /* TYBaseAnimation.m in Sources */,
  2164. 2B15F1B82509E285007022BC /* WFCUGroupInfoViewController.m in Sources */,
  2165. 2F5510A6217F5CC200F56C26 /* WFCUStickerCell.m in Sources */,
  2166. 2F551103217F5CC200F56C26 /* CCHFadeInOutMapAnimator.m in Sources */,
  2167. 2F551168217F5CC200F56C26 /* AFHTTPSessionManager.m in Sources */,
  2168. 2BDF57B524AD70C8003C1F08 /* DNTapDetectingImageView.m in Sources */,
  2169. 2F5510A7217F5CC200F56C26 /* WFCUMessageCell.m in Sources */,
  2170. 2F5510F0217F5CC200F56C26 /* CCHMapTree.m in Sources */,
  2171. 2F551161217F5CC200F56C26 /* KxMenu.m in Sources */,
  2172. 2F551124217F5CC200F56C26 /* FullScreenViewController.m in Sources */,
  2173. 2F5510E5217F5CC200F56C26 /* WFCUPluginItemView.m in Sources */,
  2174. 2F1439F6217F5DAA00B3E38A /* WFCUSearchGroupTableViewCell.m in Sources */,
  2175. 2F55122B217F5CC300F56C26 /* WFCUMediaMessageDownloader.m in Sources */,
  2176. 2F5510E8217F5CC200F56C26 /* WFCUPluginBoardView.m in Sources */,
  2177. 2F55115D217F5CC200F56C26 /* SDBrowserImageView.m in Sources */,
  2178. 2F551095217F5CC200F56C26 /* WFCUInformationCell.m in Sources */,
  2179. 2FD2EE81218F15B500CBA8B0 /* WFCUVerifyRequestViewController.m in Sources */,
  2180. 2F55118D217F5CC200F56C26 /* MBProgressHUD.m in Sources */,
  2181. 2F55122C217F5CC300F56C26 /* WFCUUtilities.m in Sources */,
  2182. 2F5511CE217F5CC300F56C26 /* TYAlertView.m in Sources */,
  2183. 2FD550F72442AA5800B3EE09 /* UILabel+YBAttributeTextTapAction.m in Sources */,
  2184. 2F36433421C136C400904CAB /* WFCUFavChannelTableViewController.m in Sources */,
  2185. 2F551220217F5CC300F56C26 /* WFCUMyProfileTableViewController.m in Sources */,
  2186. 1450EA81243872E500BF51FC /* WFCUSelectedUserCollectionViewCell.m in Sources */,
  2187. 2F5510C9217F5CC200F56C26 /* WFCUSelectFileViewController.m in Sources */,
  2188. 2BEF78A423F6A84D000DE285 /* WFCUParticipantCollectionViewLayout.m in Sources */,
  2189. 2F55120C217F5CC300F56C26 /* WFCUContactTableViewCell.m in Sources */,
  2190. 2F5511FF217F5CC300F56C26 /* WFCUConversationSettingMemberCollectionViewLayout.m in Sources */,
  2191. 2F55116E217F5CC200F56C26 /* AFSecurityPolicy.m in Sources */,
  2192. 2F55120D217F5CC300F56C26 /* WFCUContactSelectTableViewCell.m in Sources */,
  2193. 2BDF579424AD70C8003C1F08 /* DNAlbum.m in Sources */,
  2194. 2F3A6C1A219EE941009A8B4B /* WFCUFaceButton.m in Sources */,
  2195. 1450EA8E243960C600BF51FC /* WFCUSelectedUserTableViewCell.m in Sources */,
  2196. 2F5510E7217F5CC200F56C26 /* WFCUChatInputBar.m in Sources */,
  2197. 2F341A54235EF30B00F0D1B6 /* WFCUGroupAnnouncementViewController.m in Sources */,
  2198. 2F551212217F5CC300F56C26 /* WFCUContactListViewController.m in Sources */,
  2199. 2F5511D6217F5CC300F56C26 /* TYAlertController+TransitionAnimate.m in Sources */,
  2200. 2F5511D2217F5CC300F56C26 /* UIView+TYAlertView.m in Sources */,
  2201. 2F5511E7217F5CC300F56C26 /* WFCUForwardMessageCell.m in Sources */,
  2202. 2F5510C7217F5CC200F56C26 /* WFCULocationViewController.m in Sources */,
  2203. 2F5511DC217F5CC300F56C26 /* TYShowAlertView.m in Sources */,
  2204. 2F55110A217F5CC200F56C26 /* pinyin.c in Sources */,
  2205. 2F5511FE217F5CC300F56C26 /* WFCUConversationSettingMemberCell.m in Sources */,
  2206. 90414AFD21AF5A93008EF915 /* WFCUConversationSearchTableViewCell.m in Sources */,
  2207. 2F551093217F5CC200F56C26 /* WFCUFileCell.m in Sources */,
  2208. 2F5510BF217F5CC200F56C26 /* WFCUCreateGroupViewController.m in Sources */,
  2209. 2F3A6C18219EE941009A8B4B /* WFCUFaceBoard.m in Sources */,
  2210. 9029D0FF21C5D7930002EBAA /* WFCUCreateChannelViewController.m in Sources */,
  2211. 2F55121C217F5CC300F56C26 /* WFCUModifyMyProfileViewController.m in Sources */,
  2212. 2F5510F7217F5CC200F56C26 /* CCHMapClusterAnnotation.m in Sources */,
  2213. 2F5511E6217F5CC300F56C26 /* WFCUForwardViewController.m in Sources */,
  2214. 2B63367E24716864008D6B38 /* ZCCCircleProgressView.m in Sources */,
  2215. 2F5511FB217F5CC300F56C26 /* WFCUSwitchTableViewCell.m in Sources */,
  2216. 2BDF57AE24AD70C8003C1F08 /* DNBadgeLabel.m in Sources */,
  2217. 2F5511DF217F5CC300F56C26 /* TYAlertController.m in Sources */,
  2218. 2F551200217F5CC300F56C26 /* WFCUConversationSettingViewController.m in Sources */,
  2219. 2F5510B1217F5CC200F56C26 /* WFCUGroupTableViewCell.m in Sources */,
  2220. 2F55115C217F5CC200F56C26 /* SDWaitingView.m in Sources */,
  2221. 2F36433821C13C5300904CAB /* WFCUChannelTableViewCell.m in Sources */,
  2222. 2F551151217F5CC200F56C26 /* KZVideoConfig.m in Sources */,
  2223. 2FF70EAD2402101000946D2D /* WFCUWaitingAnimationView.m in Sources */,
  2224. 2F5510F3217F5CC200F56C26 /* CCHMapClusterOperation.m in Sources */,
  2225. 2F5511F0217F5CC300F56C26 /* BubbleTipView.m in Sources */,
  2226. );
  2227. runOnlyForDeploymentPostprocessing = 0;
  2228. };
  2229. /* End PBXSourcesBuildPhase section */
  2230. /* Begin PBXVariantGroup section */
  2231. 2BCEC52E232E10DF00D55E0D /* wfc.strings */ = {
  2232. isa = PBXVariantGroup;
  2233. children = (
  2234. 2BCEC52D232E10DF00D55E0D /* en */,
  2235. 2BCEC52F232E10E900D55E0D /* zh-Hans */,
  2236. );
  2237. name = wfc.strings;
  2238. sourceTree = "<group>";
  2239. };
  2240. /* End PBXVariantGroup section */
  2241. /* Begin XCBuildConfiguration section */
  2242. 2F550BE5217F4D7B00F56C26 /* Debug */ = {
  2243. isa = XCBuildConfiguration;
  2244. buildSettings = {
  2245. ALWAYS_SEARCH_USER_PATHS = NO;
  2246. CLANG_ANALYZER_NONNULL = YES;
  2247. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2248. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2249. CLANG_CXX_LIBRARY = "libc++";
  2250. CLANG_ENABLE_MODULES = YES;
  2251. CLANG_ENABLE_OBJC_ARC = YES;
  2252. CLANG_ENABLE_OBJC_WEAK = YES;
  2253. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2254. CLANG_WARN_BOOL_CONVERSION = YES;
  2255. CLANG_WARN_COMMA = YES;
  2256. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2257. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2258. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2259. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2260. CLANG_WARN_EMPTY_BODY = YES;
  2261. CLANG_WARN_ENUM_CONVERSION = YES;
  2262. CLANG_WARN_INFINITE_RECURSION = YES;
  2263. CLANG_WARN_INT_CONVERSION = YES;
  2264. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2265. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2266. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2267. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2268. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2269. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2270. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2271. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2272. CLANG_WARN_UNREACHABLE_CODE = YES;
  2273. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2274. CODE_SIGN_IDENTITY = "iPhone Developer";
  2275. COPY_PHASE_STRIP = NO;
  2276. CURRENT_PROJECT_VERSION = 1;
  2277. DEBUG_INFORMATION_FORMAT = dwarf;
  2278. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2279. ENABLE_TESTABILITY = YES;
  2280. GCC_C_LANGUAGE_STANDARD = gnu11;
  2281. GCC_DYNAMIC_NO_PIC = NO;
  2282. GCC_NO_COMMON_BLOCKS = YES;
  2283. GCC_OPTIMIZATION_LEVEL = 0;
  2284. GCC_PREPROCESSOR_DEFINITIONS = (
  2285. "DEBUG=1",
  2286. "$(inherited)",
  2287. );
  2288. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2289. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2290. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2291. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2292. GCC_WARN_UNUSED_FUNCTION = YES;
  2293. GCC_WARN_UNUSED_VARIABLE = YES;
  2294. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2295. MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
  2296. MTL_FAST_MATH = YES;
  2297. ONLY_ACTIVE_ARCH = YES;
  2298. SDKROOT = iphoneos;
  2299. VERSIONING_SYSTEM = "apple-generic";
  2300. VERSION_INFO_PREFIX = "";
  2301. };
  2302. name = Debug;
  2303. };
  2304. 2F550BE6217F4D7B00F56C26 /* Release */ = {
  2305. isa = XCBuildConfiguration;
  2306. buildSettings = {
  2307. ALWAYS_SEARCH_USER_PATHS = NO;
  2308. CLANG_ANALYZER_NONNULL = YES;
  2309. CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
  2310. CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
  2311. CLANG_CXX_LIBRARY = "libc++";
  2312. CLANG_ENABLE_MODULES = YES;
  2313. CLANG_ENABLE_OBJC_ARC = YES;
  2314. CLANG_ENABLE_OBJC_WEAK = YES;
  2315. CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
  2316. CLANG_WARN_BOOL_CONVERSION = YES;
  2317. CLANG_WARN_COMMA = YES;
  2318. CLANG_WARN_CONSTANT_CONVERSION = YES;
  2319. CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
  2320. CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
  2321. CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
  2322. CLANG_WARN_EMPTY_BODY = YES;
  2323. CLANG_WARN_ENUM_CONVERSION = YES;
  2324. CLANG_WARN_INFINITE_RECURSION = YES;
  2325. CLANG_WARN_INT_CONVERSION = YES;
  2326. CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
  2327. CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
  2328. CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
  2329. CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
  2330. CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
  2331. CLANG_WARN_STRICT_PROTOTYPES = YES;
  2332. CLANG_WARN_SUSPICIOUS_MOVE = YES;
  2333. CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
  2334. CLANG_WARN_UNREACHABLE_CODE = YES;
  2335. CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
  2336. CODE_SIGN_IDENTITY = "iPhone Developer";
  2337. COPY_PHASE_STRIP = NO;
  2338. CURRENT_PROJECT_VERSION = 1;
  2339. DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
  2340. ENABLE_NS_ASSERTIONS = NO;
  2341. ENABLE_STRICT_OBJC_MSGSEND = YES;
  2342. GCC_C_LANGUAGE_STANDARD = gnu11;
  2343. GCC_NO_COMMON_BLOCKS = YES;
  2344. GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
  2345. GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
  2346. GCC_WARN_UNDECLARED_SELECTOR = YES;
  2347. GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
  2348. GCC_WARN_UNUSED_FUNCTION = YES;
  2349. GCC_WARN_UNUSED_VARIABLE = YES;
  2350. IPHONEOS_DEPLOYMENT_TARGET = 9.0;
  2351. MTL_ENABLE_DEBUG_INFO = NO;
  2352. MTL_FAST_MATH = YES;
  2353. SDKROOT = iphoneos;
  2354. VALIDATE_PRODUCT = YES;
  2355. VERSIONING_SYSTEM = "apple-generic";
  2356. VERSION_INFO_PREFIX = "";
  2357. };
  2358. name = Release;
  2359. };
  2360. 2F550BE8217F4D7B00F56C26 /* Debug */ = {
  2361. isa = XCBuildConfiguration;
  2362. buildSettings = {
  2363. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  2364. CODE_SIGN_IDENTITY = "";
  2365. CODE_SIGN_STYLE = Automatic;
  2366. DEFINES_MODULE = YES;
  2367. DEVELOPMENT_TEAM = "";
  2368. DYLIB_COMPATIBILITY_VERSION = 1;
  2369. DYLIB_CURRENT_VERSION = 1;
  2370. DYLIB_INSTALL_NAME_BASE = "@rpath";
  2371. ENABLE_BITCODE = NO;
  2372. FRAMEWORK_SEARCH_PATHS = (
  2373. "$(inherited)",
  2374. "$(PROJECT_DIR)/Frameworks",
  2375. "$(PROJECT_DIR)/Frameworks/GoogleWebRTC/Frameworks/frameworks",
  2376. "$(PROJECT_DIR)/WFChatUIKit/AVEngine/GoogleWebRTC/Frameworks/frameworks",
  2377. "$(PROJECT_DIR)/WFChatUIKit/AVEngine",
  2378. "$(PROJECT_DIR)/WFChatUIKit/Vendor/SDWebImage",
  2379. );
  2380. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2381. GCC_PREFIX_HEADER = "$(SRCROOT)/WFChatUIKit/Predefine.h";
  2382. INFOPLIST_FILE = WFChatUIKit/Info.plist;
  2383. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2384. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2385. LD_RUNPATH_SEARCH_PATHS = (
  2386. "$(inherited)",
  2387. "@executable_path/Frameworks",
  2388. "@loader_path/Frameworks",
  2389. );
  2390. OTHER_LDFLAGS = "-ObjC";
  2391. PRODUCT_BUNDLE_IDENTIFIER = cn.wildfirechat.WFChatUIKit;
  2392. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  2393. SKIP_INSTALL = YES;
  2394. TARGETED_DEVICE_FAMILY = "1,2";
  2395. };
  2396. name = Debug;
  2397. };
  2398. 2F550BE9217F4D7B00F56C26 /* Release */ = {
  2399. isa = XCBuildConfiguration;
  2400. buildSettings = {
  2401. CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
  2402. CODE_SIGN_IDENTITY = "";
  2403. CODE_SIGN_STYLE = Automatic;
  2404. DEFINES_MODULE = YES;
  2405. DEVELOPMENT_TEAM = "";
  2406. DYLIB_COMPATIBILITY_VERSION = 1;
  2407. DYLIB_CURRENT_VERSION = 1;
  2408. DYLIB_INSTALL_NAME_BASE = "@rpath";
  2409. ENABLE_BITCODE = NO;
  2410. FRAMEWORK_SEARCH_PATHS = (
  2411. "$(inherited)",
  2412. "$(PROJECT_DIR)/Frameworks",
  2413. "$(PROJECT_DIR)/Frameworks/GoogleWebRTC/Frameworks/frameworks",
  2414. "$(PROJECT_DIR)/WFChatUIKit/AVEngine/GoogleWebRTC/Frameworks/frameworks",
  2415. "$(PROJECT_DIR)/WFChatUIKit/AVEngine",
  2416. "$(PROJECT_DIR)/WFChatUIKit/Vendor/SDWebImage",
  2417. );
  2418. GCC_PRECOMPILE_PREFIX_HEADER = YES;
  2419. GCC_PREFIX_HEADER = "$(SRCROOT)/WFChatUIKit/Predefine.h";
  2420. INFOPLIST_FILE = WFChatUIKit/Info.plist;
  2421. INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
  2422. IPHONEOS_DEPLOYMENT_TARGET = 8.0;
  2423. LD_RUNPATH_SEARCH_PATHS = (
  2424. "$(inherited)",
  2425. "@executable_path/Frameworks",
  2426. "@loader_path/Frameworks",
  2427. );
  2428. OTHER_LDFLAGS = "-ObjC";
  2429. PRODUCT_BUNDLE_IDENTIFIER = cn.wildfirechat.WFChatUIKit;
  2430. PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
  2431. SKIP_INSTALL = YES;
  2432. TARGETED_DEVICE_FAMILY = "1,2";
  2433. };
  2434. name = Release;
  2435. };
  2436. /* End XCBuildConfiguration section */
  2437. /* Begin XCConfigurationList section */
  2438. 2F550BD9217F4D7B00F56C26 /* Build configuration list for PBXProject "WFChatUIKit" */ = {
  2439. isa = XCConfigurationList;
  2440. buildConfigurations = (
  2441. 2F550BE5217F4D7B00F56C26 /* Debug */,
  2442. 2F550BE6217F4D7B00F56C26 /* Release */,
  2443. );
  2444. defaultConfigurationIsVisible = 0;
  2445. defaultConfigurationName = Release;
  2446. };
  2447. 2F550BE7217F4D7B00F56C26 /* Build configuration list for PBXNativeTarget "WFChatUIKit" */ = {
  2448. isa = XCConfigurationList;
  2449. buildConfigurations = (
  2450. 2F550BE8217F4D7B00F56C26 /* Debug */,
  2451. 2F550BE9217F4D7B00F56C26 /* Release */,
  2452. );
  2453. defaultConfigurationIsVisible = 0;
  2454. defaultConfigurationName = Release;
  2455. };
  2456. /* End XCConfigurationList section */
  2457. };
  2458. rootObject = 2F550BD6217F4D7B00F56C26 /* Project object */;
  2459. }