├── .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 /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '8.1' 2 | 3 | inhibit_all_warnings! 4 | 5 | target "RSChat" do 6 | 7 | pod 'AFNetworking', '3.2.1' 8 | pod 'SDWebImage', '4.4.2' 9 | pod 'MBProgressHUD', '1.1.0' 10 | pod 'MJRefresh', '~> 3.1.0' 11 | pod 'Mantle', '2.1.0' 12 | pod 'FMDB', '2.7.2' 13 | pod 'SAMKeychain', '1.5.3' 14 | pod 'MLTransition', '2.1.3' 15 | pod 'Masonry', '1.1.0' 16 | 17 | pod 'WeexSDK' 18 | 19 | end 20 | -------------------------------------------------------------------------------- /RSChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /RSChat.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /RSChat.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /RSChat/AppDelegate/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/10/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import 12 | 13 | @interface AppDelegate : UIResponder 14 | 15 | @property (nonatomic, strong) UIWindow *window; 16 | 17 | @end 18 | 19 | -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon20x20@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon20x20@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_1024x1024_@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_1024x1024_@1x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_60x60_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_60x60_@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_60x60_@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/AppIcon.appiconset/AppIcon_60x60_@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RSChat/Images.xcassets/LaunchImage.launchimage/BootImage_414x896_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/LaunchImage.launchimage/BootImage_414x896_@2x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-Portrait-736h@3x.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/hehai.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hehai.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Images.xcassets/hehai.imageset/hehai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/hehai.imageset/hehai.png -------------------------------------------------------------------------------- /RSChat/Images.xcassets/placeholder_logo.imageset/placeholder_logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Images.xcassets/placeholder_logo.imageset/placeholder_logo@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSChatsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSChatsViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/10/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSChatsViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/RSNewsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSNewsViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/19/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSNewsViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/WEEXDemo/RSWeexImgLoader.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSWeexImgLoader.h 3 | // RSChat 4 | // 5 | // Created by hehai on 2019/3/11. 6 | // Copyright © 2019 hehai. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | NS_ASSUME_NONNULL_BEGIN 13 | 14 | @interface RSWeexImgLoader : NSObject 15 | 16 | @end 17 | 18 | NS_ASSUME_NONNULL_END 19 | -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Controllers/WEEXDemo/WEEXDemoVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // WEEXDemoVC.h 3 | // RSChat 4 | // 5 | // Created by hehai on 2019/3/11. 6 | // Copyright © 2019 hehai. All rights reserved. 7 | // 8 | 9 | #import "RSViewController.h" 10 | 11 | NS_ASSUME_NONNULL_BEGIN 12 | 13 | @interface WEEXDemoVC : RSViewController 14 | 15 | @end 16 | 17 | NS_ASSUME_NONNULL_END 18 | -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsContentCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSNewsContentCell.m 3 | // RSChat 4 | // 5 | // Created by hehai on 11/19/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSNewsContentCell.h" 12 | 13 | @implementation RSNewsContentCell 14 | 15 | + (CGFloat)rowHeight { 16 | return 60; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSNewsDateView.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSNewsDateView.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/26/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import 12 | 13 | @interface RSNewsDateView : UIView 14 | 15 | @property (weak, nonatomic) IBOutlet UILabel *dateLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /RSChat/Sections/Chats/Views/RSSearchTempView.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSSearchTempView.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/5/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import 12 | 13 | @interface RSSearchTempView : UIView 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSAddFriendViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSAddFriendViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/3/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSAddFriendViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSContactsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSContactsViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/10/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSContactsViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSGroupChatViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSGroupChatViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/18/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSGroupChatViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSLabelViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSLabelViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/18/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSLabelViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSNewFriendViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSNewFriendViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/17/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSNewFriendViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSOfficialAccountViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSOfficialAccountViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/18/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSOfficialAccountViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Controllers/RSVideoViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSVideoViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/29/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSVideoViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSLabelBlankView.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSLabelBlankView.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/18/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import 12 | 13 | @interface RSLabelBlankView : UIView 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Contacts/Views/RSSearchFriendCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSSearchFriendCell.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/5/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RSSearchFriendCell : UITableViewCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSBottleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSBottleViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/4/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSBottleViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSBuyViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSBuyViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/8/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSBuyViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSDiscoverViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSDiscoverViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/10/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSDiscoverViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSFriendsCircleViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSFriendsCircleViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/5/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSFriendsCircleViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSGameDetailViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSGameDetailViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/4/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSGameDetailViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSGameViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSGameViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/4/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSGameViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSLocalViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSLocalViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/29/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSLocalViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSScanViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSScanViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/29/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSScanViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Controllers/RSShakeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSShakeViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/29/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSShakeViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Models/RSAnnotation.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSAnnotation.m 3 | // RSChat 4 | // 5 | // Created by hehai on 12/4/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSAnnotation.h" 12 | 13 | @implementation RSAnnotation 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameBCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSGameBCell.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/4/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "UITableViewCell+RSExts.h" 12 | 13 | @interface RSGameBCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSGameDCell.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/4/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "UITableViewCell+RSExts.h" 12 | 13 | @interface RSGameDCell : UITableViewCell 14 | 15 | @property (weak, nonatomic) IBOutlet UILabel *numLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailBCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSGameDetailBCell.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/4/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "UITableViewCell+RSExts.h" 12 | 13 | @interface RSGameDetailBCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameDetailBCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSGameDetailBCell.m 3 | // RSChat 4 | // 5 | // Created by hehai on 1/4/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSGameDetailBCell.h" 12 | 13 | @implementation RSGameDetailBCell 14 | 15 | + (CGFloat)rowHeight { 16 | return 90; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /RSChat/Sections/Discover/Views/RSGameECell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSGameECell.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/4/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "UITableViewCell+RSExts.h" 12 | 13 | @interface RSGameECell : UITableViewCell 14 | 15 | @property (weak, nonatomic) IBOutlet UILabel *numLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSLoginViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSLoginViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 15/12/22. 6 | // Copyright (c) 2015年 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSLoginViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSOtherLoginViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSOtherLoginViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 15/12/23. 6 | // Copyright © 2015年 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSOtherLoginViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/LogInOut/RSSignUpViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSSignUpViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 15/12/22. 6 | // Copyright © 2015年 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSSignUpViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSAlbumViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSAlbumViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/6/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSAlbumViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSEmotionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSEmotionViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/6/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSEmotionViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSFavoritesViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSFavoritesViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/6/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSFavoritesViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSMeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSMeViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 11/10/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSMeViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSMoneyCollectionViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSMoneyCollectionViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 1/6/16. 6 | // Copyright © 2016 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import 12 | 13 | @interface RSMoneyCollectionViewController : UICollectionViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSPrivateViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSPrivateViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/3/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSPrivateViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSReLoginViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSReLoginViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/30/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSReLoginViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Controllers/RSSettingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSSettingViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/30/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSSettingViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSLogoutCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSLogoutCell.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/30/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "UITableViewCell+RSExts.h" 12 | 13 | @interface RSLogoutCell : UITableViewCell 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSLogoutCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSLogoutCell.m 3 | // RSChat 4 | // 5 | // Created by hehai on 12/30/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSLogoutCell.h" 12 | 13 | @implementation RSLogoutCell 14 | 15 | + (CGFloat)cellHeight { 16 | return 43; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /RSChat/Sections/Mine/Views/RSSettingCell.m: -------------------------------------------------------------------------------- 1 | // 2 | // RSSettingCell.m 3 | // RSChat 4 | // 5 | // Created by hehai on 12/30/15. 6 | // Copyright © 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSSettingCell.h" 12 | 13 | @implementation RSSettingCell 14 | 15 | + (CGFloat)cellHeight { 16 | return 43; 17 | } 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/AlbumNewNotify.imageset/AlbumNewNotify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/AlbumNewNotify.imageset/AlbumNewNotify@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/AlbumNewNotify.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "AlbumNewNotify@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Artboard 24.imageset/Artboard 24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Artboard 24.imageset/Artboard 24@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Artboard 24.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "Artboard 24@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/AlbumKeyboardTopBkg.imageset/AlbumKeyboardTopBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/AlbumKeyboardTopBkg.imageset/AlbumKeyboardTopBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrame.imageset/MoreFunctionFrame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrame.imageset/MoreFunctionFrame@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrame.imageset/MoreFunctionFrame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrame.imageset/MoreFunctionFrame@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrameHL.imageset/MoreFunctionFrameHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrameHL.imageset/MoreFunctionFrameHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrameLine.imageset/MoreFunctionFrameLine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/MoreFunctionFrameLine.imageset/MoreFunctionFrameLine@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/Mycard_Newmessage.imageset/Mycard_Newmessage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/Mycard_Newmessage.imageset/Mycard_Newmessage@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/Plugins_News_avatar.imageset/Plugins_News_avatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/Plugins_News_avatar.imageset/Plugins_News_avatar@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReadVerified_icon.imageset/ReadVerified_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ReadVerified_icon.imageset/ReadVerified_icon@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReadVerified_icon.imageset/ReadVerified_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ReadVerified_icon.imageset/ReadVerified_icon@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@2x~ipad.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkg.imageset/ReceiverTextNodeBkg@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@2x~ipad.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ReceiverTextNodeBkgHL.imageset/ReceiverTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkg.imageset/SenderTextNodeBkg@2x~ipad.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkg.imageset/SenderTextNodeBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkg.imageset/SenderTextNodeBkg@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@2x~ipad.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/SenderTextNodeBkgHL.imageset/SenderTextNodeBkgHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotion.imageset/ToolViewEmotion@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotion.imageset/ToolViewEmotion@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotion.imageset/ToolViewEmotion@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotion.imageset/ToolViewEmotion@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotionHL.imageset/ToolViewEmotionHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotionHL.imageset/ToolViewEmotionHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotionHL.imageset/ToolViewEmotionHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewEmotionHL.imageset/ToolViewEmotionHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoice.imageset/ToolViewInputVoice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoice.imageset/ToolViewInputVoice@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoice.imageset/ToolViewInputVoice@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoice.imageset/ToolViewInputVoice@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoiceHL.imageset/ToolViewInputVoiceHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoiceHL.imageset/ToolViewInputVoiceHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoiceHL.imageset/ToolViewInputVoiceHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewInputVoiceHL.imageset/ToolViewInputVoiceHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboard.imageset/ToolViewKeyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboard.imageset/ToolViewKeyboard@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboard.imageset/ToolViewKeyboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboard.imageset/ToolViewKeyboard@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboardHL.imageset/ToolViewKeyboardHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboardHL.imageset/ToolViewKeyboardHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboardHL.imageset/ToolViewKeyboardHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/ToolViewKeyboardHL.imageset/ToolViewKeyboardHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtnHL_Black.imageset/TypeSelectorBtnHL_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtnHL_Black.imageset/TypeSelectorBtnHL_Black@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtnHL_Black.imageset/TypeSelectorBtnHL_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtnHL_Black.imageset/TypeSelectorBtnHL_Black@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtn_Black.imageset/TypeSelectorBtn_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtn_Black.imageset/TypeSelectorBtn_Black@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtn_Black.imageset/TypeSelectorBtn_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/TypeSelectorBtn_Black.imageset/TypeSelectorBtn_Black@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/VoiceSearchStartBtn.imageset/VoiceSearchStartBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/VoiceSearchStartBtn.imageset/VoiceSearchStartBtn@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/VoiceSearchStartBtnHL.imageset/VoiceSearchStartBtnHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/VoiceSearchStartBtnHL.imageset/VoiceSearchStartBtnHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_InfoSingle.imageset/barbuttonicon_InfoSingle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_InfoSingle.imageset/barbuttonicon_InfoSingle.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_InfoSingle.imageset/barbuttonicon_InfoSingle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_InfoSingle.imageset/barbuttonicon_InfoSingle@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_InfoSingle.imageset/barbuttonicon_InfoSingle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_InfoSingle.imageset/barbuttonicon_InfoSingle@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_back.imageset/barbuttonicon_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_back.imageset/barbuttonicon_back.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_back.imageset/barbuttonicon_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_back.imageset/barbuttonicon_back@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_back.imageset/barbuttonicon_back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/barbuttonicon_back.imageset/barbuttonicon_back@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_1.imageset/cartoon_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_1.imageset/cartoon_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_2.imageset/cartoon_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_2.imageset/cartoon_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_3.imageset/cartoon_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_3.imageset/cartoon_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_4.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_4.imageset/cartoon_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_4.imageset/cartoon_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_5.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_5.imageset/cartoon_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_5.imageset/cartoon_5.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_6.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_6.imageset/cartoon_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_6.imageset/cartoon_6.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_7.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_7.imageset/cartoon_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_7.imageset/cartoon_7.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_8.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_8.imageset/cartoon_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_8.imageset/cartoon_8.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "cartoon_9.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/cartoon_9.imageset/cartoon_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/cartoon_9.imageset/cartoon_9.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_friend.imageset/contacts_add_friend@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_friend.imageset/contacts_add_friend@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_friend.imageset/contacts_add_friend@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_friend.imageset/contacts_add_friend@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_money.imageset/contacts_add_money@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_money.imageset/contacts_add_money@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_money.imageset/contacts_add_money@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_money.imageset/contacts_add_money@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_newmessage.imageset/contacts_add_newmessage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_newmessage.imageset/contacts_add_newmessage@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_newmessage.imageset/contacts_add_newmessage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_newmessage.imageset/contacts_add_newmessage@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_scan.imageset/contacts_add_scan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_scan.imageset/contacts_add_scan@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_scan.imageset/contacts_add_scan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/contacts_add_scan.imageset/contacts_add_scan@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_article_icon.imageset/fts_edu_article_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_article_icon.imageset/fts_edu_article_icon@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_brandcontact_icon.imageset/fts_edu_brandcontact_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_brandcontact_icon.imageset/fts_edu_brandcontact_icon@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_sns_icon.imageset/fts_edu_sns_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/fts_edu_sns_icon.imageset/fts_edu_sns_icon@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/test.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "test.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Chats/test.imageset/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Chats/test.imageset/test.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Female.imageset/Contact_Female@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Female.imageset/Contact_Female@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Male.imageset/Contact_Male@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/Contact_Male.imageset/Contact_Male@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contact_icon_ContactTag.imageset/Contact_icon_ContactTag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/Contact_icon_ContactTag.imageset/Contact_icon_ContactTag@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contact_icon_ContactTag.imageset/Contact_icon_ContactTag@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/Contact_icon_ContactTag.imageset/Contact_icon_ContactTag@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/FriendCardNodeIconMobile.imageset/FriendCardNodeIconMobile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/FriendCardNodeIconMobile.imageset/FriendCardNodeIconMobile@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/FriendCardNodeIconQQ.imageset/FriendCardNodeIconQQ@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/FriendCardNodeIconQQ.imageset/FriendCardNodeIconQQ@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_addgroup.imageset/add_friend_icon_addgroup@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_addgroup.imageset/add_friend_icon_addgroup@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_addgroup.imageset/add_friend_icon_addgroup@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_addgroup.imageset/add_friend_icon_addgroup@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_contacts.imageset/add_friend_icon_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_contacts.imageset/add_friend_icon_contacts@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_contacts.imageset/add_friend_icon_contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_contacts.imageset/add_friend_icon_contacts@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_invite.imageset/add_friend_icon_invite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_invite.imageset/add_friend_icon_invite@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_invite.imageset/add_friend_icon_invite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_invite.imageset/add_friend_icon_invite@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_offical.imageset/add_friend_icon_offical@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_offical.imageset/add_friend_icon_offical@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_offical.imageset/add_friend_icon_offical@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_offical.imageset/add_friend_icon_offical@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_reda.imageset/add_friend_icon_reda@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_reda.imageset/add_friend_icon_reda@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_reda.imageset/add_friend_icon_reda@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_reda.imageset/add_friend_icon_reda@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_scanqr.imageset/add_friend_icon_scanqr@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_scanqr.imageset/add_friend_icon_scanqr@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_scanqr.imageset/add_friend_icon_scanqr@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_scanqr.imageset/add_friend_icon_scanqr@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_search.imageset/add_friend_icon_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_search.imageset/add_friend_icon_search@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_search.imageset/add_friend_icon_search@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_icon_search.imageset/add_friend_icon_search@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_myQR.imageset/add_friend_myQR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_myQR.imageset/add_friend_myQR@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_searchicon.imageset/add_friend_searchicon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/add_friend_searchicon.imageset/add_friend_searchicon@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/common_gray_btn.imageset/common_gray_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/common_gray_btn.imageset/common_gray_btn@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/common_green_btn.imageset/common_green_btn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/common_green_btn.imageset/common_green_btn@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/plugins_FriendNotify.imageset/plugins_FriendNotify@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/plugins_FriendNotify.imageset/plugins_FriendNotify@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/plugins_FriendNotify.imageset/plugins_FriendNotify@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/plugins_FriendNotify.imageset/plugins_FriendNotify@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_apple.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "public_apple.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_apple.imageset/public_apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/public_apple.imageset/public_apple.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_clock.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "public_clock.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_clock.imageset/public_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/public_clock.imageset/public_clock.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_cocoaChina.imageset/public_cocoaChina.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/public_cocoaChina.imageset/public_cocoaChina.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_ios9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "public_ios9.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_ios9.imageset/public_ios9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/public_ios9.imageset/public_ios9.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_tencent.imageset/public_tencent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/public_tencent.imageset/public_tencent.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_umeng.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "public_umeng.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_umeng.imageset/public_umeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/public_umeng.imageset/public_umeng.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_weex.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "public_weex.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_weex.imageset/public_weex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/public_weex.imageset/public_weex.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_xcode.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "public_xcode.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contacts/public_xcode.imageset/public_xcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Contacts/public_xcode.imageset/public_xcode.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMore.imageset/AlbumOperateMore@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMore.imageset/AlbumOperateMore@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMore.imageset/AlbumOperateMore@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMore.imageset/AlbumOperateMore@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMoreHL.imageset/AlbumOperateMoreHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMoreHL.imageset/AlbumOperateMoreHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMoreHL.imageset/AlbumOperateMoreHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/AlbumOperateMoreHL.imageset/AlbumOperateMoreHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/CreditCard_ShoppingBag.imageset/CreditCard_ShoppingBag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/CreditCard_ShoppingBag.imageset/CreditCard_ShoppingBag@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/FootStep.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "FootStep@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/FootStep.imageset/FootStep@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/FootStep.imageset/FootStep@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/GameCenterMyGift.imageset/GameCenterMyGift@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/GameCenterMyGift.imageset/GameCenterMyGift@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/GameCenterMyMsg.imageset/GameCenterMyMsg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/GameCenterMyMsg.imageset/GameCenterMyMsg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MT2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "MT2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MT2.imageset/MT2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/MT2.imageset/MT2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/MoreGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/MoreGame.imageset/MoreGame@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MyGameBtnGrayHL.imageset/MyGameBtnGrayHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/MyGameBtnGrayHL.imageset/MyGameBtnGrayHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MyGameBtnGreen.imageset/MyGameBtnGreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/MyGameBtnGreen.imageset/MyGameBtnGreen@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/MyGameDefaultAppIcon.imageset/MyGameDefaultAppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/MyGameDefaultAppIcon.imageset/MyGameDefaultAppIcon@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR1.imageset/ScanQR1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR1.imageset/ScanQR1@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR2.imageset/ScanQR2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR2.imageset/ScanQR2@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR3.imageset/ScanQR3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR3.imageset/ScanQR3@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQR4.imageset/ScanQR4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanQR4.imageset/ScanQR4@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode.imageset/ScanQRCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode.imageset/ScanQRCode@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode_HL.imageset/ScanQRCode_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode_HL.imageset/ScanQRCode_HL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode_HL.imageset/ScanQRCode_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanQRCode_HL.imageset/ScanQRCode_HL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet.imageset/ScanStreet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet.imageset/ScanStreet@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet_HL.imageset/ScanStreet_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet_HL.imageset/ScanStreet_HL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet_HL.imageset/ScanStreet_HL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanStreet_HL.imageset/ScanStreet_HL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanWord.imageset/ScanWord@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanWord.imageset/ScanWord@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ScanWord_HL.imageset/ScanWord_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ScanWord_HL.imageset/ScanWord_HL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Scantv.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Scantv@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Scantv.imageset/Scantv@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Scantv.imageset/Scantv@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Scantv_HL.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Scantv_HL@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Scantv_HL.imageset/Scantv_HL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Scantv_HL.imageset/Scantv_HL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ShakeHideImg_women.imageset/ShakeHideImg_women@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ShakeHideImg_women.imageset/ShakeHideImg_women@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_Line_Down.imageset/Shake_Line_Down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_Line_Down.imageset/Shake_Line_Down@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_Line_Up.imageset/Shake_Line_Up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_Line_Up.imageset/Shake_Line_Up@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_Logo_Down.imageset/Shake_Logo_Down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_Logo_Down.imageset/Shake_Logo_Down@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_Logo_Up.imageset/Shake_Logo_Up@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_Logo_Up.imageset/Shake_Logo_Up@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_music.imageset/Shake_icon_music@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_music.imageset/Shake_icon_music@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_musicHL.imageset/Shake_icon_musicHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_musicHL.imageset/Shake_icon_musicHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_people.imageset/Shake_icon_people@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_people.imageset/Shake_icon_people@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_peopleHL.imageset/Shake_icon_peopleHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_peopleHL.imageset/Shake_icon_peopleHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_tv.imageset/Shake_icon_tv@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_tv.imageset/Shake_icon_tv@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_tvHL.imageset/Shake_icon_tvHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/Shake_icon_tvHL.imageset/Shake_icon_tvHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ShakeforsongBgshade.imageset/ShakeforsongBgshade@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ShakeforsongBgshade.imageset/ShakeforsongBgshade@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/barbuttonicon_Camera.imageset/barbuttonicon_Camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/barbuttonicon_Camera.imageset/barbuttonicon_Camera.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/barbuttonicon_Camera.imageset/barbuttonicon_Camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/barbuttonicon_Camera.imageset/barbuttonicon_Camera@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/barbuttonicon_Camera.imageset/barbuttonicon_Camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/barbuttonicon_Camera.imageset/barbuttonicon_Camera@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBkg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bottleBkg@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBkg.imageset/bottleBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleBkg.imageset/bottleBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBkgSpotLight.imageset/bottleBkgSpotLight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleBkgSpotLight.imageset/bottleBkgSpotLight@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleBoard.imageset/bottleBoard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleBoard.imageset/bottleBoard@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonFish.imageset/bottleButtonFish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonFish.imageset/bottleButtonFish.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonFish.imageset/bottleButtonFish@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonFish.imageset/bottleButtonFish@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonMine.imageset/bottleButtonMine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonMine.imageset/bottleButtonMine.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonMine.imageset/bottleButtonMine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonMine.imageset/bottleButtonMine@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonThrow.imageset/bottleButtonThrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonThrow.imageset/bottleButtonThrow.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonThrow.imageset/bottleButtonThrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleButtonThrow.imageset/bottleButtonThrow@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleEmpty.imageset/bottleEmpty@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleEmpty.imageset/bottleEmpty@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleMaskBkg.imageset/bottleMaskBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleMaskBkg.imageset/bottleMaskBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/bottleNightBkg.imageset/bottleNightBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/bottleNightBkg.imageset/bottleNightBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/ff_IconBottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/ff_IconBottle.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/ff_IconBottle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/ff_IconBottle@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/ff_IconBottle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconBottle.imageset/ff_IconBottle@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconLocationService.imageset/ff_IconLocationService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconLocationService.imageset/ff_IconLocationService.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconLocationService.imageset/ff_IconLocationService@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconLocationService.imageset/ff_IconLocationService@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconLocationService.imageset/ff_IconLocationService@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconLocationService.imageset/ff_IconLocationService@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/ff_IconQRCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/ff_IconQRCode.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/ff_IconQRCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/ff_IconQRCode@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/ff_IconQRCode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconQRCode.imageset/ff_IconQRCode@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/ff_IconShake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShake.imageset/ff_IconShake@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/ff_IconShowAlbum.imageset/ff_IconShowAlbum@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/friendsHeader_icon.imageset/friendsHeader_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/friendsHeader_icon.imageset/friendsHeader_icon.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/friendsHeader_icon.imageset/friendsHeader_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/friendsHeader_icon.imageset/friendsHeader_icon@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_0.imageset/game_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_0.imageset/game_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_1.imageset/game_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_1.imageset/game_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_10.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_10.imageset/game_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_10.imageset/game_10.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_11.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_11.imageset/game_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_11.imageset/game_11.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_12.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_12.imageset/game_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_12.imageset/game_12.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_13.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_13.imageset/game_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_13.imageset/game_13.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_14.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_14.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_14.imageset/game_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_14.imageset/game_14.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_15.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_15.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_15.imageset/game_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_15.imageset/game_15.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_16.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_16.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_16.imageset/game_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_16.imageset/game_16.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_17.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_17.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_17.imageset/game_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_17.imageset/game_17.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_18.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_18.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_18.imageset/game_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_18.imageset/game_18.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_19.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_19.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_19.imageset/game_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_19.imageset/game_19.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_2.imageset/game_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_2.imageset/game_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_20.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_20.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_20.imageset/game_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_20.imageset/game_20.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_21.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_21.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_21.imageset/game_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_21.imageset/game_21.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_22.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_22.imageset/game_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_22.imageset/game_22.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_23.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_23.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_23.imageset/game_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_23.imageset/game_23.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_24.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_24.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_24.imageset/game_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_24.imageset/game_24.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_25.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_25.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_25.imageset/game_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_25.imageset/game_25.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_26.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_26.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_26.imageset/game_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_26.imageset/game_26.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_27.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_27.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_27.imageset/game_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_27.imageset/game_27.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_28.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_28.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_28.imageset/game_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_28.imageset/game_28.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_29.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_29.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_29.imageset/game_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_29.imageset/game_29.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_3.imageset/game_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_3.imageset/game_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_30.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_30.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_30.imageset/game_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_30.imageset/game_30.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_31.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_31.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_31.imageset/game_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_31.imageset/game_31.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_32.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_32.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_32.imageset/game_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_32.imageset/game_32.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_4.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_4.imageset/game_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_4.imageset/game_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_5.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_5.imageset/game_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_5.imageset/game_5.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_6.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_6.imageset/game_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_6.imageset/game_6.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_7.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_7.imageset/game_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_7.imageset/game_7.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_8.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_8.imageset/game_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_8.imageset/game_8.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_9.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_9.imageset/game_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_9.imageset/game_9.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_a.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_a.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_a.imageset/game_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_a.imageset/game_a.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_b.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_b.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_b.imageset/game_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_b.imageset/game_b.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_c.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_c.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_c.imageset/game_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_c.imageset/game_c.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_d.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_d.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_d.imageset/game_d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_d.imageset/game_d.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_e.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_e.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_e.imageset/game_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_e.imageset/game_e.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_f.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_f.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_f.imageset/game_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_f.imageset/game_f.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_g.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_g.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_g.imageset/game_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_g.imageset/game_g.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_h.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_h.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_h.imageset/game_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_h.imageset/game_h.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_i.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "game_i.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/game_i.imageset/game_i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/game_i.imageset/game_i.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_Movie_Star_Noratings.imageset/icon_Movie_Star_Noratings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/icon_Movie_Star_Noratings.imageset/icon_Movie_Star_Noratings@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_Movie_Star_rating.imageset/icon_Movie_Star_rating@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/icon_Movie_Star_rating.imageset/icon_Movie_Star_rating@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_classify_cafe.imageset/icon_classify_cafe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/icon_classify_cafe.imageset/icon_classify_cafe@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_mark1.imageset/icon_mark1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/icon_mark1.imageset/icon_mark1@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_mark2.imageset/icon_mark2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/icon_mark2.imageset/icon_mark2@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_openmap_item.imageset/icon_openmap_item@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/icon_openmap_item.imageset/icon_openmap_item@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_paopao_waterdrop_streetscape.imageset/icon_paopao_waterdrop_streetscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/icon_paopao_waterdrop_streetscape.imageset/icon_paopao_waterdrop_streetscape@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/icon_pin_floating.imageset/icon_pin_floating@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/icon_pin_floating.imageset/icon_pin_floating@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/linetemp.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "linetemp@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/linetemp.imageset/linetemp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/linetemp.imageset/linetemp@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/pick_bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "pick_bg@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/pick_bg.imageset/pick_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/pick_bg.imageset/pick_bg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/pick_bg4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "pick_bg4@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Discover/pick_bg4.imageset/pick_bg4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Discover/pick_bg4.imageset/pick_bg4@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/LogInOut/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/LogInOut/Login_bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Login_bk.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/LogInOut/Login_bg.imageset/Login_bk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/LogInOut/Login_bg.imageset/Login_bk.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/AlbumListCamera.imageset/AlbumListCamera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/AlbumListCamera.imageset/AlbumListCamera@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/AlbumListCameraHL.imageset/AlbumListCameraHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/AlbumListCameraHL.imageset/AlbumListCameraHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/Artboard 23.imageset/Artboard 23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/Artboard 23.imageset/Artboard 23@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/EmotionsEmojiHL.imageset/EmotionsEmojiHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/EmotionsEmojiHL.imageset/EmotionsEmojiHL.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/IMG_0592.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "IMG_0592.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/IMG_0592.imageset/IMG_0592.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/IMG_0592.imageset/IMG_0592.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyAlbum.imageset/MoreMyAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyAlbum.imageset/MoreMyAlbum@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyBankCard.imageset/MoreMyBankCard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyBankCard.imageset/MoreMyBankCard@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyFavorites.imageset/MoreMyFavorites@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyFavorites.imageset/MoreMyFavorites@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreMyFavorites.imageset/MoreMyFavorites@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/MoreMyFavorites.imageset/MoreMyFavorites@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/MoreSetting.imageset/MoreSetting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/MoreSetting.imageset/MoreSetting@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOff.imageset/ProfileLockOff@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOff.imageset/ProfileLockOff@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOff.imageset/ProfileLockOff@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOff.imageset/ProfileLockOff@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOn.imageset/ProfileLockOn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/ProfileLockOn.imageset/ProfileLockOn@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/Report_Success_icon.imageset/Report_Success_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/Report_Success_icon.imageset/Report_Success_icon@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "em_0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_0.imageset/em_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/em_0.imageset/em_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "em_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_1.imageset/em_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/em_1.imageset/em_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "em_2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_2.imageset/em_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/em_2.imageset/em_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "em_3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_3.imageset/em_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/em_3.imageset/em_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "em_4.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/em_4.imageset/em_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/em_4.imageset/em_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emo_0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_0.imageset/emo_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emo_0.imageset/emo_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emo_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_1.imageset/emo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emo_1.imageset/emo_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emo_2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_2.imageset/emo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emo_2.imageset/emo_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emo_3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_3.imageset/emo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emo_3.imageset/emo_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emo_4.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_4.imageset/emo_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emo_4.imageset/emo_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emo_5.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_5.imageset/emo_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emo_5.imageset/emo_5.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emo_6.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emo_6.imageset/emo_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emo_6.imageset/emo_6.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emotion_0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_0.imageset/emotion_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emotion_0.imageset/emotion_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emotion_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_1.imageset/emotion_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emotion_1.imageset/emotion_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emotion_2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_2.imageset/emotion_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emotion_2.imageset/emotion_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emotion_3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_3.imageset/emotion_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emotion_3.imageset/emotion_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emotion_4.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_4.imageset/emotion_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emotion_4.imageset/emotion_4.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "emotion_5.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/emotion_5.imageset/emotion_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/emotion_5.imageset/emotion_5.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "favorite_0.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_0.imageset/favorite_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/favorite_0.imageset/favorite_0.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "favorite_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_1.imageset/favorite_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/favorite_1.imageset/favorite_1.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "favorite_2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_2.imageset/favorite_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/favorite_2.imageset/favorite_2.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "favorite_3.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/favorite_3.imageset/favorite_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/favorite_3.imageset/favorite_3.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/product_button_selected.imageset/product_button_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/product_button_selected.imageset/product_button_selected@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/setting_myQR.imageset/setting_myQR@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/setting_myQR.imageset/setting_myQR@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/xiaohuangren.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "xiaohuangren.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/Mine/xiaohuangren.imageset/xiaohuangren.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/Mine/xiaohuangren.imageset/xiaohuangren.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/TableViewArrow.imageset/TableViewArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/TableViewArrow.imageset/TableViewArrow@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_add.imageset/barbuttonicon_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_add.imageset/barbuttonicon_add@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_add.imageset/barbuttonicon_add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_add.imageset/barbuttonicon_add@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_add_cube.imageset/barbuttonicon_add_cube@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_add_cube.imageset/barbuttonicon_add_cube@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_add_cube.imageset/barbuttonicon_add_cube@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_add_cube.imageset/barbuttonicon_add_cube@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_more.imageset/barbuttonicon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_more.imageset/barbuttonicon_more.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_more.imageset/barbuttonicon_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_more.imageset/barbuttonicon_more@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_more.imageset/barbuttonicon_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_more.imageset/barbuttonicon_more@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/barbuttonicon_set.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/barbuttonicon_set.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/barbuttonicon_set@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/barbuttonicon_set@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/barbuttonicon_set@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/barbuttonicon_set.imageset/barbuttonicon_set@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbarBkg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x", 10 | "filename" : "tabbarBkg@2x.png" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbarBkg.imageset/tabbarBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbarBkg.imageset/tabbarBkg@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_badge.imageset/tabbar_badge@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contacts.imageset/tabbar_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contacts.imageset/tabbar_contacts@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contacts.imageset/tabbar_contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contacts.imageset/tabbar_contacts@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_contactsHL.imageset/tabbar_contactsHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discover.imageset/tabbar_discover@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discover.imageset/tabbar_discover@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discover.imageset/tabbar_discover@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discover.imageset/tabbar_discover@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_discoverHL.imageset/tabbar_discoverHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframe.imageset/tabbar_mainframe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframe.imageset/tabbar_mainframe@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframe.imageset/tabbar_mainframe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframe.imageset/tabbar_mainframe@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mainframeHL.imageset/tabbar_mainframeHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mine.imageset/tabbar_mine@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/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/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mine.imageset/tabbar_mine@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mineHL.imageset/tabbar_mineHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mineHL.imageset/tabbar_mineHL@2x.png -------------------------------------------------------------------------------- /RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mineHL.imageset/tabbar_mineHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Sections/PublicImages.xcassets/tabbar/tabbar_mineHL.imageset/tabbar_mineHL@3x.png -------------------------------------------------------------------------------- /RSChat/Sections/RSMainTabBarController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSMainTabBarController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 12/20/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import 12 | 13 | @interface RSMainTabBarController : UITabBarController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Sections/Welcome/RSWelcomeViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // RSWelcomeViewController.h 3 | // RSChat 4 | // 5 | // Created by hehai on 15/12/22. 6 | // Copyright © 2015年 hehai. All rights reserved. 7 | // GitHub: https://github.com/riversea2015 8 | // 源码地址: https://github.com/riversea2015/RSChat 9 | // 10 | 11 | #import "RSViewController.h" 12 | 13 | @interface RSWelcomeViewController : RSViewController 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Vendors/ZBarSDK-master/README -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Resources/zbar-back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Vendors/ZBarSDK-master/Resources/zbar-back.png -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Resources/zbar-helpicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Vendors/ZBarSDK-master/Resources/zbar-helpicons.png -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/Resources/zbar-samples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Vendors/ZBarSDK-master/Resources/zbar-samples.png -------------------------------------------------------------------------------- /RSChat/Vendors/ZBarSDK-master/libzbar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/RSChat/Vendors/ZBarSDK-master/libzbar.a -------------------------------------------------------------------------------- /RSChat/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | RSChat 4 | 5 | Created by hehai on 2019/3/1. 6 | Copyright © 2019 hehai. All rights reserved. 7 | */ 8 | 9 | CFBundleDisplayName = "MeChat"; 10 | -------------------------------------------------------------------------------- /RSChat/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | Localizable.strings 3 | RSChat 4 | 5 | Created by hehai on 2019/3/1. 6 | Copyright © 2019 hehai. All rights reserved. 7 | */ 8 | 9 | "LNG" = "English"; 10 | -------------------------------------------------------------------------------- /RSChat/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // RSChat 4 | // 5 | // Created by hehai on 11/10/15. 6 | // Copyright (c) 2015 hehai. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /RSChat/zh-Hans.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* 2 | InfoPlist.strings 3 | RSChat 4 | 5 | Created by hehai on 2019/3/1. 6 | Copyright © 2019 hehai. All rights reserved. 7 | */ 8 | 9 | CFBundleDisplayName = "我信"; 10 | -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/AppIcon_Old/AppIcon29x29@2x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/AppIcon_Old/AppIcon29x29@3x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/AppIcon_Old/AppIcon40x40@2x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/AppIcon_Old/AppIcon40x40@3x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/AppIcon_Old/AppIcon60x60@2x.png -------------------------------------------------------------------------------- /Resources/AppIcon_Old/AppIcon60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/AppIcon_Old/AppIcon60x60@3x.png -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_001.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_New/IMG_001.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_002.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_New/IMG_002.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_003.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_New/IMG_003.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_004.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_New/IMG_004.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_New/IMG_005.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_New/IMG_005.JPG -------------------------------------------------------------------------------- /Resources/ScreenShot_Old/test_0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_Old/test_0.gif -------------------------------------------------------------------------------- /Resources/ScreenShot_Old/test_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_Old/test_1.gif -------------------------------------------------------------------------------- /Resources/ScreenShot_Old/test_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_Old/test_2.gif -------------------------------------------------------------------------------- /Resources/ScreenShot_Old/test_3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riversea2015/RSChat/1a341f64e4e420348e78493e5de2c28fa3ff0b9f/Resources/ScreenShot_Old/test_3.gif --------------------------------------------------------------------------------