├── LICENSE ├── Podfile ├── README.md ├── WWeChat.png ├── WWeChat.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── WzxJiang.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── WzxJiang.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── WWeChat.xcscheme │ └── xcschememanagement.plist └── WWeChat ├── AppDelegate ├── AppDelegate.h ├── AppDelegate.m ├── ThridPartService.h └── ThridPartService.m ├── Base ├── BaseViewController.h └── BaseViewController.m ├── Category ├── UIColor │ ├── UIColor+Extension.h │ └── UIColor+Extension.m └── UIView │ ├── UIView+Extension.h │ └── UIView+Extension.m ├── Functions └── KeyChain │ ├── KeyChain.h │ └── KeyChain.m ├── Macros ├── WDMacro.h ├── WDUtilMethod.h ├── WDUtilMethod.m └── WZXConfig.h ├── Sections ├── Address │ ├── Control │ │ ├── AddressViewController.h │ │ └── AddressViewController.m │ ├── Model │ │ ├── AddressBookModel.h │ │ └── AddressBookModel.m │ └── View │ │ ├── AddressBookCell.h │ │ ├── AddressBookCell.m │ │ ├── AddressCell.h │ │ └── AddressCell.m ├── Chat │ ├── Control │ │ ├── ChatBoxViewController.h │ │ ├── ChatBoxViewController.m │ │ ├── ChatDetailViewController.h │ │ ├── ChatDetailViewController.m │ │ ├── ChatViewController.h │ │ ├── ChatViewController.m │ │ ├── SearchViewController.h │ │ └── SearchViewController.m │ ├── Model │ │ ├── ConversationModel.h │ │ ├── ConversationModel.m │ │ ├── MessageModel.h │ │ └── MessageModel.m │ └── View │ │ ├── ChatCell.h │ │ ├── ChatCell.m │ │ ├── ConversationCell.h │ │ ├── ConversationCell.m │ │ ├── SearchCell.h │ │ ├── SearchCell.m │ │ ├── WZXSearchBar.h │ │ └── WZXSearchBar.m ├── Found │ └── Control │ │ ├── FoundViewController.h │ │ └── FoundViewController.m ├── Root │ ├── Control │ │ ├── LoginViewController.h │ │ ├── LoginViewController.m │ │ ├── RegisterViewController.h │ │ ├── RegisterViewController.m │ │ ├── RootViewController.h │ │ ├── RootViewController.m │ │ ├── TabBarController.h │ │ └── TabBarController.m │ └── View │ │ ├── LoginContentView.h │ │ ├── LoginContentView.m │ │ ├── RegisterContentView.h │ │ └── RegisterContentView.m └── Setting │ ├── Control │ ├── SettingViewController.h │ └── SettingViewController.m │ └── View │ ├── MeCell.h │ └── MeCell.m ├── Support File ├── Assets.xcassets │ ├── AddressBook │ │ ├── Contact_icon_ContactTag.imageset │ │ │ ├── Contact_icon_ContactTag@2x.png │ │ │ ├── Contact_icon_ContactTag@3x.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── add_friend_icon_addgroup.imageset │ │ │ ├── Contents.json │ │ │ ├── add_friend_icon_addgroup@2x.png │ │ │ └── add_friend_icon_addgroup@3x.png │ │ ├── add_friend_icon_offical.imageset │ │ │ ├── Contents.json │ │ │ ├── add_friend_icon_offical@2x.png │ │ │ └── add_friend_icon_offical@3x.png │ │ └── plugins_FriendNotify.imageset │ │ │ ├── Contents.json │ │ │ ├── plugins_FriendNotify@2x.png │ │ │ └── plugins_FriendNotify@3x.png │ ├── Album_ToolViewEmotion.imageset │ │ ├── Album_ToolViewEmotion@2x.png │ │ └── Contents.json │ ├── Album_ToolViewEmotionHL.imageset │ │ ├── Album_ToolViewEmotionHL@2x.png │ │ └── Contents.json │ ├── Album_ToolViewKeyboard.imageset │ │ ├── Album_ToolViewKeyboard@2x.png │ │ └── Contents.json │ ├── Album_ToolViewKeyboardHL.imageset │ │ ├── Album_ToolViewKeyboardHL@2x.png │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ ├── AppIcon60x60@3x-1.png │ │ ├── AppIcon60x60@3x-2.png │ │ ├── AppIcon60x60@3x-3.png │ │ ├── AppIcon60x60@3x.png │ │ └── Contents.json │ ├── Contents.json │ ├── Found │ │ ├── Contents.json │ │ ├── found_game.imageset │ │ │ ├── Contents.json │ │ │ └── found_game@2x.png │ │ ├── found_nearby.imageset │ │ │ ├── Contents.json │ │ │ └── found_nearby@2x.png │ │ ├── found_quan.imageset │ │ │ ├── Contents.json │ │ │ └── found_quan@2x.png │ │ ├── found_saoyisao.imageset │ │ │ ├── Contents.json │ │ │ └── found_saoyisao@2x.png │ │ ├── found_shop.imageset │ │ │ ├── Contents.json │ │ │ └── found_shop@2x.png │ │ └── found_yao.imageset │ │ │ ├── Contents.json │ │ │ └── found_yao@2x.png │ ├── Launch4.imageset │ │ ├── Contents.json │ │ └── Launch4.png │ ├── Launch5.imageset │ │ ├── Contents.json │ │ └── Launch5.png │ ├── Launch6.imageset │ │ ├── Contents.json │ │ └── Launch6.png │ ├── Launch6p.imageset │ │ ├── Contents.json │ │ └── Launch6p.png │ ├── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── LaunchImage-700-568h@2x.png │ │ ├── LaunchImage-800-667h@2x.png │ │ ├── LaunchImage-800-Portrait-736h@3x.png │ │ └── LaunchImage@2x.png │ ├── ReceiverTextNodeBkg.imageset │ │ ├── Contents.json │ │ ├── ReceiverTextNodeBkg@2x.png │ │ └── ReceiverTextNodeBkg@3x.png │ ├── ReceiverTextNodeBkgHL.imageset │ │ ├── Contents.json │ │ ├── ReceiverTextNodeBkgHL@2x.png │ │ └── ReceiverTextNodeBkgHL@3x.png │ ├── SenderTextNodeBkg.imageset │ │ ├── Contents.json │ │ ├── SenderTextNodeBkg@2x.png │ │ └── SenderTextNodeBkg@3x.png │ ├── SenderTextNodeBkgHL.imageset │ │ ├── Contents.json │ │ ├── SenderTextNodeBkgHL@2x.png │ │ └── SenderTextNodeBkgHL@3x.png │ ├── Setting │ │ ├── Contents.json │ │ ├── MoreExpressionShops.imageset │ │ │ ├── Contents.json │ │ │ └── MoreExpressionShops@3x.png │ │ ├── me_collect.imageset │ │ │ ├── Contents.json │ │ │ └── me_collect@2x.png │ │ ├── me_money.imageset │ │ │ ├── Contents.json │ │ │ └── me_money@2x.png │ │ ├── me_photo.imageset │ │ │ ├── Contents.json │ │ │ └── me_photo@2x.png │ │ ├── me_setting.imageset │ │ │ ├── Contents.json │ │ │ └── me_setting@2x.png │ │ └── setting_myQR.imageset │ │ │ ├── Contents.json │ │ │ └── setting_myQR@2x.png │ ├── Tabbar │ │ ├── Contents.json │ │ ├── tabbar_contacts.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_contacts@2x.png │ │ │ └── tabbar_contacts@3x.png │ │ ├── tabbar_contactsHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_contactsHL@2x.png │ │ │ └── tabbar_contactsHL@3x.png │ │ ├── tabbar_discover.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_discover@2x.png │ │ │ └── tabbar_discover@3x.png │ │ ├── tabbar_discoverHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_discoverHL@2x.png │ │ │ └── tabbar_discoverHL@3x.png │ │ ├── tabbar_mainframe.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_mainframe@2x.png │ │ │ └── tabbar_mainframe@3x.png │ │ ├── tabbar_mainframeHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_mainframeHL@2x.png │ │ │ └── tabbar_mainframeHL@3x.png │ │ ├── tabbar_me.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_me@2x.png │ │ │ └── tabbar_me@3x.png │ │ └── tabbar_meHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_meHL@2x.png │ │ │ └── tabbar_meHL@3x.png │ ├── barbuttonicon_more.imageset │ │ ├── Contents.json │ │ ├── barbuttonicon_more.png │ │ ├── barbuttonicon_more@2x.png │ │ └── barbuttonicon_more@3x.png │ ├── chat_setmode_add_btn_normal.imageset │ │ ├── Contents.json │ │ └── chat_setmode_add_btn_normal@2x.png │ ├── chat_setmode_voice_btn_normal.imageset │ │ ├── Contents.json │ │ └── chat_setmode_voice_btn_normal@2x.png │ ├── default_avater.imageset │ │ ├── Contents.json │ │ └── default_avater.png │ └── search.imageset │ │ ├── Contents.json │ │ └── search.png ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── main.m └── pchFile.pch └── Vendors ├── Masonry ├── MASCompositeConstraint.h ├── MASCompositeConstraint.m ├── MASConstraint+Private.h ├── MASConstraint.h ├── MASConstraint.m ├── MASConstraintMaker.h ├── MASConstraintMaker.m ├── MASLayoutConstraint.h ├── MASLayoutConstraint.m ├── MASUtilities.h ├── MASViewAttribute.h ├── MASViewAttribute.m ├── MASViewConstraint.h ├── MASViewConstraint.m ├── Masonry.h ├── NSArray+MASAdditions.h ├── NSArray+MASAdditions.m ├── NSArray+MASShorthandAdditions.h ├── NSLayoutConstraint+MASDebugAdditions.h ├── NSLayoutConstraint+MASDebugAdditions.m ├── View+MASAdditions.h ├── View+MASAdditions.m ├── View+MASShorthandAdditions.h ├── ViewController+MASAdditions.h └── ViewController+MASAdditions.m └── WZXLines ├── UIView+WZXLines.h ├── UIView+WZXLines.m └── WZXLines.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/Podfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/README.md -------------------------------------------------------------------------------- /WWeChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat.png -------------------------------------------------------------------------------- /WWeChat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /WWeChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /WWeChat.xcodeproj/project.xcworkspace/xcuserdata/WzxJiang.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat.xcodeproj/project.xcworkspace/xcuserdata/WzxJiang.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /WWeChat.xcodeproj/xcuserdata/WzxJiang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat.xcodeproj/xcuserdata/WzxJiang.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /WWeChat.xcodeproj/xcuserdata/WzxJiang.xcuserdatad/xcschemes/WWeChat.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat.xcodeproj/xcuserdata/WzxJiang.xcuserdatad/xcschemes/WWeChat.xcscheme -------------------------------------------------------------------------------- /WWeChat.xcodeproj/xcuserdata/WzxJiang.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat.xcodeproj/xcuserdata/WzxJiang.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /WWeChat/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /WWeChat/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /WWeChat/AppDelegate/ThridPartService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/AppDelegate/ThridPartService.h -------------------------------------------------------------------------------- /WWeChat/AppDelegate/ThridPartService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/AppDelegate/ThridPartService.m -------------------------------------------------------------------------------- /WWeChat/Base/BaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Base/BaseViewController.h -------------------------------------------------------------------------------- /WWeChat/Base/BaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Base/BaseViewController.m -------------------------------------------------------------------------------- /WWeChat/Category/UIColor/UIColor+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Category/UIColor/UIColor+Extension.h -------------------------------------------------------------------------------- /WWeChat/Category/UIColor/UIColor+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Category/UIColor/UIColor+Extension.m -------------------------------------------------------------------------------- /WWeChat/Category/UIView/UIView+Extension.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Category/UIView/UIView+Extension.h -------------------------------------------------------------------------------- /WWeChat/Category/UIView/UIView+Extension.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Category/UIView/UIView+Extension.m -------------------------------------------------------------------------------- /WWeChat/Functions/KeyChain/KeyChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Functions/KeyChain/KeyChain.h -------------------------------------------------------------------------------- /WWeChat/Functions/KeyChain/KeyChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Functions/KeyChain/KeyChain.m -------------------------------------------------------------------------------- /WWeChat/Macros/WDMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Macros/WDMacro.h -------------------------------------------------------------------------------- /WWeChat/Macros/WDUtilMethod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Macros/WDUtilMethod.h -------------------------------------------------------------------------------- /WWeChat/Macros/WDUtilMethod.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Macros/WDUtilMethod.m -------------------------------------------------------------------------------- /WWeChat/Macros/WZXConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Macros/WZXConfig.h -------------------------------------------------------------------------------- /WWeChat/Sections/Address/Control/AddressViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Address/Control/AddressViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Address/Control/AddressViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Address/Control/AddressViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Address/Model/AddressBookModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Address/Model/AddressBookModel.h -------------------------------------------------------------------------------- /WWeChat/Sections/Address/Model/AddressBookModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Address/Model/AddressBookModel.m -------------------------------------------------------------------------------- /WWeChat/Sections/Address/View/AddressBookCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Address/View/AddressBookCell.h -------------------------------------------------------------------------------- /WWeChat/Sections/Address/View/AddressBookCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Address/View/AddressBookCell.m -------------------------------------------------------------------------------- /WWeChat/Sections/Address/View/AddressCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Address/View/AddressCell.h -------------------------------------------------------------------------------- /WWeChat/Sections/Address/View/AddressCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Address/View/AddressCell.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Control/ChatBoxViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Control/ChatBoxViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Control/ChatBoxViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Control/ChatBoxViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Control/ChatDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Control/ChatDetailViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Control/ChatDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Control/ChatDetailViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Control/ChatViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Control/ChatViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Control/ChatViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Control/ChatViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Control/SearchViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Control/SearchViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Control/SearchViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Control/SearchViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Model/ConversationModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Model/ConversationModel.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Model/ConversationModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Model/ConversationModel.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Model/MessageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Model/MessageModel.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/Model/MessageModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/Model/MessageModel.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/View/ChatCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/View/ChatCell.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/View/ChatCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/View/ChatCell.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/View/ConversationCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/View/ConversationCell.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/View/ConversationCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/View/ConversationCell.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/View/SearchCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/View/SearchCell.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/View/SearchCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/View/SearchCell.m -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/View/WZXSearchBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/View/WZXSearchBar.h -------------------------------------------------------------------------------- /WWeChat/Sections/Chat/View/WZXSearchBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Chat/View/WZXSearchBar.m -------------------------------------------------------------------------------- /WWeChat/Sections/Found/Control/FoundViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Found/Control/FoundViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Found/Control/FoundViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Found/Control/FoundViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Root/Control/LoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/Control/LoginViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Root/Control/LoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/Control/LoginViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Root/Control/RegisterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/Control/RegisterViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Root/Control/RegisterViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/Control/RegisterViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Root/Control/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/Control/RootViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Root/Control/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/Control/RootViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Root/Control/TabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/Control/TabBarController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Root/Control/TabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/Control/TabBarController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Root/View/LoginContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/View/LoginContentView.h -------------------------------------------------------------------------------- /WWeChat/Sections/Root/View/LoginContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/View/LoginContentView.m -------------------------------------------------------------------------------- /WWeChat/Sections/Root/View/RegisterContentView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/View/RegisterContentView.h -------------------------------------------------------------------------------- /WWeChat/Sections/Root/View/RegisterContentView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Root/View/RegisterContentView.m -------------------------------------------------------------------------------- /WWeChat/Sections/Setting/Control/SettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Setting/Control/SettingViewController.h -------------------------------------------------------------------------------- /WWeChat/Sections/Setting/Control/SettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Setting/Control/SettingViewController.m -------------------------------------------------------------------------------- /WWeChat/Sections/Setting/View/MeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Setting/View/MeCell.h -------------------------------------------------------------------------------- /WWeChat/Sections/Setting/View/MeCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Sections/Setting/View/MeCell.m -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/Contact_icon_ContactTag.imageset/Contact_icon_ContactTag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/Contact_icon_ContactTag.imageset/Contact_icon_ContactTag@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/Contact_icon_ContactTag.imageset/Contact_icon_ContactTag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/Contact_icon_ContactTag.imageset/Contact_icon_ContactTag@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/Contact_icon_ContactTag.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/Contact_icon_ContactTag.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_addgroup.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_addgroup.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_addgroup.imageset/add_friend_icon_addgroup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_addgroup.imageset/add_friend_icon_addgroup@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_addgroup.imageset/add_friend_icon_addgroup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_addgroup.imageset/add_friend_icon_addgroup@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_offical.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_offical.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_offical.imageset/add_friend_icon_offical@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_offical.imageset/add_friend_icon_offical@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_offical.imageset/add_friend_icon_offical@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/add_friend_icon_offical.imageset/add_friend_icon_offical@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/plugins_FriendNotify.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/plugins_FriendNotify.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/plugins_FriendNotify.imageset/plugins_FriendNotify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/plugins_FriendNotify.imageset/plugins_FriendNotify@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AddressBook/plugins_FriendNotify.imageset/plugins_FriendNotify@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AddressBook/plugins_FriendNotify.imageset/plugins_FriendNotify@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Album_ToolViewEmotion.imageset/Album_ToolViewEmotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Album_ToolViewEmotion.imageset/Album_ToolViewEmotion@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Album_ToolViewEmotion.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Album_ToolViewEmotion.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Album_ToolViewEmotionHL.imageset/Album_ToolViewEmotionHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Album_ToolViewEmotionHL.imageset/Album_ToolViewEmotionHL@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Album_ToolViewEmotionHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Album_ToolViewEmotionHL.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Album_ToolViewKeyboard.imageset/Album_ToolViewKeyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Album_ToolViewKeyboard.imageset/Album_ToolViewKeyboard@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Album_ToolViewKeyboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Album_ToolViewKeyboard.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Album_ToolViewKeyboardHL.imageset/Album_ToolViewKeyboardHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Album_ToolViewKeyboardHL.imageset/Album_ToolViewKeyboardHL@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Album_ToolViewKeyboardHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Album_ToolViewKeyboardHL.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x-1.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x-2.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x-3.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_game.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_game.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_game.imageset/found_game@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_game.imageset/found_game@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_nearby.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_nearby.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_nearby.imageset/found_nearby@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_nearby.imageset/found_nearby@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_quan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_quan.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_quan.imageset/found_quan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_quan.imageset/found_quan@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_saoyisao.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_saoyisao.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_saoyisao.imageset/found_saoyisao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_saoyisao.imageset/found_saoyisao@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_shop.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_shop.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_shop.imageset/found_shop@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_shop.imageset/found_shop@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_yao.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_yao.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Found/found_yao.imageset/found_yao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Found/found_yao.imageset/found_yao@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Launch4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Launch4.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Launch4.imageset/Launch4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Launch4.imageset/Launch4.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Launch5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Launch5.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Launch5.imageset/Launch5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Launch5.imageset/Launch5.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Launch6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Launch6.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Launch6.imageset/Launch6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Launch6.imageset/Launch6.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Launch6p.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Launch6p.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Launch6p.imageset/Launch6p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Launch6p.imageset/Launch6p.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/LaunchImage-700-568h@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/LaunchImage.launchimage/LaunchImage@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkg.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/SenderTextNodeBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/SenderTextNodeBkg.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/SenderTextNodeBkg.imageset/SenderTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/SenderTextNodeBkg.imageset/SenderTextNodeBkg@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/SenderTextNodeBkgHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/SenderTextNodeBkgHL.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/MoreExpressionShops.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/MoreExpressionShops.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/MoreExpressionShops.imageset/MoreExpressionShops@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/MoreExpressionShops.imageset/MoreExpressionShops@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/me_collect.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/me_collect.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/me_collect.imageset/me_collect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/me_collect.imageset/me_collect@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/me_money.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/me_money.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/me_money.imageset/me_money@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/me_money.imageset/me_money@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/me_photo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/me_photo.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/me_photo.imageset/me_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/me_photo.imageset/me_photo@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/me_setting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/me_setting.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/me_setting.imageset/me_setting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/me_setting.imageset/me_setting@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/setting_myQR.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/setting_myQR.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Setting/setting_myQR.imageset/setting_myQR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Setting/setting_myQR.imageset/setting_myQR@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contacts.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contacts.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contacts.imageset/tabbar_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contacts.imageset/tabbar_contacts@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contacts.imageset/tabbar_contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contacts.imageset/tabbar_contacts@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contactsHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contactsHL.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discover.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discover.imageset/tabbar_discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discover.imageset/tabbar_discover@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discover.imageset/tabbar_discover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discover.imageset/tabbar_discover@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discoverHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discoverHL.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframe.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframe.imageset/tabbar_mainframe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframe.imageset/tabbar_mainframe@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframe.imageset/tabbar_mainframe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframe.imageset/tabbar_mainframe@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframeHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframeHL.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_me.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_me.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_me.imageset/tabbar_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_me.imageset/tabbar_me@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_me.imageset/tabbar_me@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_me.imageset/tabbar_me@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_meHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_meHL.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_meHL.imageset/tabbar_meHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_meHL.imageset/tabbar_meHL@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_meHL.imageset/tabbar_meHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/Tabbar/tabbar_meHL.imageset/tabbar_meHL@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/barbuttonicon_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/barbuttonicon_more.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/barbuttonicon_more.imageset/barbuttonicon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/barbuttonicon_more.imageset/barbuttonicon_more.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/barbuttonicon_more.imageset/barbuttonicon_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/barbuttonicon_more.imageset/barbuttonicon_more@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/barbuttonicon_more.imageset/barbuttonicon_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/barbuttonicon_more.imageset/barbuttonicon_more@3x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/chat_setmode_add_btn_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/chat_setmode_add_btn_normal.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/chat_setmode_add_btn_normal.imageset/chat_setmode_add_btn_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/chat_setmode_add_btn_normal.imageset/chat_setmode_add_btn_normal@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/chat_setmode_voice_btn_normal.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/chat_setmode_voice_btn_normal.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/chat_setmode_voice_btn_normal.imageset/chat_setmode_voice_btn_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/chat_setmode_voice_btn_normal.imageset/chat_setmode_voice_btn_normal@2x.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/default_avater.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/default_avater.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/default_avater.imageset/default_avater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/default_avater.imageset/default_avater.png -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/search.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/search.imageset/Contents.json -------------------------------------------------------------------------------- /WWeChat/Support File/Assets.xcassets/search.imageset/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Assets.xcassets/search.imageset/search.png -------------------------------------------------------------------------------- /WWeChat/Support File/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /WWeChat/Support File/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/Info.plist -------------------------------------------------------------------------------- /WWeChat/Support File/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/main.m -------------------------------------------------------------------------------- /WWeChat/Support File/pchFile.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Support File/pchFile.pch -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASCompositeConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASCompositeConstraint.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASCompositeConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASCompositeConstraint.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASConstraint+Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASConstraint+Private.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASConstraint.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASConstraint.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASConstraintMaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASConstraintMaker.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASConstraintMaker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASConstraintMaker.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASLayoutConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASLayoutConstraint.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASLayoutConstraint.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASUtilities.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASViewAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASViewAttribute.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASViewAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASViewAttribute.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASViewConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASViewConstraint.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/MASViewConstraint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/MASViewConstraint.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/Masonry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/Masonry.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/NSArray+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/NSArray+MASAdditions.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/NSArray+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/NSArray+MASAdditions.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/NSArray+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/NSArray+MASShorthandAdditions.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/NSLayoutConstraint+MASDebugAdditions.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/View+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/View+MASAdditions.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/View+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/View+MASAdditions.m -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/View+MASShorthandAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/View+MASShorthandAdditions.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/ViewController+MASAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/ViewController+MASAdditions.h -------------------------------------------------------------------------------- /WWeChat/Vendors/Masonry/ViewController+MASAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/Masonry/ViewController+MASAdditions.m -------------------------------------------------------------------------------- /WWeChat/Vendors/WZXLines/UIView+WZXLines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/WZXLines/UIView+WZXLines.h -------------------------------------------------------------------------------- /WWeChat/Vendors/WZXLines/UIView+WZXLines.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/WZXLines/UIView+WZXLines.m -------------------------------------------------------------------------------- /WWeChat/Vendors/WZXLines/WZXLines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wzxha/WWeChat/HEAD/WWeChat/Vendors/WZXLines/WZXLines.h --------------------------------------------------------------------------------