├── .gitignore ├── LICENSE ├── Podfile ├── Podfile.lock ├── README.md ├── RSChat.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── RSChat.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── RSChat ├── AppDelegate │ ├── AppDelegate+Content.h │ ├── AppDelegate+Content.m │ ├── AppDelegate+IM.h │ ├── AppDelegate+IM.m │ ├── AppDelegate+NetMonitor.h │ ├── AppDelegate+NetMonitor.m │ ├── AppDelegate+Weex.h │ ├── AppDelegate+Weex.m │ ├── AppDelegate.h │ └── AppDelegate.m ├── Base.lproj │ └── LaunchScreen.xib ├── BaseUI │ ├── RSNavigationController.h │ ├── RSNavigationController.m │ ├── RSViewController.h │ ├── RSViewController.m │ ├── UIButton+RSExts.h │ ├── UIButton+RSExts.m │ ├── UICollectionViewCell+RSExts.h │ ├── UICollectionViewCell+RSExts.m │ ├── UIColor+RSExts.h │ ├── UIColor+RSExts.m │ ├── UIImage+RSExts.h │ ├── UIImage+RSExts.m │ ├── UITableViewCell+RSExts.h │ └── UITableViewCell+RSExts.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── AppIcon20x20@2x.png │ │ ├── AppIcon20x20@3x.png │ │ ├── AppIcon29x29@2x.png │ │ ├── AppIcon29x29@3x.png │ │ ├── AppIcon40x40@2x.png │ │ ├── AppIcon40x40@3x.png │ │ ├── AppIcon_1024x1024_@1x.png │ │ ├── AppIcon_60x60_@2x.png │ │ ├── AppIcon_60x60_@3x.png │ │ └── Contents.json │ ├── Contents.json │ ├── LaunchImage.launchimage │ │ ├── BootImage_414x896_@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage-800-667h@2x.png │ │ └── LaunchImage-800-Portrait-736h@3x.png │ ├── hehai.imageset │ │ ├── Contents.json │ │ └── hehai.png │ └── placeholder_logo.imageset │ │ ├── Contents.json │ │ ├── placeholder_logo@2x.png │ │ └── placeholder_logo@3x.png ├── Info.plist ├── Macro │ └── RSChatMacro.h ├── Resource │ ├── favorites.plist │ ├── homeNaviContacts.plist │ └── officialAccounts.plist ├── Sections │ ├── Chats │ │ ├── Controllers │ │ │ ├── RSChatsViewController.h │ │ │ ├── RSChatsViewController.m │ │ │ ├── RSHomeSearchResultController.h │ │ │ ├── RSHomeSearchResultController.m │ │ │ ├── RSMessageViewController.h │ │ │ ├── RSMessageViewController.m │ │ │ ├── RSNewsViewController.h │ │ │ ├── RSNewsViewController.m │ │ │ └── WEEXDemo │ │ │ │ ├── RSWeexImgLoader.h │ │ │ │ ├── RSWeexImgLoader.m │ │ │ │ ├── WEEXDemoVC.h │ │ │ │ ├── WEEXDemoVC.m │ │ │ │ └── index.js │ │ ├── Models │ │ │ ├── RSHomeModel.h │ │ │ ├── RSHomeModel.m │ │ │ ├── RSMessageModel.h │ │ │ ├── RSMessageModel.m │ │ │ ├── RSNewsModel.h │ │ │ └── RSNewsModel.m │ │ └── Views │ │ │ ├── RSChatToolBar.h │ │ │ ├── RSChatToolBar.m │ │ │ ├── RSHomeCell.h │ │ │ ├── RSHomeCell.m │ │ │ ├── RSHomeCell.xib │ │ │ ├── RSMessageCell.h │ │ │ ├── RSMessageCell.m │ │ │ ├── RSNewsContentCell.h │ │ │ ├── RSNewsContentCell.m │ │ │ ├── RSNewsContentCell.xib │ │ │ ├── RSNewsDateView.h │ │ │ ├── RSNewsDateView.m │ │ │ ├── RSNewsDateView.xib │ │ │ ├── RSNewsHeaderCell.h │ │ │ ├── RSNewsHeaderCell.m │ │ │ ├── RSNewsHeaderCell.xib │ │ │ ├── RSPopView.h │ │ │ ├── RSPopView.m │ │ │ ├── RSPopView.xib │ │ │ ├── RSSearchTempView.h │ │ │ ├── RSSearchTempView.m │ │ │ └── RSSearchTempView.xib │ ├── Contacts │ │ ├── Controllers │ │ │ ├── RSAddFriendViewController.h │ │ │ ├── RSAddFriendViewController.m │ │ │ ├── RSContactsViewController.h │ │ │ ├── RSContactsViewController.m │ │ │ ├── RSDetailTableViewController.h │ │ │ ├── RSDetailViewController.h │ │ │ ├── RSDetailViewController.m │ │ │ ├── RSGroupChatViewController.h │ │ │ ├── RSGroupChatViewController.m │ │ │ ├── RSLabelViewController.h │ │ │ ├── RSLabelViewController.m │ │ │ ├── RSNewFriendViewController.h │ │ │ ├── RSNewFriendViewController.m │ │ │ ├── RSOfficialAccountViewController.h │ │ │ ├── RSOfficialAccountViewController.m │ │ │ ├── RSVideoViewController.h │ │ │ ├── RSVideoViewController.m │ │ │ └── RSVideoViewController.xib │ │ ├── Models │ │ │ ├── RSContactsModel.h │ │ │ └── RSContactsModel.m │ │ └── Views │ │ │ ├── RSActionView.h │ │ │ ├── RSActionView.m │ │ │ ├── RSActionView.xib │ │ │ ├── RSAddFriendCell.h │ │ │ ├── RSAddFriendCell.m │ │ │ ├── RSAddFriendCell.xib │ │ │ ├── RSContactCell.h │ │ │ ├── RSContactCell.m │ │ │ ├── RSContactCell.xib │ │ │ ├── RSDetailFirstCell.h │ │ │ ├── RSDetailFirstCell.m │ │ │ ├── RSDetailFirstCell.xib │ │ │ ├── RSDetailSecondCell.h │ │ │ ├── RSDetailSecondCell.m │ │ │ ├── RSDetailSecondCell.xib │ │ │ ├── RSLabelBlankView.h │ │ │ ├── RSLabelBlankView.m │ │ │ ├── RSLabelBlankView.xib │ │ │ ├── RSMessageVideoCell.h │ │ │ ├── RSMessageVideoCell.m │ │ │ ├── RSMessageVideoCell.xib │ │ │ ├── RSNewFriendCell.h │ │ │ ├── RSNewFriendCell.m │ │ │ ├── RSNewFriendCell.xib │ │ │ ├── RSOfficialCell.h │ │ │ ├── RSOfficialCell.m │ │ │ ├── RSOfficialCell.xib │ │ │ ├── RSSearchFriendCell.h │ │ │ ├── RSSearchFriendCell.m │ │ │ └── RSSearchFriendCell.xib │ ├── Discover │ │ ├── Controllers │ │ │ ├── RSBottleViewController.h │ │ │ ├── RSBottleViewController.m │ │ │ ├── RSBottleViewController.xib │ │ │ ├── RSBuyViewController.h │ │ │ ├── RSBuyViewController.m │ │ │ ├── RSDiscoverViewController.h │ │ │ ├── RSDiscoverViewController.m │ │ │ ├── RSFriendsCircleViewController.h │ │ │ ├── RSFriendsCircleViewController.m │ │ │ ├── RSGameDetailViewController.h │ │ │ ├── RSGameDetailViewController.m │ │ │ ├── RSGameDetailViewController.xib │ │ │ ├── RSGameViewController.h │ │ │ ├── RSGameViewController.m │ │ │ ├── RSLocalViewController.h │ │ │ ├── RSLocalViewController.m │ │ │ ├── RSLocalViewController.xib │ │ │ ├── RSScanCodeViewController.h │ │ │ ├── RSScanCodeViewController.m │ │ │ ├── RSScanCodeViewController.xib │ │ │ ├── RSScanResultViewController.h │ │ │ ├── RSScanResultViewController.m │ │ │ ├── RSScanResultViewController.xib │ │ │ ├── RSScanViewController.h │ │ │ ├── RSScanViewController.m │ │ │ ├── RSShakeViewController.h │ │ │ ├── RSShakeViewController.m │ │ │ └── RSShakeViewController.xib │ │ ├── Models │ │ │ ├── RSAnnotation.h │ │ │ ├── RSAnnotation.m │ │ │ ├── RSDiscoverModel.h │ │ │ ├── RSDiscoverModel.m │ │ │ ├── RSFriendsModel.h │ │ │ └── RSFriendsModel.m │ │ └── Views │ │ │ ├── RSDiscoverCell.h │ │ │ ├── RSDiscoverCell.m │ │ │ ├── RSDiscoverCell.xib │ │ │ ├── RSFriendsACell.h │ │ │ ├── RSFriendsACell.m │ │ │ ├── RSFriendsACell.xib │ │ │ ├── RSFriendsCircleHeader.h │ │ │ ├── RSFriendsCircleHeader.m │ │ │ ├── RSFriendsHeaderView.xib │ │ │ ├── RSGameACell.h │ │ │ ├── RSGameACell.m │ │ │ ├── RSGameACell.xib │ │ │ ├── RSGameBCell.h │ │ │ ├── RSGameBCell.m │ │ │ ├── RSGameBCell.xib │ │ │ ├── RSGameCCell.h │ │ │ ├── RSGameCCell.m │ │ │ ├── RSGameCCell.xib │ │ │ ├── RSGameDCell.h │ │ │ ├── RSGameDCell.m │ │ │ ├── RSGameDCell.xib │ │ │ ├── RSGameDetailACell.h │ │ │ ├── RSGameDetailACell.m │ │ │ ├── RSGameDetailACell.xib │ │ │ ├── RSGameDetailBCell.h │ │ │ ├── RSGameDetailBCell.m │ │ │ ├── RSGameDetailBCell.xib │ │ │ ├── RSGameDetailHeader.h │ │ │ ├── RSGameDetailHeader.m │ │ │ ├── RSGameDetailHeader.xib │ │ │ ├── RSGameECell.h │ │ │ ├── RSGameECell.m │ │ │ └── RSGameECell.xib │ ├── LogInOut │ │ ├── RSConformViewController.h │ │ ├── RSConformViewController.m │ │ ├── RSConformViewController.xib │ │ ├── RSCountryListViewController.h │ │ ├── RSCountryListViewController.m │ │ ├── RSLoginViewController.h │ │ ├── RSLoginViewController.m │ │ ├── RSLoginViewController.xib │ │ ├── RSOtherLoginViewController.h │ │ ├── RSOtherLoginViewController.m │ │ ├── RSOtherLoginViewController.xib │ │ ├── RSQuestionViewController.h │ │ ├── RSQuestionViewController.m │ │ ├── RSSignUpViewController.h │ │ ├── RSSignUpViewController.m │ │ └── RSSignUpViewController.xib │ ├── Mine │ │ ├── Controllers │ │ │ ├── RSAlbumViewController.h │ │ │ ├── RSAlbumViewController.m │ │ │ ├── RSAlbumViewController.xib │ │ │ ├── RSCreatCodeViewController.h │ │ │ ├── RSCreatCodeViewController.m │ │ │ ├── RSCreatCodeViewController.xib │ │ │ ├── RSEmotionViewController.h │ │ │ ├── RSEmotionViewController.m │ │ │ ├── RSFavoritesViewController.h │ │ │ ├── RSFavoritesViewController.m │ │ │ ├── RSMeViewController.h │ │ │ ├── RSMeViewController.m │ │ │ ├── RSMoneyCollectionViewController.h │ │ │ ├── RSMoneyCollectionViewController.m │ │ │ ├── RSMoneyCollectionViewController.xib │ │ │ ├── RSPrivateViewController.h │ │ │ ├── RSPrivateViewController.m │ │ │ ├── RSReLoginViewController.h │ │ │ ├── RSReLoginViewController.m │ │ │ ├── RSReLoginViewController.xib │ │ │ ├── RSSettingViewController.h │ │ │ └── RSSettingViewController.m │ │ ├── Models │ │ │ ├── RSMeModel.h │ │ │ ├── RSMeModel.m │ │ │ ├── RSMePrivateModel.h │ │ │ └── RSMePrivateModel.m │ │ └── Views │ │ │ ├── RSAutoDisplayCell.h │ │ │ ├── RSAutoDisplayCell.m │ │ │ ├── RSAutoDisplayCell.xib │ │ │ ├── RSEmotionACell.h │ │ │ ├── RSEmotionACell.m │ │ │ ├── RSEmotionACell.xib │ │ │ ├── RSFavoriteCell.h │ │ │ ├── RSFavoriteCell.m │ │ │ ├── RSFavoriteCell.xib │ │ │ ├── RSLogoutCell.h │ │ │ ├── RSLogoutCell.m │ │ │ ├── RSLogoutCell.xib │ │ │ ├── RSMeHeaderCell.h │ │ │ ├── RSMeHeaderCell.m │ │ │ ├── RSMeHeaderCell.xib │ │ │ ├── RSMeOtherCell.h │ │ │ ├── RSMeOtherCell.m │ │ │ ├── RSMeOtherCell.xib │ │ │ ├── RSMoneyACell.h │ │ │ ├── RSMoneyACell.m │ │ │ ├── RSMoneyACell.xib │ │ │ ├── RSMoneyCollectionView.h │ │ │ ├── RSMoneyCollectionView.m │ │ │ ├── RSMoneyCollectionView.xib │ │ │ ├── RSPrivateOtherCell.h │ │ │ ├── RSPrivateOtherCell.m │ │ │ ├── RSPrivateOtherCell.xib │ │ │ ├── RSPrivateTableViewCell.h │ │ │ ├── RSPrivateTableViewCell.m │ │ │ ├── RSPrivateTableViewCell.xib │ │ │ ├── RSSettingCell.h │ │ │ ├── RSSettingCell.m │ │ │ └── RSSettingCell.xib │ ├── PublicImages.xcassets │ │ ├── AlbumNewNotify.imageset │ │ │ ├── AlbumNewNotify@2x.png │ │ │ └── Contents.json │ │ ├── Artboard 24.imageset │ │ │ ├── Artboard 24@2x.png │ │ │ └── Contents.json │ │ ├── Chats │ │ │ ├── AlbumKeyboardTopBkg.imageset │ │ │ │ ├── AlbumKeyboardTopBkg@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── MoreFunctionFrame.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreFunctionFrame@2x.png │ │ │ │ └── MoreFunctionFrame@3x.png │ │ │ ├── MoreFunctionFrameHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoreFunctionFrameHL@2x.png │ │ │ ├── MoreFunctionFrameLine.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MoreFunctionFrameLine@2x.png │ │ │ ├── Mycard_Newmessage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Mycard_Newmessage@2x.png │ │ │ ├── Plugins_News_avatar.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Plugins_News_avatar@2x.png │ │ │ ├── ReadVerified_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReadVerified_icon@2x.png │ │ │ │ └── ReadVerified_icon@3x.png │ │ │ ├── ReceiverTextNodeBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverTextNodeBkg@2x.png │ │ │ │ ├── ReceiverTextNodeBkg@2x~ipad.png │ │ │ │ └── ReceiverTextNodeBkg@3x.png │ │ │ ├── ReceiverTextNodeBkgHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ReceiverTextNodeBkgHL@2x.png │ │ │ │ ├── ReceiverTextNodeBkgHL@2x~ipad.png │ │ │ │ └── ReceiverTextNodeBkgHL@3x.png │ │ │ ├── SenderTextNodeBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderTextNodeBkg@2x.png │ │ │ │ ├── SenderTextNodeBkg@2x~ipad.png │ │ │ │ └── SenderTextNodeBkg@3x.png │ │ │ ├── SenderTextNodeBkgHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SenderTextNodeBkgHL@2x.png │ │ │ │ ├── SenderTextNodeBkgHL@2x~ipad.png │ │ │ │ └── SenderTextNodeBkgHL@3x.png │ │ │ ├── ToolViewEmotion.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewEmotion@2x.png │ │ │ │ └── ToolViewEmotion@3x.png │ │ │ ├── ToolViewEmotionHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewEmotionHL@2x.png │ │ │ │ └── ToolViewEmotionHL@3x.png │ │ │ ├── ToolViewInputVoice.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewInputVoice@2x.png │ │ │ │ └── ToolViewInputVoice@3x.png │ │ │ ├── ToolViewInputVoiceHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewInputVoiceHL@2x.png │ │ │ │ └── ToolViewInputVoiceHL@3x.png │ │ │ ├── ToolViewKeyboard.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewKeyboard@2x.png │ │ │ │ └── ToolViewKeyboard@3x.png │ │ │ ├── ToolViewKeyboardHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ToolViewKeyboardHL@2x.png │ │ │ │ └── ToolViewKeyboardHL@3x.png │ │ │ ├── TypeSelectorBtnHL_Black.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TypeSelectorBtnHL_Black@2x.png │ │ │ │ └── TypeSelectorBtnHL_Black@3x.png │ │ │ ├── TypeSelectorBtn_Black.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── TypeSelectorBtn_Black@2x.png │ │ │ │ └── TypeSelectorBtn_Black@3x.png │ │ │ ├── VoiceSearchStartBtn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── VoiceSearchStartBtn@2x.png │ │ │ ├── VoiceSearchStartBtnHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── VoiceSearchStartBtnHL@2x.png │ │ │ ├── barbuttonicon_InfoSingle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_InfoSingle.png │ │ │ │ ├── barbuttonicon_InfoSingle@2x.png │ │ │ │ └── barbuttonicon_InfoSingle@3x.png │ │ │ ├── barbuttonicon_back.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_back.png │ │ │ │ ├── barbuttonicon_back@2x.png │ │ │ │ └── barbuttonicon_back@3x.png │ │ │ ├── cartoon_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_1.png │ │ │ ├── cartoon_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_2.png │ │ │ ├── cartoon_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_3.png │ │ │ ├── cartoon_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_4.png │ │ │ ├── cartoon_5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_5.png │ │ │ ├── cartoon_6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_6.png │ │ │ ├── cartoon_7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_7.png │ │ │ ├── cartoon_8.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_8.png │ │ │ ├── cartoon_9.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── cartoon_9.png │ │ │ ├── contacts_add_friend.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_add_friend@2x.png │ │ │ │ └── contacts_add_friend@3x.png │ │ │ ├── contacts_add_money.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_add_money@2x.png │ │ │ │ └── contacts_add_money@3x.png │ │ │ ├── contacts_add_newmessage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_add_newmessage@2x.png │ │ │ │ └── contacts_add_newmessage@3x.png │ │ │ ├── contacts_add_scan.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── contacts_add_scan@2x.png │ │ │ │ └── contacts_add_scan@3x.png │ │ │ ├── fts_edu_article_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_edu_article_icon@2x.png │ │ │ ├── fts_edu_brandcontact_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_edu_brandcontact_icon@2x.png │ │ │ ├── fts_edu_sns_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── fts_edu_sns_icon@2x.png │ │ │ └── test.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── test.png │ │ ├── Contacts │ │ │ ├── Contact_Female.imageset │ │ │ │ ├── Contact_Female@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contact_Male.imageset │ │ │ │ ├── Contact_Male@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contact_icon_ContactTag.imageset │ │ │ │ ├── Contact_icon_ContactTag@2x.png │ │ │ │ ├── Contact_icon_ContactTag@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── FriendCardNodeIconMobile.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── FriendCardNodeIconMobile@2x.png │ │ │ ├── FriendCardNodeIconQQ.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── FriendCardNodeIconQQ@2x.png │ │ │ ├── add_friend_icon_addgroup.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_addgroup@2x.png │ │ │ │ └── add_friend_icon_addgroup@3x.png │ │ │ ├── add_friend_icon_contacts.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_contacts@2x.png │ │ │ │ └── add_friend_icon_contacts@3x.png │ │ │ ├── add_friend_icon_invite.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_invite@2x.png │ │ │ │ └── add_friend_icon_invite@3x.png │ │ │ ├── add_friend_icon_offical.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_offical@2x.png │ │ │ │ └── add_friend_icon_offical@3x.png │ │ │ ├── add_friend_icon_reda.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_reda@2x.png │ │ │ │ └── add_friend_icon_reda@3x.png │ │ │ ├── add_friend_icon_scanqr.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_scanqr@2x.png │ │ │ │ └── add_friend_icon_scanqr@3x.png │ │ │ ├── add_friend_icon_search.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── add_friend_icon_search@2x.png │ │ │ │ └── add_friend_icon_search@3x.png │ │ │ ├── add_friend_myQR.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── add_friend_myQR@2x.png │ │ │ ├── add_friend_searchicon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── add_friend_searchicon@2x.png │ │ │ ├── common_gray_btn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── common_gray_btn@2x.png │ │ │ ├── common_green_btn.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── common_green_btn@2x.png │ │ │ ├── plugins_FriendNotify.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── plugins_FriendNotify@2x.png │ │ │ │ └── plugins_FriendNotify@3x.png │ │ │ ├── public_apple.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public_apple.png │ │ │ ├── public_clock.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public_clock.png │ │ │ ├── public_cocoaChina.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public_cocoaChina.png │ │ │ ├── public_ios9.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public_ios9.png │ │ │ ├── public_tencent.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public_tencent.png │ │ │ ├── public_umeng.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public_umeng.png │ │ │ ├── public_weex.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public_weex.png │ │ │ └── public_xcode.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── public_xcode.png │ │ ├── Contents.json │ │ ├── Discover │ │ │ ├── AlbumOperateMore.imageset │ │ │ │ ├── AlbumOperateMore@2x.png │ │ │ │ ├── AlbumOperateMore@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AlbumOperateMoreHL.imageset │ │ │ │ ├── AlbumOperateMoreHL@2x.png │ │ │ │ ├── AlbumOperateMoreHL@3x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── CreditCard_ShoppingBag.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── CreditCard_ShoppingBag@2x.png │ │ │ ├── FootStep.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── FootStep@2x.png │ │ │ ├── GameCenterMyGift.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GameCenterMyGift@2x.png │ │ │ ├── GameCenterMyMsg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── GameCenterMyMsg@2x.png │ │ │ ├── MT2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MT2.png │ │ │ ├── MoreGame.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreGame.png │ │ │ │ ├── MoreGame@2x.png │ │ │ │ └── MoreGame@3x.png │ │ │ ├── MyGameBtnGrayHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MyGameBtnGrayHL@2x.png │ │ │ ├── MyGameBtnGreen.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MyGameBtnGreen@2x.png │ │ │ ├── MyGameDefaultAppIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MyGameDefaultAppIcon@2x.png │ │ │ ├── ScanQR1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQR1@2x.png │ │ │ │ └── ScanQR1@3x.png │ │ │ ├── ScanQR2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQR2@2x.png │ │ │ │ └── ScanQR2@3x.png │ │ │ ├── ScanQR3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQR3@2x.png │ │ │ │ └── ScanQR3@3x.png │ │ │ ├── ScanQR4.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQR4@2x.png │ │ │ │ └── ScanQR4@3x.png │ │ │ ├── ScanQRCode.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQRCode@2x.png │ │ │ │ └── ScanQRCode@3x.png │ │ │ ├── ScanQRCode_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanQRCode_HL@2x.png │ │ │ │ └── ScanQRCode_HL@3x.png │ │ │ ├── ScanStreet.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanStreet@2x.png │ │ │ │ └── ScanStreet@3x.png │ │ │ ├── ScanStreet_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanStreet_HL@2x.png │ │ │ │ └── ScanStreet_HL@3x.png │ │ │ ├── ScanWord.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanWord@2x.png │ │ │ │ └── ScanWord@3x.png │ │ │ ├── ScanWord_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ScanWord_HL@2x.png │ │ │ │ └── ScanWord_HL@3x.png │ │ │ ├── Scantv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scantv@2x.png │ │ │ ├── Scantv_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Scantv_HL@2x.png │ │ │ ├── ShakeHideImg_women.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ShakeHideImg_women@2x.png │ │ │ ├── Shake_Line_Down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_Line_Down@2x.png │ │ │ ├── Shake_Line_Up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_Line_Up@2x.png │ │ │ ├── Shake_Logo_Down.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_Logo_Down@2x.png │ │ │ ├── Shake_Logo_Up.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_Logo_Up@2x.png │ │ │ ├── Shake_icon_music.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_icon_music@2x.png │ │ │ ├── Shake_icon_musicHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_icon_musicHL@2x.png │ │ │ ├── Shake_icon_people.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_icon_people@2x.png │ │ │ ├── Shake_icon_peopleHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_icon_peopleHL@2x.png │ │ │ ├── Shake_icon_tv.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_icon_tv@2x.png │ │ │ ├── Shake_icon_tvHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Shake_icon_tvHL@2x.png │ │ │ ├── ShakeforsongBgshade.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── ShakeforsongBgshade@2x.png │ │ │ ├── barbuttonicon_Camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── barbuttonicon_Camera.png │ │ │ │ ├── barbuttonicon_Camera@2x.png │ │ │ │ └── barbuttonicon_Camera@3x.png │ │ │ ├── bottleBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottleBkg@2x.png │ │ │ ├── bottleBkgSpotLight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottleBkgSpotLight@2x.png │ │ │ ├── bottleBoard.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bottleBoard.png │ │ │ │ └── bottleBoard@2x.png │ │ │ ├── bottleButtonFish.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bottleButtonFish.png │ │ │ │ └── bottleButtonFish@2x.png │ │ │ ├── bottleButtonMine.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bottleButtonMine.png │ │ │ │ └── bottleButtonMine@2x.png │ │ │ ├── bottleButtonThrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bottleButtonThrow.png │ │ │ │ └── bottleButtonThrow@2x.png │ │ │ ├── bottleEmpty.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottleEmpty@2x.png │ │ │ ├── bottleMaskBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottleMaskBkg@2x.png │ │ │ ├── bottleNightBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottleNightBkg@2x.png │ │ │ ├── ff_IconBottle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconBottle.png │ │ │ │ ├── ff_IconBottle@2x.png │ │ │ │ └── ff_IconBottle@3x.png │ │ │ ├── ff_IconLocationService.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconLocationService.png │ │ │ │ ├── ff_IconLocationService@2x.png │ │ │ │ └── ff_IconLocationService@3x.png │ │ │ ├── ff_IconQRCode.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconQRCode.png │ │ │ │ ├── ff_IconQRCode@2x.png │ │ │ │ └── ff_IconQRCode@3x.png │ │ │ ├── ff_IconShake.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconShake.png │ │ │ │ ├── ff_IconShake@2x.png │ │ │ │ └── ff_IconShake@3x.png │ │ │ ├── ff_IconShowAlbum.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconShowAlbum.png │ │ │ │ ├── ff_IconShowAlbum@2x.png │ │ │ │ └── ff_IconShowAlbum@3x.png │ │ │ ├── friendsHeader_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── friendsHeader_icon.png │ │ │ │ └── friendsHeader_icon@2x.png │ │ │ ├── game_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_0.png │ │ │ ├── game_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_1.png │ │ │ ├── game_10.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_10.png │ │ │ ├── game_11.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_11.png │ │ │ ├── game_12.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_12.png │ │ │ ├── game_13.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_13.png │ │ │ ├── game_14.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_14.png │ │ │ ├── game_15.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_15.png │ │ │ ├── game_16.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_16.png │ │ │ ├── game_17.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_17.png │ │ │ ├── game_18.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_18.png │ │ │ ├── game_19.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_19.png │ │ │ ├── game_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_2.png │ │ │ ├── game_20.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_20.png │ │ │ ├── game_21.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_21.png │ │ │ ├── game_22.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_22.png │ │ │ ├── game_23.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_23.png │ │ │ ├── game_24.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_24.png │ │ │ ├── game_25.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_25.png │ │ │ ├── game_26.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_26.png │ │ │ ├── game_27.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_27.png │ │ │ ├── game_28.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_28.png │ │ │ ├── game_29.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_29.png │ │ │ ├── game_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_3.png │ │ │ ├── game_30.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_30.png │ │ │ ├── game_31.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_31.png │ │ │ ├── game_32.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_32.png │ │ │ ├── game_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_4.png │ │ │ ├── game_5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_5.png │ │ │ ├── game_6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_6.png │ │ │ ├── game_7.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_7.png │ │ │ ├── game_8.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_8.png │ │ │ ├── game_9.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_9.png │ │ │ ├── game_a.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_a.png │ │ │ ├── game_b.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_b.png │ │ │ ├── game_c.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_c.png │ │ │ ├── game_d.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_d.png │ │ │ ├── game_e.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_e.png │ │ │ ├── game_f.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_f.png │ │ │ ├── game_g.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_g.png │ │ │ ├── game_h.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_h.png │ │ │ ├── game_i.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── game_i.png │ │ │ ├── icon_Movie_Star_Noratings.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_Movie_Star_Noratings@2x.png │ │ │ ├── icon_Movie_Star_rating.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_Movie_Star_rating@2x.png │ │ │ ├── icon_classify_cafe.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_classify_cafe@2x.png │ │ │ ├── icon_mark1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_mark1.png │ │ │ │ └── icon_mark1@2x.png │ │ │ ├── icon_mark2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_mark2.png │ │ │ │ └── icon_mark2@2x.png │ │ │ ├── icon_openmap_item.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_openmap_item@2x.png │ │ │ ├── icon_paopao_waterdrop_streetscape.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_paopao_waterdrop_streetscape@2x.png │ │ │ ├── icon_pin_floating.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_pin_floating@2x.png │ │ │ ├── linetemp.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── linetemp@2x.png │ │ │ ├── pick_bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pick_bg@2x.png │ │ │ └── pick_bg4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pick_bg4@2x.png │ │ ├── LogInOut │ │ │ ├── Contents.json │ │ │ └── Login_bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Login_bk.png │ │ ├── Mine │ │ │ ├── AlbumListCamera.imageset │ │ │ │ ├── AlbumListCamera@2x.png │ │ │ │ └── Contents.json │ │ │ ├── AlbumListCameraHL.imageset │ │ │ │ ├── AlbumListCameraHL@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Artboard 23.imageset │ │ │ │ ├── Artboard 23@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── EmotionsEmojiHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── EmotionsEmojiHL.png │ │ │ ├── IMG_0592.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── IMG_0592.png │ │ │ ├── MoreMyAlbum.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreMyAlbum@2x.png │ │ │ │ └── MoreMyAlbum@3x.png │ │ │ ├── MoreMyBankCard.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreMyBankCard@2x.png │ │ │ │ └── MoreMyBankCard@3x.png │ │ │ ├── MoreMyFavorites.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreMyFavorites@2x.png │ │ │ │ └── MoreMyFavorites@3x.png │ │ │ ├── MoreSetting.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreSetting@2x.png │ │ │ │ └── MoreSetting@3x.png │ │ │ ├── ProfileLockOff.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ProfileLockOff@2x.png │ │ │ │ └── ProfileLockOff@3x.png │ │ │ ├── ProfileLockOn.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ProfileLockOn@2x.png │ │ │ │ └── ProfileLockOn@3x.png │ │ │ ├── Report_Success_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Report_Success_icon@2x.png │ │ │ ├── em_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── em_0.png │ │ │ ├── em_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── em_1.png │ │ │ ├── em_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── em_2.png │ │ │ ├── em_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── em_3.png │ │ │ ├── em_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── em_4.png │ │ │ ├── emo_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emo_0.png │ │ │ ├── emo_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emo_1.png │ │ │ ├── emo_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emo_2.png │ │ │ ├── emo_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emo_3.png │ │ │ ├── emo_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emo_4.png │ │ │ ├── emo_5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emo_5.png │ │ │ ├── emo_6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emo_6.png │ │ │ ├── emotion_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emotion_0.png │ │ │ ├── emotion_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emotion_1.png │ │ │ ├── emotion_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emotion_2.png │ │ │ ├── emotion_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emotion_3.png │ │ │ ├── emotion_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emotion_4.png │ │ │ ├── emotion_5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── emotion_5.png │ │ │ ├── favorite_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── favorite_0.png │ │ │ ├── favorite_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── favorite_1.png │ │ │ ├── favorite_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── favorite_2.png │ │ │ ├── favorite_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── favorite_3.png │ │ │ ├── product_button_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── product_button_selected@2x.png │ │ │ ├── setting_myQR.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── setting_myQR@2x.png │ │ │ └── xiaohuangren.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── xiaohuangren.png │ │ ├── TableViewArrow.imageset │ │ │ ├── Contents.json │ │ │ └── TableViewArrow@2x.png │ │ ├── barbuttonicon_add.imageset │ │ │ ├── Contents.json │ │ │ ├── barbuttonicon_add@2x.png │ │ │ └── barbuttonicon_add@3x.png │ │ ├── barbuttonicon_add_cube.imageset │ │ │ ├── Contents.json │ │ │ ├── barbuttonicon_add_cube@2x.png │ │ │ └── barbuttonicon_add_cube@3x.png │ │ ├── barbuttonicon_more.imageset │ │ │ ├── Contents.json │ │ │ ├── barbuttonicon_more.png │ │ │ ├── barbuttonicon_more@2x.png │ │ │ └── barbuttonicon_more@3x.png │ │ ├── barbuttonicon_set.imageset │ │ │ ├── Contents.json │ │ │ ├── barbuttonicon_set.png │ │ │ ├── barbuttonicon_set@2x.png │ │ │ └── barbuttonicon_set@3x.png │ │ └── tabbar │ │ │ ├── Contents.json │ │ │ ├── tabbarBkg.imageset │ │ │ ├── Contents.json │ │ │ └── tabbarBkg@2x.png │ │ │ ├── tabbar_badge.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_badge@2x.png │ │ │ └── tabbar_badge@3x.png │ │ │ ├── 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_mine.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_mine@2x.png │ │ │ └── tabbar_mine@3x.png │ │ │ └── tabbar_mineHL.imageset │ │ │ ├── Contents.json │ │ │ ├── tabbar_mineHL@2x.png │ │ │ └── tabbar_mineHL@3x.png │ ├── RSMainTabBarController.h │ ├── RSMainTabBarController.m │ └── Welcome │ │ ├── RSLngListViewController.h │ │ ├── RSLngListViewController.m │ │ ├── RSWelcomeViewController.h │ │ └── RSWelcomeViewController.m ├── Vendors │ └── ZBarSDK-master │ │ ├── .gitignore │ │ ├── Headers │ │ └── ZBarSDK │ │ │ ├── ZBarCameraSimulator.h │ │ │ ├── ZBarCaptureReader.h │ │ │ ├── ZBarHelpController.h │ │ │ ├── ZBarImage.h │ │ │ ├── ZBarImageScanner.h │ │ │ ├── ZBarReaderController.h │ │ │ ├── ZBarReaderView.h │ │ │ ├── ZBarReaderViewController.h │ │ │ ├── ZBarSDK.h │ │ │ ├── ZBarSymbol.h │ │ │ ├── zbar.h │ │ │ └── zbar │ │ │ ├── Decoder.h │ │ │ ├── Exception.h │ │ │ ├── Image.h │ │ │ ├── ImageScanner.h │ │ │ ├── Processor.h │ │ │ ├── Scanner.h │ │ │ ├── Symbol.h │ │ │ ├── Video.h │ │ │ └── Window.h │ │ ├── README │ │ ├── Resources │ │ ├── zbar-back.png │ │ ├── zbar-help.html │ │ ├── zbar-helpicons.png │ │ └── zbar-samples.png │ │ └── libzbar.a ├── en.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── main.m └── zh-Hans.lproj │ ├── InfoPlist.strings │ └── Localizable.strings ├── RSChatTests ├── Info.plist └── RSChatTests.m └── Resources ├── AppIcon_Old ├── AppIcon29x29@2x.png ├── AppIcon29x29@3x.png ├── AppIcon40x40@2x.png ├── AppIcon40x40@3x.png ├── AppIcon60x60@2x.png └── AppIcon60x60@3x.png ├── README_OLD.md ├── ScreenShot_New ├── IMG_001.JPG ├── IMG_002.JPG ├── IMG_003.JPG ├── IMG_004.JPG └── IMG_005.JPG └── ScreenShot_Old ├── test_0.gif ├── test_1.gif ├── test_2.gif └── test_3.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/LICENSE -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Podfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/README.md -------------------------------------------------------------------------------- /RSChat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RSChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSChat.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RSChat.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate+Content.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate+Content.h -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate+Content.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate+Content.m -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate+IM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate+IM.h -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate+IM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate+IM.m -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate+NetMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate+NetMonitor.h -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate+NetMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate+NetMonitor.m -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate+Weex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate+Weex.h -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate+Weex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate+Weex.m -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate.h -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/AppDelegate/AppDelegate.m -------------------------------------------------------------------------------- /RSChat/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /RSChat/BaseUI/RSNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/RSNavigationController.h -------------------------------------------------------------------------------- /RSChat/BaseUI/RSNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/RSNavigationController.m -------------------------------------------------------------------------------- /RSChat/BaseUI/RSViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/RSViewController.h -------------------------------------------------------------------------------- /RSChat/BaseUI/RSViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/RSViewController.m -------------------------------------------------------------------------------- /RSChat/BaseUI/UIButton+RSExts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UIButton+RSExts.h -------------------------------------------------------------------------------- /RSChat/BaseUI/UIButton+RSExts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UIButton+RSExts.m -------------------------------------------------------------------------------- /RSChat/BaseUI/UICollectionViewCell+RSExts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UICollectionViewCell+RSExts.h -------------------------------------------------------------------------------- /RSChat/BaseUI/UICollectionViewCell+RSExts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UICollectionViewCell+RSExts.m -------------------------------------------------------------------------------- /RSChat/BaseUI/UIColor+RSExts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UIColor+RSExts.h -------------------------------------------------------------------------------- /RSChat/BaseUI/UIColor+RSExts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UIColor+RSExts.m -------------------------------------------------------------------------------- /RSChat/BaseUI/UIImage+RSExts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UIImage+RSExts.h -------------------------------------------------------------------------------- /RSChat/BaseUI/UIImage+RSExts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UIImage+RSExts.m -------------------------------------------------------------------------------- /RSChat/BaseUI/UITableViewCell+RSExts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UITableViewCell+RSExts.h -------------------------------------------------------------------------------- /RSChat/BaseUI/UITableViewCell+RSExts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/BaseUI/UITableViewCell+RSExts.m -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_1024x1024_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_1024x1024_@1x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_60x60_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_60x60_@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_60x60_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_60x60_@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RSChat/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /RSChat/Images.xcassets/LaunchImage.launchimage/BootImage_414x896_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/LaunchImage.launchimage/BootImage_414x896_@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /RSChat/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/hehai.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/hehai.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Images.xcassets/hehai.imageset/hehai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/hehai.imageset/hehai.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/placeholder_logo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/placeholder_logo.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Images.xcassets/placeholder_logo.imageset/placeholder_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/placeholder_logo.imageset/placeholder_logo@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/placeholder_logo.imageset/placeholder_logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Images.xcassets/placeholder_logo.imageset/placeholder_logo@3x.png -------------------------------------------------------------------------------- /RSChat/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Info.plist -------------------------------------------------------------------------------- /RSChat/Macro/RSChatMacro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Macro/RSChatMacro.h -------------------------------------------------------------------------------- /RSChat/Resource/favorites.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Resource/favorites.plist -------------------------------------------------------------------------------- /RSChat/Resource/homeNaviContacts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Resource/homeNaviContacts.plist -------------------------------------------------------------------------------- /RSChat/Resource/officialAccounts.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Resource/officialAccounts.plist -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSChatsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/RSChatsViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSChatsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/RSChatsViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSHomeSearchResultController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/RSHomeSearchResultController.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSHomeSearchResultController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/RSHomeSearchResultController.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSMessageViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/RSMessageViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSMessageViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/RSMessageViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSNewsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/RSNewsViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSNewsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/RSNewsViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/WEEXDemo/RSWeexImgLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/WEEXDemo/RSWeexImgLoader.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/WEEXDemo/RSWeexImgLoader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/WEEXDemo/RSWeexImgLoader.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/WEEXDemo/WEEXDemoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/WEEXDemo/WEEXDemoVC.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/WEEXDemo/WEEXDemoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/WEEXDemo/WEEXDemoVC.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/WEEXDemo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Controllers/WEEXDemo/index.js -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Models/RSHomeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Models/RSHomeModel.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Models/RSHomeModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Models/RSHomeModel.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Models/RSMessageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Models/RSMessageModel.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Models/RSMessageModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Models/RSMessageModel.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Models/RSNewsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Models/RSNewsModel.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Models/RSNewsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Models/RSNewsModel.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSChatToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSChatToolBar.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSChatToolBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSChatToolBar.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSHomeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSHomeCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSHomeCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSHomeCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSHomeCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSHomeCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSMessageCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSMessageCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSMessageCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSMessageCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsContentCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsContentCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsContentCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsContentCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsContentCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsContentCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsDateView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsDateView.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsDateView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsDateView.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsDateView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsDateView.xib -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsHeaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsHeaderCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsHeaderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsHeaderCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsHeaderCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSNewsHeaderCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSPopView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSPopView.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSPopView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSPopView.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSPopView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSPopView.xib -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSSearchTempView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSSearchTempView.h -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSSearchTempView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSSearchTempView.m -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSSearchTempView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Chats/Views/RSSearchTempView.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSAddFriendViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSAddFriendViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSAddFriendViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSAddFriendViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSContactsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSContactsViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSContactsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSContactsViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSDetailTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSDetailTableViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSDetailViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSDetailViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSGroupChatViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSGroupChatViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSGroupChatViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSGroupChatViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSLabelViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSLabelViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSLabelViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSLabelViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSNewFriendViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSNewFriendViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSNewFriendViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSNewFriendViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSOfficialAccountViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSOfficialAccountViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSOfficialAccountViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSOfficialAccountViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSVideoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSVideoViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSVideoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSVideoViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSVideoViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Controllers/RSVideoViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Models/RSContactsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Models/RSContactsModel.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Models/RSContactsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Models/RSContactsModel.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSActionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSActionView.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSActionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSActionView.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSActionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSActionView.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSAddFriendCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSAddFriendCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSAddFriendCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSAddFriendCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSAddFriendCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSAddFriendCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSContactCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSContactCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSContactCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSContactCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSContactCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSContactCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSDetailFirstCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSDetailFirstCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSDetailFirstCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSDetailFirstCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSDetailFirstCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSDetailFirstCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSDetailSecondCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSDetailSecondCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSDetailSecondCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSDetailSecondCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSDetailSecondCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSDetailSecondCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSLabelBlankView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSLabelBlankView.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSLabelBlankView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSLabelBlankView.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSLabelBlankView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSLabelBlankView.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSMessageVideoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSMessageVideoCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSMessageVideoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSMessageVideoCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSMessageVideoCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSMessageVideoCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSNewFriendCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSNewFriendCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSNewFriendCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSNewFriendCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSNewFriendCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSNewFriendCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSOfficialCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSOfficialCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSOfficialCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSOfficialCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSOfficialCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSOfficialCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSSearchFriendCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSSearchFriendCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSSearchFriendCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSSearchFriendCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSSearchFriendCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Contacts/Views/RSSearchFriendCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSBottleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSBottleViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSBottleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSBottleViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSBottleViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSBottleViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSBuyViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSBuyViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSBuyViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSBuyViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSDiscoverViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSDiscoverViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSDiscoverViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSDiscoverViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSFriendsCircleViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSFriendsCircleViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSFriendsCircleViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSFriendsCircleViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSGameDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSGameDetailViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSGameDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSGameDetailViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSGameDetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSGameDetailViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSGameViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSGameViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSGameViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSGameViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSLocalViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSLocalViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSLocalViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSLocalViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSLocalViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSLocalViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanCodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSScanCodeViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanCodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSScanCodeViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanCodeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSScanCodeViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanResultViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSScanResultViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanResultViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSScanResultViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanResultViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSScanResultViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSScanViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSScanViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSShakeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSShakeViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSShakeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSShakeViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSShakeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Controllers/RSShakeViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Models/RSAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Models/RSAnnotation.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Models/RSAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Models/RSAnnotation.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Models/RSDiscoverModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Models/RSDiscoverModel.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Models/RSDiscoverModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Models/RSDiscoverModel.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Models/RSFriendsModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Models/RSFriendsModel.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Models/RSFriendsModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Models/RSFriendsModel.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSDiscoverCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSDiscoverCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSDiscoverCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSDiscoverCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSDiscoverCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSDiscoverCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSFriendsACell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSFriendsACell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSFriendsACell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSFriendsACell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSFriendsACell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSFriendsACell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSFriendsCircleHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSFriendsCircleHeader.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSFriendsCircleHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSFriendsCircleHeader.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSFriendsHeaderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSFriendsHeaderView.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameACell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameACell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameACell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameACell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameACell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameACell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameBCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameBCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameBCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameBCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameBCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameBCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameCCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameCCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameCCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameCCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameCCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameCCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailACell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailACell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailACell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailACell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailACell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailACell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailBCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailBCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailBCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailBCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailBCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailBCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailHeader.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailHeader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailHeader.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailHeader.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameDetailHeader.xib -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameECell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameECell.h -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameECell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameECell.m -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameECell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Discover/Views/RSGameECell.xib -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSConformViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSConformViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSConformViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSConformViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSConformViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSConformViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSCountryListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSCountryListViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSCountryListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSCountryListViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSLoginViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSLoginViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSLoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSLoginViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSOtherLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSOtherLoginViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSOtherLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSOtherLoginViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSOtherLoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSOtherLoginViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSQuestionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSQuestionViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSQuestionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSQuestionViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSSignUpViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSSignUpViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSSignUpViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSSignUpViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSSignUpViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/LogInOut/RSSignUpViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSAlbumViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSAlbumViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSAlbumViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSAlbumViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSAlbumViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSAlbumViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSCreatCodeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSCreatCodeViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSCreatCodeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSCreatCodeViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSCreatCodeViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSCreatCodeViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSEmotionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSEmotionViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSEmotionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSEmotionViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSFavoritesViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSFavoritesViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSFavoritesViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSFavoritesViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSMeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSMeViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSMeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSMeViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSMoneyCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSMoneyCollectionViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSMoneyCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSMoneyCollectionViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSMoneyCollectionViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSMoneyCollectionViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSPrivateViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSPrivateViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSPrivateViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSPrivateViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSReLoginViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSReLoginViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSReLoginViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSReLoginViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSReLoginViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSReLoginViewController.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSSettingViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSSettingViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSSettingViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Controllers/RSSettingViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Models/RSMeModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Models/RSMeModel.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Models/RSMeModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Models/RSMeModel.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Models/RSMePrivateModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Models/RSMePrivateModel.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Models/RSMePrivateModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Models/RSMePrivateModel.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSAutoDisplayCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSAutoDisplayCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSAutoDisplayCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSAutoDisplayCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSAutoDisplayCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSAutoDisplayCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSEmotionACell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSEmotionACell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSEmotionACell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSEmotionACell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSEmotionACell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSEmotionACell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSFavoriteCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSFavoriteCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSFavoriteCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSFavoriteCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSFavoriteCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSFavoriteCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSLogoutCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSLogoutCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSLogoutCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSLogoutCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSLogoutCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSLogoutCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMeHeaderCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMeHeaderCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMeHeaderCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMeHeaderCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMeHeaderCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMeHeaderCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMeOtherCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMeOtherCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMeOtherCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMeOtherCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMeOtherCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMeOtherCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMoneyACell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMoneyACell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMoneyACell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMoneyACell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMoneyACell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMoneyACell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMoneyCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMoneyCollectionView.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMoneyCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMoneyCollectionView.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSMoneyCollectionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSMoneyCollectionView.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSPrivateOtherCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSPrivateOtherCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSPrivateOtherCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSPrivateOtherCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSPrivateOtherCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSPrivateOtherCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSPrivateTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSPrivateTableViewCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSPrivateTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSPrivateTableViewCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSPrivateTableViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSPrivateTableViewCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSSettingCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSSettingCell.h -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSSettingCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSSettingCell.m -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSSettingCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Mine/Views/RSSettingCell.xib -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/AlbumNewNotify.imageset/AlbumNewNotify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/AlbumNewNotify.imageset/AlbumNewNotify@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/AlbumNewNotify.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/AlbumNewNotify.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Artboard 24.imageset/Artboard 24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Artboard 24.imageset/Artboard 24@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Artboard 24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Artboard 24.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/AlbumKeyboardTopBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/AlbumKeyboardTopBkg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrame.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrame.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrameHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrameHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrameLine.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrameLine.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/Mycard_Newmessage.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/Mycard_Newmessage.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/Plugins_News_avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/Plugins_News_avatar.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReadVerified_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ReadVerified_icon.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkgHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkgHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkgHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkgHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotion.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotion.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotionHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotionHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoice.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoice.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoiceHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoiceHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboard.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboardHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboardHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtn_Black.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtn_Black.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/VoiceSearchStartBtn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/VoiceSearchStartBtn.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/VoiceSearchStartBtnHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/VoiceSearchStartBtnHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_back.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_1.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_1.imageset/cartoon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_1.imageset/cartoon_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_2.imageset/cartoon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_2.imageset/cartoon_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_3.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_3.imageset/cartoon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_3.imageset/cartoon_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_4.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_4.imageset/cartoon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_4.imageset/cartoon_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_5.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_5.imageset/cartoon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_5.imageset/cartoon_5.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_6.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_6.imageset/cartoon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_6.imageset/cartoon_6.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_7.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_7.imageset/cartoon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_7.imageset/cartoon_7.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_8.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_8.imageset/cartoon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_8.imageset/cartoon_8.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_9.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_9.imageset/cartoon_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_9.imageset/cartoon_9.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_friend.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_friend.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_money.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_money.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_scan.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_scan.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_article_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_article_icon.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_sns_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_sns_icon.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/test.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/test.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/test.imageset/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Chats/test.imageset/test.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Female.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Female.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Male.imageset/Contact_Male@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Male.imageset/Contact_Male@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Male.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Male.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_myQR.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_myQR.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/common_gray_btn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/common_gray_btn.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/common_green_btn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/common_green_btn.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_apple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_apple.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_apple.imageset/public_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_apple.imageset/public_apple.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_clock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_clock.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_clock.imageset/public_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_clock.imageset/public_clock.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_cocoaChina.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_cocoaChina.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_ios9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_ios9.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_ios9.imageset/public_ios9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_ios9.imageset/public_ios9.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_tencent.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_tencent.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_tencent.imageset/public_tencent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_tencent.imageset/public_tencent.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_umeng.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_umeng.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_umeng.imageset/public_umeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_umeng.imageset/public_umeng.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_weex.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_weex.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_weex.imageset/public_weex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_weex.imageset/public_weex.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_xcode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_xcode.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_xcode.imageset/public_xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contacts/public_xcode.imageset/public_xcode.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMore.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMore.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMoreHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMoreHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/FootStep.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/FootStep.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/FootStep.imageset/FootStep@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/FootStep.imageset/FootStep@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/GameCenterMyGift.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/GameCenterMyGift.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/GameCenterMyMsg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/GameCenterMyMsg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MT2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/MT2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MT2.imageset/MT2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/MT2.imageset/MT2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/MoreGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/MoreGame.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/MoreGame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/MoreGame@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/MoreGame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/MoreGame@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MyGameBtnGrayHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/MyGameBtnGrayHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MyGameBtnGreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/MyGameBtnGreen.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR1.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR1.imageset/ScanQR1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR1.imageset/ScanQR1@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR1.imageset/ScanQR1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR1.imageset/ScanQR1@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR2.imageset/ScanQR2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR2.imageset/ScanQR2@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR2.imageset/ScanQR2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR2.imageset/ScanQR2@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR3.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR3.imageset/ScanQR3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR3.imageset/ScanQR3@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR3.imageset/ScanQR3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR3.imageset/ScanQR3@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR4.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR4.imageset/ScanQR4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR4.imageset/ScanQR4@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR4.imageset/ScanQR4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR4.imageset/ScanQR4@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode.imageset/ScanQRCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode.imageset/ScanQRCode@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode.imageset/ScanQRCode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode.imageset/ScanQRCode@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode_HL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode_HL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet.imageset/ScanStreet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet.imageset/ScanStreet@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet.imageset/ScanStreet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet.imageset/ScanStreet@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet_HL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet_HL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanWord.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanWord.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanWord.imageset/ScanWord@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanWord.imageset/ScanWord@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanWord.imageset/ScanWord@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanWord.imageset/ScanWord@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanWord_HL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanWord_HL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanWord_HL.imageset/ScanWord_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanWord_HL.imageset/ScanWord_HL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanWord_HL.imageset/ScanWord_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ScanWord_HL.imageset/ScanWord_HL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Scantv.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Scantv.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Scantv.imageset/Scantv@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Scantv.imageset/Scantv@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Scantv_HL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Scantv_HL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Scantv_HL.imageset/Scantv_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Scantv_HL.imageset/Scantv_HL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ShakeHideImg_women.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ShakeHideImg_women.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_Line_Down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_Line_Down.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_Line_Up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_Line_Up.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_Logo_Down.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_Logo_Down.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_Logo_Up.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_Logo_Up.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_music.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_music.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_musicHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_musicHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_people.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_people.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_peopleHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_peopleHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_tv.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_tv.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_tvHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_tvHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ShakeforsongBgshade.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ShakeforsongBgshade.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleBkg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBkg.imageset/bottleBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleBkg.imageset/bottleBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBkgSpotLight.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleBkgSpotLight.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBoard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleBoard.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBoard.imageset/bottleBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleBoard.imageset/bottleBoard.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBoard.imageset/bottleBoard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleBoard.imageset/bottleBoard@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonFish.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonFish.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonMine.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonMine.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonThrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonThrow.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleEmpty.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleEmpty.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleEmpty.imageset/bottleEmpty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleEmpty.imageset/bottleEmpty@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleMaskBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleMaskBkg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleNightBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/bottleNightBkg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/ff_IconBottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/ff_IconBottle.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/ff_IconQRCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/ff_IconQRCode.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/ff_IconShake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/ff_IconShake.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/ff_IconShake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/ff_IconShake@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/ff_IconShake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/ff_IconShake@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShowAlbum.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShowAlbum.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/friendsHeader_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/friendsHeader_icon.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_0.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_0.imageset/game_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_0.imageset/game_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_1.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_1.imageset/game_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_1.imageset/game_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_10.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_10.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_10.imageset/game_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_10.imageset/game_10.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_11.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_11.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_11.imageset/game_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_11.imageset/game_11.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_12.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_12.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_12.imageset/game_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_12.imageset/game_12.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_13.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_13.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_13.imageset/game_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_13.imageset/game_13.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_14.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_14.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_14.imageset/game_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_14.imageset/game_14.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_15.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_15.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_15.imageset/game_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_15.imageset/game_15.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_16.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_16.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_16.imageset/game_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_16.imageset/game_16.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_17.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_17.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_17.imageset/game_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_17.imageset/game_17.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_18.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_18.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_18.imageset/game_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_18.imageset/game_18.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_19.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_19.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_19.imageset/game_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_19.imageset/game_19.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_2.imageset/game_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_2.imageset/game_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_20.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_20.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_20.imageset/game_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_20.imageset/game_20.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_21.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_21.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_21.imageset/game_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_21.imageset/game_21.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_22.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_22.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_22.imageset/game_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_22.imageset/game_22.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_23.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_23.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_23.imageset/game_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_23.imageset/game_23.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_24.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_24.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_24.imageset/game_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_24.imageset/game_24.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_25.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_25.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_25.imageset/game_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_25.imageset/game_25.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_26.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_26.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_26.imageset/game_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_26.imageset/game_26.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_27.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_27.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_27.imageset/game_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_27.imageset/game_27.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_28.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_28.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_28.imageset/game_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_28.imageset/game_28.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_29.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_29.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_29.imageset/game_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_29.imageset/game_29.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_3.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_3.imageset/game_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_3.imageset/game_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_30.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_30.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_30.imageset/game_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_30.imageset/game_30.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_31.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_31.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_31.imageset/game_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_31.imageset/game_31.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_32.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_32.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_32.imageset/game_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_32.imageset/game_32.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_4.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_4.imageset/game_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_4.imageset/game_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_5.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_5.imageset/game_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_5.imageset/game_5.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_6.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_6.imageset/game_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_6.imageset/game_6.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_7.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_7.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_7.imageset/game_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_7.imageset/game_7.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_8.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_8.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_8.imageset/game_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_8.imageset/game_8.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_9.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_9.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_9.imageset/game_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_9.imageset/game_9.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_a.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_a.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_a.imageset/game_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_a.imageset/game_a.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_b.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_b.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_b.imageset/game_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_b.imageset/game_b.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_c.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_c.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_c.imageset/game_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_c.imageset/game_c.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_d.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_d.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_d.imageset/game_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_d.imageset/game_d.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_e.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_e.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_e.imageset/game_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_e.imageset/game_e.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_f.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_f.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_f.imageset/game_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_f.imageset/game_f.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_g.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_g.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_g.imageset/game_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_g.imageset/game_g.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_h.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_h.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_h.imageset/game_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_h.imageset/game_h.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_i.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_i.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_i.imageset/game_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/game_i.imageset/game_i.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_classify_cafe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_classify_cafe.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_mark1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_mark1.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_mark1.imageset/icon_mark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_mark1.imageset/icon_mark1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_mark1.imageset/icon_mark1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_mark1.imageset/icon_mark1@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_mark2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_mark2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_mark2.imageset/icon_mark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_mark2.imageset/icon_mark2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_mark2.imageset/icon_mark2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_mark2.imageset/icon_mark2@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_openmap_item.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_openmap_item.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_pin_floating.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/icon_pin_floating.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/linetemp.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/linetemp.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/linetemp.imageset/linetemp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/linetemp.imageset/linetemp@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/pick_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/pick_bg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/pick_bg.imageset/pick_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/pick_bg.imageset/pick_bg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/pick_bg4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/pick_bg4.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/pick_bg4.imageset/pick_bg4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Discover/pick_bg4.imageset/pick_bg4@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/LogInOut/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/LogInOut/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/LogInOut/Login_bg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/LogInOut/Login_bg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/LogInOut/Login_bg.imageset/Login_bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/LogInOut/Login_bg.imageset/Login_bk.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/AlbumListCamera.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/AlbumListCamera.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/AlbumListCameraHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/AlbumListCameraHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/Artboard 23.imageset/Artboard 23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/Artboard 23.imageset/Artboard 23@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/Artboard 23.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/Artboard 23.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/EmotionsEmojiHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/EmotionsEmojiHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/EmotionsEmojiHL.imageset/EmotionsEmojiHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/EmotionsEmojiHL.imageset/EmotionsEmojiHL.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/IMG_0592.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/IMG_0592.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/IMG_0592.imageset/IMG_0592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/IMG_0592.imageset/IMG_0592.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyAlbum.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyAlbum.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyAlbum.imageset/MoreMyAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyAlbum.imageset/MoreMyAlbum@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyAlbum.imageset/MoreMyAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyAlbum.imageset/MoreMyAlbum@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyBankCard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyBankCard.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyBankCard.imageset/MoreMyBankCard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyBankCard.imageset/MoreMyBankCard@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyBankCard.imageset/MoreMyBankCard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyBankCard.imageset/MoreMyBankCard@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyFavorites.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyFavorites.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreSetting.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreSetting.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreSetting.imageset/MoreSetting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreSetting.imageset/MoreSetting@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreSetting.imageset/MoreSetting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/MoreSetting.imageset/MoreSetting@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOff.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOff.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOn.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOn.imageset/ProfileLockOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOn.imageset/ProfileLockOn@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOn.imageset/ProfileLockOn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOn.imageset/ProfileLockOn@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/Report_Success_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/Report_Success_icon.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_0.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_0.imageset/em_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_0.imageset/em_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_1.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_1.imageset/em_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_1.imageset/em_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_2.imageset/em_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_2.imageset/em_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_3.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_3.imageset/em_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_3.imageset/em_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_4.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_4.imageset/em_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/em_4.imageset/em_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_0.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_0.imageset/emo_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_0.imageset/emo_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_1.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_1.imageset/emo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_1.imageset/emo_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_2.imageset/emo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_2.imageset/emo_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_3.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_3.imageset/emo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_3.imageset/emo_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_4.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_4.imageset/emo_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_4.imageset/emo_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_5.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_5.imageset/emo_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_5.imageset/emo_5.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_6.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_6.imageset/emo_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emo_6.imageset/emo_6.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_0.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_0.imageset/emotion_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_0.imageset/emotion_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_1.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_1.imageset/emotion_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_1.imageset/emotion_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_2.imageset/emotion_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_2.imageset/emotion_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_3.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_3.imageset/emotion_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_3.imageset/emotion_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_4.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_4.imageset/emotion_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_4.imageset/emotion_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_5.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_5.imageset/emotion_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/emotion_5.imageset/emotion_5.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_0.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/favorite_0.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_0.imageset/favorite_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/favorite_0.imageset/favorite_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/favorite_1.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_1.imageset/favorite_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/favorite_1.imageset/favorite_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/favorite_2.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_2.imageset/favorite_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/favorite_2.imageset/favorite_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/favorite_3.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_3.imageset/favorite_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/favorite_3.imageset/favorite_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/setting_myQR.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/setting_myQR.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/setting_myQR.imageset/setting_myQR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/setting_myQR.imageset/setting_myQR@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/xiaohuangren.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/xiaohuangren.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/xiaohuangren.imageset/xiaohuangren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/Mine/xiaohuangren.imageset/xiaohuangren.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/TableViewArrow.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/TableViewArrow.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/TableViewArrow.imageset/TableViewArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/TableViewArrow.imageset/TableViewArrow@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/barbuttonicon_add.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_add_cube.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/barbuttonicon_add_cube.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_more.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/barbuttonicon_more.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/barbuttonicon_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/barbuttonicon_set.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbarBkg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbarBkg.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbarBkg.imageset/tabbarBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbarBkg.imageset/tabbarBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_badge.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_badge.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contacts.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contacts.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contactsHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contactsHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discover.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discover.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discoverHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discoverHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframe.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframe.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframeHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframeHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mine.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mine.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mine.imageset/tabbar_mine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mine.imageset/tabbar_mine@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mine.imageset/tabbar_mine@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mine.imageset/tabbar_mine@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mineHL.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mineHL.imageset/Contents.json -------------------------------------------------------------------------------- /RSChat/Sections/RSMainTabBarController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/RSMainTabBarController.h -------------------------------------------------------------------------------- /RSChat/Sections/RSMainTabBarController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/RSMainTabBarController.m -------------------------------------------------------------------------------- /RSChat/Sections/Welcome/RSLngListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Welcome/RSLngListViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Welcome/RSLngListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Welcome/RSLngListViewController.m -------------------------------------------------------------------------------- /RSChat/Sections/Welcome/RSWelcomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Welcome/RSWelcomeViewController.h -------------------------------------------------------------------------------- /RSChat/Sections/Welcome/RSWelcomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Sections/Welcome/RSWelcomeViewController.m -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarCameraSimulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarCameraSimulator.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarCaptureReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarCaptureReader.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarHelpController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarHelpController.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarImage.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarImageScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarImageScanner.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarReaderController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarReaderController.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarReaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarReaderView.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarReaderViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarReaderViewController.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarSDK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarSDK.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/ZBarSymbol.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Decoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Decoder.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Exception.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Image.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/ImageScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/ImageScanner.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Processor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Processor.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Scanner.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Symbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Symbol.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Video.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Headers/ZBarSDK/zbar/Window.h -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/README -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Resources/zbar-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Resources/zbar-back.png -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Resources/zbar-help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Resources/zbar-help.html -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Resources/zbar-helpicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Resources/zbar-helpicons.png -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Resources/zbar-samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/Resources/zbar-samples.png -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/libzbar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/Vendors/ZBarSDK-master/libzbar.a -------------------------------------------------------------------------------- /RSChat/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /RSChat/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /RSChat/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/main.m -------------------------------------------------------------------------------- /RSChat/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/zh-Hans.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /RSChat/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChat/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /RSChatTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChatTests/Info.plist -------------------------------------------------------------------------------- /RSChatTests/RSChatTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/RSChatTests/RSChatTests.m -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/AppIcon_Old/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/AppIcon_Old/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/AppIcon_Old/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/AppIcon_Old/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/AppIcon_Old/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/AppIcon_Old/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /Resources/README_OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/README_OLD.md -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_001.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_New/IMG_001.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_002.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_New/IMG_002.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_003.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_New/IMG_003.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_004.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_New/IMG_004.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_005.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_New/IMG_005.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_Old/test_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_Old/test_0.gif -------------------------------------------------------------------------------- /Resources/ScreenShot_Old/test_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_Old/test_1.gif -------------------------------------------------------------------------------- /Resources/ScreenShot_Old/test_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_Old/test_2.gif -------------------------------------------------------------------------------- /Resources/ScreenShot_Old/test_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/HEAD/Resources/ScreenShot_Old/test_3.gif --------------------------------------------------------------------------------