├── Podfile ├── Podfile.lock ├── Pods ├── AFNetworking │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── LICENSE │ ├── README.md │ └── UIKit+AFNetworking │ │ ├── AFAutoPurgingImageCache.h │ │ ├── AFAutoPurgingImageCache.m │ │ ├── AFImageDownloader.h │ │ ├── AFImageDownloader.m │ │ ├── AFNetworkActivityIndicatorManager.h │ │ ├── AFNetworkActivityIndicatorManager.m │ │ ├── UIActivityIndicatorView+AFNetworking.h │ │ ├── UIActivityIndicatorView+AFNetworking.m │ │ ├── UIButton+AFNetworking.h │ │ ├── UIButton+AFNetworking.m │ │ ├── UIImage+AFNetworking.h │ │ ├── UIImageView+AFNetworking.h │ │ ├── UIImageView+AFNetworking.m │ │ ├── UIKit+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.h │ │ ├── UIProgressView+AFNetworking.m │ │ ├── UIRefreshControl+AFNetworking.h │ │ ├── UIRefreshControl+AFNetworking.m │ │ ├── UIWebView+AFNetworking.h │ │ └── UIWebView+AFNetworking.m ├── FMDB │ ├── LICENSE.txt │ ├── README.markdown │ └── src │ │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ └── FMResultSet.m ├── HYBMasonryAutoCellHeight │ ├── HYBMasonryAutoCellHeight │ │ ├── UITableView+HYBCacheHeight.h │ │ ├── UITableView+HYBCacheHeight.m │ │ ├── UITableViewCell+HYBMasonryAutoCellHeight.h │ │ └── UITableViewCell+HYBMasonryAutoCellHeight.m │ ├── LICENSE │ └── README.md ├── MJRefresh │ ├── LICENSE │ ├── MJRefresh │ │ ├── Base │ │ │ ├── MJRefreshAutoFooter.h │ │ │ ├── MJRefreshAutoFooter.m │ │ │ ├── MJRefreshBackFooter.h │ │ │ ├── MJRefreshBackFooter.m │ │ │ ├── MJRefreshComponent.h │ │ │ ├── MJRefreshComponent.m │ │ │ ├── MJRefreshFooter.h │ │ │ ├── MJRefreshFooter.m │ │ │ ├── MJRefreshHeader.h │ │ │ └── MJRefreshHeader.m │ │ ├── Custom │ │ │ ├── Footer │ │ │ │ ├── Auto │ │ │ │ │ ├── MJRefreshAutoGifFooter.h │ │ │ │ │ ├── MJRefreshAutoGifFooter.m │ │ │ │ │ ├── MJRefreshAutoNormalFooter.h │ │ │ │ │ ├── MJRefreshAutoNormalFooter.m │ │ │ │ │ ├── MJRefreshAutoStateFooter.h │ │ │ │ │ └── MJRefreshAutoStateFooter.m │ │ │ │ └── Back │ │ │ │ │ ├── MJRefreshBackGifFooter.h │ │ │ │ │ ├── MJRefreshBackGifFooter.m │ │ │ │ │ ├── MJRefreshBackNormalFooter.h │ │ │ │ │ ├── MJRefreshBackNormalFooter.m │ │ │ │ │ ├── MJRefreshBackStateFooter.h │ │ │ │ │ └── MJRefreshBackStateFooter.m │ │ │ └── Header │ │ │ │ ├── MJRefreshGifHeader.h │ │ │ │ ├── MJRefreshGifHeader.m │ │ │ │ ├── MJRefreshNormalHeader.h │ │ │ │ ├── MJRefreshNormalHeader.m │ │ │ │ ├── MJRefreshStateHeader.h │ │ │ │ └── MJRefreshStateHeader.m │ │ ├── MJRefresh.bundle │ │ │ ├── arrow@2x.png │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ │ └── zh-Hant.lproj │ │ │ │ └── Localizable.strings │ │ ├── MJRefresh.h │ │ ├── MJRefreshConst.h │ │ ├── MJRefreshConst.m │ │ ├── NSBundle+MJRefresh.h │ │ ├── NSBundle+MJRefresh.m │ │ ├── UIScrollView+MJExtension.h │ │ ├── UIScrollView+MJExtension.m │ │ ├── UIScrollView+MJRefresh.h │ │ ├── UIScrollView+MJRefresh.m │ │ ├── UIView+MJExtension.h │ │ └── UIView+MJExtension.m │ └── README.md ├── Manifest.lock ├── Masonry │ ├── LICENSE │ ├── Masonry │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ └── README.md ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ ├── YHIOS002.xcuserdatad │ │ └── xcschemes │ │ │ ├── AFNetworking.xcscheme │ │ │ ├── FMDB.xcscheme │ │ │ ├── HYBMasonryAutoCellHeight.xcscheme │ │ │ ├── MJRefresh.xcscheme │ │ │ ├── Masonry.xcscheme │ │ │ ├── Pods-YHChat.xcscheme │ │ │ ├── SDWebImage.xcscheme │ │ │ ├── SocketRocket.xcscheme │ │ │ ├── YYKit.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── kun.xcuserdatad │ │ └── xcschemes │ │ ├── HYBMasonryAutoCellHeight.xcscheme │ │ ├── MJRefresh.xcscheme │ │ ├── Masonry.xcscheme │ │ ├── Pods-YHChat.xcscheme │ │ ├── SDWebImage.xcscheme │ │ ├── YYKit.xcscheme │ │ └── xcschememanagement.plist ├── SDWebImage │ ├── LICENSE │ ├── README.md │ └── SDWebImage │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── NSImage+WebCache.h │ │ ├── NSImage+WebCache.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.m │ │ ├── SDImageCacheConfig.h │ │ ├── SDImageCacheConfig.m │ │ ├── SDWebImageCompat.h │ │ ├── SDWebImageCompat.m │ │ ├── SDWebImageDecoder.h │ │ ├── SDWebImageDecoder.m │ │ ├── SDWebImageDownloader.h │ │ ├── SDWebImageDownloader.m │ │ ├── SDWebImageDownloaderOperation.h │ │ ├── SDWebImageDownloaderOperation.m │ │ ├── SDWebImageManager.h │ │ ├── SDWebImageManager.m │ │ ├── SDWebImageOperation.h │ │ ├── SDWebImagePrefetcher.h │ │ ├── SDWebImagePrefetcher.m │ │ ├── UIButton+WebCache.h │ │ ├── UIButton+WebCache.m │ │ ├── UIImage+GIF.h │ │ ├── UIImage+GIF.m │ │ ├── UIImage+MultiFormat.h │ │ ├── UIImage+MultiFormat.m │ │ ├── UIImageView+HighlightedWebCache.h │ │ ├── UIImageView+HighlightedWebCache.m │ │ ├── UIImageView+WebCache.h │ │ ├── UIImageView+WebCache.m │ │ ├── UIView+WebCache.h │ │ ├── UIView+WebCache.m │ │ ├── UIView+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m ├── SocketRocket │ ├── LICENSE │ ├── README.rst │ └── SocketRocket │ │ ├── SRWebSocket.h │ │ ├── SRWebSocket.m │ │ └── SocketRocket.h ├── Target Support Files │ ├── AFNetworking │ │ ├── AFNetworking-dummy.m │ │ ├── AFNetworking-prefix.pch │ │ ├── AFNetworking-umbrella.h │ │ ├── AFNetworking.modulemap │ │ ├── AFNetworking.xcconfig │ │ └── Info.plist │ ├── FMDB │ │ ├── FMDB-dummy.m │ │ ├── FMDB-prefix.pch │ │ ├── FMDB-umbrella.h │ │ ├── FMDB.modulemap │ │ ├── FMDB.xcconfig │ │ └── Info.plist │ ├── HYBMasonryAutoCellHeight │ │ ├── HYBMasonryAutoCellHeight-dummy.m │ │ ├── HYBMasonryAutoCellHeight-prefix.pch │ │ ├── HYBMasonryAutoCellHeight-umbrella.h │ │ ├── HYBMasonryAutoCellHeight.modulemap │ │ ├── HYBMasonryAutoCellHeight.xcconfig │ │ └── Info.plist │ ├── MJRefresh │ │ ├── Info.plist │ │ ├── MJRefresh-dummy.m │ │ ├── MJRefresh-prefix.pch │ │ ├── MJRefresh-umbrella.h │ │ ├── MJRefresh.modulemap │ │ └── MJRefresh.xcconfig │ ├── Masonry │ │ ├── Info.plist │ │ ├── Masonry-dummy.m │ │ ├── Masonry-prefix.pch │ │ ├── Masonry-umbrella.h │ │ ├── Masonry.modulemap │ │ └── Masonry.xcconfig │ ├── Pods-YHChat │ │ ├── Info.plist │ │ ├── Pods-YHChat-acknowledgements.markdown │ │ ├── Pods-YHChat-acknowledgements.plist │ │ ├── Pods-YHChat-dummy.m │ │ ├── Pods-YHChat-frameworks.sh │ │ ├── Pods-YHChat-resources.sh │ │ ├── Pods-YHChat-umbrella.h │ │ ├── Pods-YHChat.debug.xcconfig │ │ ├── Pods-YHChat.modulemap │ │ └── Pods-YHChat.release.xcconfig │ ├── SDWebImage │ │ ├── Info.plist │ │ ├── SDWebImage-dummy.m │ │ ├── SDWebImage-prefix.pch │ │ ├── SDWebImage-umbrella.h │ │ ├── SDWebImage.modulemap │ │ └── SDWebImage.xcconfig │ ├── SocketRocket │ │ ├── Info.plist │ │ ├── SocketRocket-dummy.m │ │ ├── SocketRocket-prefix.pch │ │ ├── SocketRocket-umbrella.h │ │ ├── SocketRocket.modulemap │ │ └── SocketRocket.xcconfig │ └── YYKit │ │ ├── Info.plist │ │ ├── YYKit-dummy.m │ │ ├── YYKit-prefix.pch │ │ ├── YYKit-umbrella.h │ │ ├── YYKit.modulemap │ │ └── YYKit.xcconfig └── YYKit │ ├── LICENSE │ ├── README.md │ ├── Vendor │ └── WebP.framework │ │ ├── Headers │ │ ├── config.h │ │ ├── decode.h │ │ ├── demux.h │ │ ├── encode.h │ │ ├── extras.h │ │ ├── format_constants.h │ │ ├── mux.h │ │ ├── mux_types.h │ │ └── types.h │ │ └── WebP │ └── YYKit │ ├── Base │ ├── Foundation │ │ ├── NSArray+YYAdd.h │ │ ├── NSArray+YYAdd.m │ │ ├── NSBundle+YYAdd.h │ │ ├── NSBundle+YYAdd.m │ │ ├── NSData+YYAdd.h │ │ ├── NSData+YYAdd.m │ │ ├── NSDate+YYAdd.h │ │ ├── NSDate+YYAdd.m │ │ ├── NSDictionary+YYAdd.h │ │ ├── NSDictionary+YYAdd.m │ │ ├── NSKeyedUnarchiver+YYAdd.h │ │ ├── NSKeyedUnarchiver+YYAdd.m │ │ ├── NSNotificationCenter+YYAdd.h │ │ ├── NSNotificationCenter+YYAdd.m │ │ ├── NSNumber+YYAdd.h │ │ ├── NSNumber+YYAdd.m │ │ ├── NSObject+YYAdd.h │ │ ├── NSObject+YYAdd.m │ │ ├── NSObject+YYAddForARC.h │ │ ├── NSObject+YYAddForARC.m │ │ ├── NSObject+YYAddForKVO.h │ │ ├── NSObject+YYAddForKVO.m │ │ ├── NSString+YYAdd.h │ │ ├── NSString+YYAdd.m │ │ ├── NSThread+YYAdd.h │ │ ├── NSThread+YYAdd.m │ │ ├── NSTimer+YYAdd.h │ │ └── NSTimer+YYAdd.m │ ├── Quartz │ │ ├── CALayer+YYAdd.h │ │ ├── CALayer+YYAdd.m │ │ ├── YYCGUtilities.h │ │ └── YYCGUtilities.m │ ├── UIKit │ │ ├── UIApplication+YYAdd.h │ │ ├── UIApplication+YYAdd.m │ │ ├── UIBarButtonItem+YYAdd.h │ │ ├── UIBarButtonItem+YYAdd.m │ │ ├── UIBezierPath+YYAdd.h │ │ ├── UIBezierPath+YYAdd.m │ │ ├── UIColor+YYAdd.h │ │ ├── UIColor+YYAdd.m │ │ ├── UIControl+YYAdd.h │ │ ├── UIControl+YYAdd.m │ │ ├── UIDevice+YYAdd.h │ │ ├── UIDevice+YYAdd.m │ │ ├── UIFont+YYAdd.h │ │ ├── UIFont+YYAdd.m │ │ ├── UIGestureRecognizer+YYAdd.h │ │ ├── UIGestureRecognizer+YYAdd.m │ │ ├── UIImage+YYAdd.h │ │ ├── UIImage+YYAdd.m │ │ ├── UIScreen+YYAdd.h │ │ ├── UIScreen+YYAdd.m │ │ ├── UIScrollView+YYAdd.h │ │ ├── UIScrollView+YYAdd.m │ │ ├── UITableView+YYAdd.h │ │ ├── UITableView+YYAdd.m │ │ ├── UITextField+YYAdd.h │ │ ├── UITextField+YYAdd.m │ │ ├── UIView+YYAdd.h │ │ └── UIView+YYAdd.m │ └── YYKitMacro.h │ ├── Cache │ ├── YYCache.h │ ├── YYCache.m │ ├── YYDiskCache.h │ ├── YYDiskCache.m │ ├── YYKVStorage.h │ ├── YYKVStorage.m │ ├── YYMemoryCache.h │ └── YYMemoryCache.m │ ├── Image │ ├── Categories │ │ ├── CALayer+YYWebImage.h │ │ ├── CALayer+YYWebImage.m │ │ ├── MKAnnotationView+YYWebImage.h │ │ ├── MKAnnotationView+YYWebImage.m │ │ ├── UIButton+YYWebImage.h │ │ ├── UIButton+YYWebImage.m │ │ ├── UIImageView+YYWebImage.h │ │ ├── UIImageView+YYWebImage.m │ │ ├── _YYWebImageSetter.h │ │ └── _YYWebImageSetter.m │ ├── YYAnimatedImageView.h │ ├── YYAnimatedImageView.m │ ├── YYFrameImage.h │ ├── YYFrameImage.m │ ├── YYImage.h │ ├── YYImage.m │ ├── YYImageCache.h │ ├── YYImageCache.m │ ├── YYImageCoder.h │ ├── YYImageCoder.m │ ├── YYSpriteSheetImage.h │ ├── YYSpriteSheetImage.m │ ├── YYWebImageManager.h │ ├── YYWebImageManager.m │ ├── YYWebImageOperation.h │ └── YYWebImageOperation.m │ ├── Model │ ├── NSObject+YYModel.h │ ├── NSObject+YYModel.m │ ├── YYClassInfo.h │ └── YYClassInfo.m │ ├── Text │ ├── Component │ │ ├── YYTextContainerView.h │ │ ├── YYTextContainerView.m │ │ ├── YYTextDebugOption.h │ │ ├── YYTextDebugOption.m │ │ ├── YYTextEffectWindow.h │ │ ├── YYTextEffectWindow.m │ │ ├── YYTextInput.h │ │ ├── YYTextInput.m │ │ ├── YYTextKeyboardManager.h │ │ ├── YYTextKeyboardManager.m │ │ ├── YYTextLayout.h │ │ ├── YYTextLayout.m │ │ ├── YYTextLine.h │ │ ├── YYTextLine.m │ │ ├── YYTextMagnifier.h │ │ ├── YYTextMagnifier.m │ │ ├── YYTextSelectionView.h │ │ └── YYTextSelectionView.m │ ├── String │ │ ├── NSAttributedString+YYText.h │ │ ├── NSAttributedString+YYText.m │ │ ├── NSParagraphStyle+YYText.h │ │ ├── NSParagraphStyle+YYText.m │ │ ├── UIPasteboard+YYText.h │ │ ├── UIPasteboard+YYText.m │ │ ├── YYTextArchiver.h │ │ ├── YYTextArchiver.m │ │ ├── YYTextAttribute.h │ │ ├── YYTextAttribute.m │ │ ├── YYTextParser.h │ │ ├── YYTextParser.m │ │ ├── YYTextRubyAnnotation.h │ │ ├── YYTextRubyAnnotation.m │ │ ├── YYTextRunDelegate.h │ │ ├── YYTextRunDelegate.m │ │ ├── YYTextUtilities.h │ │ └── YYTextUtilities.m │ ├── YYLabel.h │ ├── YYLabel.m │ ├── YYTextView.h │ └── YYTextView.m │ ├── Utility │ ├── YYAsyncLayer.h │ ├── YYAsyncLayer.m │ ├── YYDispatchQueuePool.h │ ├── YYDispatchQueuePool.m │ ├── YYFileHash.h │ ├── YYFileHash.m │ ├── YYGestureRecognizer.h │ ├── YYGestureRecognizer.m │ ├── YYKeychain.h │ ├── YYKeychain.m │ ├── YYReachability.h │ ├── YYReachability.m │ ├── YYSentinel.h │ ├── YYSentinel.m │ ├── YYThreadSafeArray.h │ ├── YYThreadSafeArray.m │ ├── YYThreadSafeDictionary.h │ ├── YYThreadSafeDictionary.m │ ├── YYTimer.h │ ├── YYTimer.m │ ├── YYTransaction.h │ ├── YYTransaction.m │ ├── YYWeakProxy.h │ └── YYWeakProxy.m │ └── YYKit.h ├── README.md ├── YHChat.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── YHIOS002.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── YHIOS002.xcuserdatad │ └── xcschemes │ │ ├── YHChat.xcscheme │ │ └── xcschememanagement.plist │ └── kun.xcuserdatad │ └── xcschemes │ ├── YHChat.xcscheme │ └── xcschememanagement.plist ├── YHChat.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── IDEWorkspaceChecks.plist └── xcuserdata │ ├── YHIOS002.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ └── kun.xcuserdatad │ ├── UserInterfaceState.xcuserstate │ └── xcdebugger │ └── Breakpoints_v2.xcbkptlist └── YHChat ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets ├── AppIcon.appiconset │ ├── Contents.json │ ├── Icon-60@2x.png │ ├── Icon-60@3x.png │ ├── Icon-72.png │ ├── Icon-72@2x.png │ ├── Icon-76.png │ ├── Icon-76@2x.png │ ├── Icon-Small-1.png │ ├── Icon-Small-50.png │ ├── Icon-Small-50@2x.png │ ├── Icon-Small.png │ ├── Icon-Small@2x-1.png │ ├── Icon-Small@2x.png │ ├── Icon-Small@3x.png │ ├── Icon-Spotlight-40.png │ ├── Icon-Spotlight-40@2x-1.png │ ├── Icon-Spotlight-40@2x.png │ ├── Icon-Spotlight-40@3x.png │ ├── Icon.png │ └── Icon@2x.png ├── Chat │ ├── App_video_play_btn_bg.imageset │ │ ├── Contents.json │ │ └── video_play_btn_bg@2x.png │ ├── Contents.json │ ├── beijign.imageset │ │ ├── Contents.json │ │ ├── beijign@2x.png │ │ └── beijign@3x.png │ ├── button_retry_comment.imageset │ │ ├── Contents.json │ │ ├── button_retry_comment.png │ │ ├── button_retry_comment@2x.png │ │ └── button_retry_comment@3x.png │ ├── cancelVoice.imageset │ │ ├── Contents.json │ │ ├── cancelVoice@2x.png │ │ └── cancelVoice@3x.png │ ├── chat_bubbleLeft.imageset │ │ ├── Contents.json │ │ ├── chat_bubbleLeft@2x.png │ │ └── chat_bubbleLeft@3x.png │ ├── chat_bubbleRight.imageset │ │ ├── Contents.json │ │ ├── chat_bubbleRight@2x.png │ │ └── chat_bubbleRight@3x.png │ ├── chat_checkBox_nor.imageset │ │ ├── Contents.json │ │ ├── chat_checkBox_nor@2x.png │ │ └── chat_checkBox_nor@3x.png │ ├── chat_checkBox_sel.imageset │ │ ├── Contents.json │ │ ├── chat_checkBox_sel@2x.png │ │ └── chat_checkBox_sel@3x.png │ ├── chat_fileBG.imageset │ │ ├── Contents.json │ │ ├── liaotianfile@2x.png │ │ └── liaotianfile@3x.png │ ├── chat_img_defaultPhoto.imageset │ │ ├── Contents.json │ │ ├── chat_img_defaultPhoto@2x.png │ │ └── chat_img_defaultPhoto@3x.png │ ├── daibantongzhi.imageset │ │ ├── Contents.json │ │ ├── daibantongzhi@2x.png │ │ └── daibantongzhi@3x.png │ ├── deleteBtn.imageset │ │ ├── Contents.json │ │ ├── deleteBtn@2x.png │ │ └── deleteBtn@3x.png │ ├── excerl.imageset │ │ ├── Contents.json │ │ ├── excerl@2x.png │ │ └── excerl@3x.png │ ├── groupHead.imageset │ │ ├── Contents.json │ │ ├── groupHead@2x.png │ │ └── groupHead@3x.png │ ├── icon_empty_file.imageset │ │ ├── Contents.json │ │ ├── 图@2x.png │ │ └── 图@3x.png │ ├── icon_pickPicback.imageset │ │ ├── Contents.json │ │ ├── zhezhao@2x.png │ │ └── zhezhao@3x.png │ ├── iconfont-chuangjianhuihua.imageset │ │ ├── Contents.json │ │ ├── iconfont-chuangjianhuihua@2x.png │ │ └── iconfont-chuangjianhuihua@3x.png │ ├── iconfont-kaishianniu.imageset │ │ ├── Contents.json │ │ ├── iconfont-kaishianniu@2x.png │ │ └── iconfont-kaishianniu@3x.png │ ├── iconfont-luyin.imageset │ │ ├── Contents.json │ │ ├── iconfont-luyin@2x.png │ │ └── iconfont-luyin@3x.png │ ├── iconfont-wenjian.imageset │ │ ├── Contents.json │ │ ├── iconfont-wenjian@2x.png │ │ └── iconfont-wenjian@3x.png │ ├── iconfont-zhanting.imageset │ │ ├── Contents.json │ │ ├── iconfont-zhanting@2x.png │ │ └── iconfont-zhanting@3x.png │ ├── left-1.imageset │ │ ├── Contents.json │ │ ├── left-1@2x.png │ │ └── left-1@3x.png │ ├── left-2.imageset │ │ ├── Contents.json │ │ ├── left-2@2x.png │ │ └── left-2@3x.png │ ├── left-3.imageset │ │ ├── Contents.json │ │ ├── left-3@2x.png │ │ └── left-3@3x.png │ ├── pdf.imageset │ │ ├── Contents.json │ │ ├── pdf@2x.png │ │ └── pdf@3x.png │ ├── play.imageset │ │ ├── Contents.json │ │ └── play.png │ ├── ppt.imageset │ │ ├── Contents.json │ │ ├── ppt@2x.png │ │ └── ppt@3x.png │ ├── right-1.imageset │ │ ├── Contents.json │ │ ├── right-1@2x.png │ │ └── right-1@3x.png │ ├── right-2.imageset │ │ ├── Contents.json │ │ ├── right-2@2x.png │ │ └── right-2@3x.png │ ├── right-3.imageset │ │ ├── Contents.json │ │ ├── right-3@2x.png │ │ └── right-3@3x.png │ ├── shipin.imageset │ │ ├── Contents.json │ │ ├── shipin@2x.png │ │ └── shipin@3x.png │ ├── txt.imageset │ │ ├── Contents.json │ │ ├── txt@2x.png │ │ └── txt@3x.png │ ├── video_play_btn_bg-1.imageset │ │ ├── Contents.json │ │ └── video_play_btn_bg@2x.png │ ├── video_play_btn_bg-2.imageset │ │ ├── Contents.json │ │ └── video_play_btn_bg@2x.png │ ├── video_play_btn_bg.imageset │ │ ├── Contents.json │ │ └── video_play_btn_bg@2x.png │ ├── voiceShort.imageset │ │ ├── Contents.json │ │ ├── voiceShort@2x.png │ │ └── voiceShort@3x.png │ ├── voice_1.imageset │ │ ├── Contents.json │ │ ├── voice_1@2x.png │ │ └── voice_1@3x.png │ ├── voice_2.imageset │ │ ├── Contents.json │ │ ├── voice_2@2x.png │ │ └── voice_2@3x.png │ ├── voice_3.imageset │ │ ├── Contents.json │ │ ├── voice_3@2x.png │ │ └── voice_3@3x.png │ ├── voice_4.imageset │ │ ├── Contents.json │ │ ├── voice_4@2x.png │ │ └── voice_4@3x.png │ ├── voice_5.imageset │ │ ├── Contents.json │ │ ├── voice_5@2x.png │ │ └── voice_5@3x.png │ ├── voice_6.imageset │ │ ├── Contents.json │ │ ├── voice_6@2x.png │ │ └── voice_6@3x.png │ ├── word.imageset │ │ ├── Contents.json │ │ ├── word@2x.png │ │ └── word@3x.png │ ├── xiugaiqunming.imageset │ │ ├── Contents.json │ │ ├── xiugaiqunming@2x.png │ │ └── xiugaiqunming@3x.png │ ├── yinpin.imageset │ │ ├── Contents.json │ │ ├── yinpin@2x.png │ │ └── yinpin@3x.png │ └── zhaopian.imageset │ │ ├── Contents.json │ │ ├── zhaopian@2x.png │ │ └── zhaopian@3x.png ├── Common │ ├── Contents.json │ ├── common_avatar_80px.imageset │ │ ├── Contents.json │ │ ├── common_avatar_80px@2x.png │ │ └── common_avatar_80px@3x.png │ └── common_leftArrow.imageset │ │ ├── Contents.json │ │ ├── leftarrow@2x.png │ │ └── leftarrow@3x.png └── Contents.json ├── Base.lproj └── LaunchScreen.storyboard ├── Catagory ├── NSDate+Extension.h ├── NSDate+Extension.m ├── NSString+Extension.h ├── NSString+Extension.m ├── UIBarButtonItem+Extension.h ├── UIBarButtonItem+Extension.m ├── UIImage+Extension.h ├── UIImage+Extension.m ├── UIView+DRCorner.h ├── UIView+DRCorner.m ├── UIView+Extension.h └── UIView+Extension.m ├── Chat ├── Config │ ├── YHChatHeader.h │ └── YHChatServiceDefs.h ├── Model │ ├── ChatModel │ │ ├── YHChatListModel.h │ │ ├── YHChatListModel.m │ │ ├── YHChatModel.h │ │ ├── YHChatModel.m │ │ ├── YHChatTouch.h │ │ ├── YHChatTouch.m │ │ ├── YHFileModel.h │ │ ├── YHFileModel.m │ │ ├── YHGIFModel.h │ │ └── YHGIFModel.m │ ├── LayoutModel │ │ ├── YHChatTextLayout.h │ │ └── YHChatTextLayout.m │ └── UserInfoModel │ │ ├── YHEducationExperienceModel.h │ │ ├── YHEducationExperienceModel.m │ │ ├── YHUserInfo.h │ │ ├── YHUserInfo.m │ │ ├── YHUserSetting.h │ │ ├── YHUserSetting.m │ │ ├── YHWorkExperienceModel.h │ │ └── YHWorkExperienceModel.m ├── SubPages │ ├── YHChatDetailVC.h │ ├── YHChatDetailVC.m │ ├── YHDocumentVC.h │ ├── YHDocumentVC.m │ ├── YHShootVC.h │ └── YHShootVC.m ├── Tools │ ├── OperationVideoPlay │ │ ├── VideoPlayOperation.h │ │ ├── VideoPlayOperation.m │ │ ├── YHAVPlayer.h │ │ ├── YHAVPlayer.m │ │ ├── YHPlayManager.h │ │ └── YHPlayManager.m │ ├── YHAudioPlayer.h │ ├── YHAudioPlayer.m │ ├── YHAudioRecorder.h │ ├── YHAudioRecorder.m │ ├── YHChatHelper.h │ ├── YHChatHelper.m │ ├── YHVideoHelper.h │ └── YHVideoHelper.m ├── View │ ├── CellDocument.h │ ├── CellDocument.m │ ├── ChatCell │ │ ├── CellChatBase.h │ │ ├── CellChatBase.m │ │ ├── CellChatFileLeft.h │ │ ├── CellChatFileLeft.m │ │ ├── CellChatFileRight.h │ │ ├── CellChatFileRight.m │ │ ├── CellChatGIFLeft.h │ │ ├── CellChatGIFLeft.m │ │ ├── CellChatGIFRight.h │ │ ├── CellChatGIFRight.m │ │ ├── CellChatImageLeft.h │ │ ├── CellChatImageLeft.m │ │ ├── CellChatImageRight.h │ │ ├── CellChatImageRight.m │ │ ├── CellChatList.h │ │ ├── CellChatList.m │ │ ├── CellChatTextLeft.h │ │ ├── CellChatTextLeft.m │ │ ├── CellChatTextRight.h │ │ ├── CellChatTextRight.m │ │ ├── CellChatTips.h │ │ ├── CellChatTips.m │ │ ├── CellChatVoiceLeft.h │ │ ├── CellChatVoiceLeft.m │ │ ├── CellChatVoiceRight.h │ │ └── CellChatVoiceRight.m │ ├── ExpressionKeyboard │ │ ├── Model │ │ │ ├── YHModel.h │ │ │ └── YHModel.m │ │ ├── YHExpressionAddView.h │ │ ├── YHExpressionAddView.m │ │ ├── YHExpressionHelper.h │ │ ├── YHExpressionHelper.m │ │ ├── YHExpressionInputView.h │ │ ├── YHExpressionInputView.m │ │ ├── YHExpressionKeyboard.h │ │ └── YHExpressionKeyboard.m │ ├── YHChatButton.h │ ├── YHChatButton.m │ ├── YHChatImageView.h │ ├── YHChatImageView.m │ ├── YHChatLabel.h │ ├── YHChatLabel.m │ ├── YHGroupIconView.h │ ├── YHGroupIconView.m │ ├── YHRefreshTableView.h │ ├── YHShootBotView.h │ ├── YHShootBotView.m │ ├── YHShootView.h │ ├── YHShootView.m │ ├── YHVoiceHUD.h │ └── YHVoiceHUD.m ├── YHChatListVC.h └── YHChatListVC.m ├── Info.plist ├── Manager ├── NetManager.h ├── NetManager.m ├── SqliteManager.h ├── SqliteManager.m ├── YHChatManager.h ├── YHChatManager.m ├── YHDownLoadManager.h ├── YHDownLoadManager.m ├── YHFMDB │ ├── FMDatabase+YHDatabase.h │ ├── FMDatabase+YHDatabase.m │ ├── NSObject+YHDBRuntime.h │ └── NSObject+YHDBRuntime.m ├── YHSqilteConfig.h ├── YHUploadManager.h └── YHUploadManager.m ├── Resource └── ExpressionKeyboard.bundle │ ├── additional │ ├── DisplayOnly │ │ ├── com.sina.emotions2015-04 │ │ │ ├── aihongbao_mobile.png │ │ │ ├── buyao_mobile.png │ │ │ ├── cakev2_mobile.png │ │ │ ├── eventtravel_mobile.png │ │ │ ├── fahongbao_mobile.png │ │ │ ├── geiliv2_mobile.png │ │ │ ├── haqianv2_mobile.png │ │ │ ├── huanglianse_mobile.png │ │ │ ├── huanglianshuijiao_mobile.png │ │ │ ├── huanglianweixiao_mobile.png │ │ │ ├── huatongv2_mobile.png │ │ │ ├── info.json │ │ │ ├── kunv2_mobile.png │ │ │ ├── landelini_mobile.png │ │ │ ├── lazhuv2_mobile.png │ │ │ ├── lxhpz_mobile.png │ │ │ ├── madaochenggong_mobile.png │ │ │ ├── numav2_mobile.png │ │ │ ├── wabi_mobile.png │ │ │ ├── yangniandaji_mobile.png │ │ │ └── zhajibeer_mobile.png │ │ ├── com.sina.emotions2015-05 │ │ │ ├── bbhlaolims_mobile.png │ │ │ ├── bbhlchihuo_mobile.png │ │ │ ├── bbhltianxinxxd_mobile.png │ │ │ ├── bbhlwoxiangjingjing_mobile.png │ │ │ ├── info.json │ │ │ ├── jqmbwtxing_mobile.png │ │ │ └── jqmweixiao_mobile.png │ │ ├── com.sina.emotions2015-06 │ │ │ ├── bbhlqiubaobao_mobile.png │ │ │ ├── bbhltianxinbuxiangzhangda_mobile.png │ │ │ ├── bbhltianxinkk_mobile.png │ │ │ ├── bbhltianxinlove_mobile.png │ │ │ ├── dorachijing_mobile.png │ │ │ ├── dorahaipa_mobile.png │ │ │ ├── dorahan_mobile.png │ │ │ ├── dorahaose_mobile.png │ │ │ ├── fuqinjie2015_mobile.png │ │ │ ├── hqgzunshangv1_mobile.png │ │ │ ├── info.json │ │ │ ├── jiqimaodaxiong_mobile.png │ │ │ ├── jiqimaojingxiang_mobile.png │ │ │ ├── jiqimaopanghu_mobile.png │ │ │ ├── jiqimaoxiaofu_mobile.png │ │ │ ├── kandiev2_mobile.png │ │ │ └── kanzhangv2_mobile.png │ │ ├── com.sina.emotions2015-07 │ │ │ ├── bbhltianxindese_mobile.png │ │ │ ├── bbhltianxingg_mobile.png │ │ │ ├── bbhltianxinhot_mobile.png │ │ │ ├── bbhltxfanbaiyan_mobile.png │ │ │ ├── bbhlyanzhigao_mobile.png │ │ │ ├── bbqnchulaihai_mobile.png │ │ │ ├── bbqnkkbaoyou_mobile.png │ │ │ ├── bbqnmengwadajun_mobile.png │ │ │ ├── bbqnxiatian_mobile.png │ │ │ ├── hqgtangbao_mobile.png │ │ │ ├── huaqiangusqm_mobile.png │ │ │ ├── huaqianguxiaogu_mobile.png │ │ │ ├── info.json │ │ │ └── zxyxwanzi_mobile.png │ │ └── com.sina.emotions2015-08 │ │ │ ├── bbqnxuanxuan_mobile.png │ │ │ ├── hqggongling02_mobile.png │ │ │ ├── info.json │ │ │ ├── qixi2015_mobile.png │ │ │ ├── zxyxchenxuedong_mobile.png │ │ │ └── zxyxtongdawei_mobile.png │ └── com.sina.default │ │ ├── bbqnshezhang_mobile.png │ │ ├── eventtravel_mobile.png │ │ ├── hqgqianguhua_mobile.png │ │ ├── info.json │ │ ├── jqmweixiao_mobile.png │ │ ├── lggluyiv2_mobile.png │ │ └── zxyxzhuyaowen_mobile.png │ ├── com.sina.default │ ├── d_aini@2x.png │ ├── d_aini@3x.png │ ├── d_aoteman@2x.png │ ├── d_aoteman@3x.png │ ├── d_baibai@2x.png │ ├── d_baibai@3x.png │ ├── d_beishang@2x.png │ ├── d_beishang@3x.png │ ├── d_bishi@2x.png │ ├── d_bishi@3x.png │ ├── d_bizui@2x.png │ ├── d_bizui@3x.png │ ├── d_chanzui@2x.png │ ├── d_chanzui@3x.png │ ├── d_chijing@2x.png │ ├── d_chijing@3x.png │ ├── d_dahaqi@2x.png │ ├── d_dahaqi@3x.png │ ├── d_dalian@2x.png │ ├── d_dalian@3x.png │ ├── d_ding@2x.png │ ├── d_ding@3x.png │ ├── d_doge@2x.png │ ├── d_doge@3x.png │ ├── d_feizao@2x.png │ ├── d_feizao@3x.png │ ├── d_ganmao@2x.png │ ├── d_ganmao@3x.png │ ├── d_guzhang@2x.png │ ├── d_guzhang@3x.png │ ├── d_haha@2x.png │ ├── d_haha@3x.png │ ├── d_haixiu@2x.png │ ├── d_haixiu@3x.png │ ├── d_han@2x.png │ ├── d_han@3x.png │ ├── d_hehe@2x.png │ ├── d_hehe@3x.png │ ├── d_heixian@2x.png │ ├── d_heixian@3x.png │ ├── d_heng@2x.png │ ├── d_heng@3x.png │ ├── d_huaxin@2x.png │ ├── d_huaxin@3x.png │ ├── d_jiyan@2x.png │ ├── d_jiyan@3x.png │ ├── d_keai@2x.png │ ├── d_keai@3x.png │ ├── d_kelian@2x.png │ ├── d_kelian@3x.png │ ├── d_ku@2x.png │ ├── d_ku@3x.png │ ├── d_kun@2x.png │ ├── d_kun@3x.png │ ├── d_landelini@2x.png │ ├── d_landelini@3x.png │ ├── d_lang@2x.png │ ├── d_lang@3x.png │ ├── d_lei@2x.png │ ├── d_lei@3x.png │ ├── d_madaochenggong@2x.png │ ├── d_miao@2x.png │ ├── d_miao@3x.png │ ├── d_nanhaier@2x.png │ ├── d_nanhaier@3x.png │ ├── d_nu@2x.png │ ├── d_nu@3x.png │ ├── d_numa@2x.png │ ├── d_numa@3x.png │ ├── d_nvhaier@2x.png │ ├── d_nvhaier@3x.png │ ├── d_qian@2x.png │ ├── d_qian@3x.png │ ├── d_qinqin@2x.png │ ├── d_qinqin@3x.png │ ├── d_shayan@2x.png │ ├── d_shayan@3x.png │ ├── d_shengbing@2x.png │ ├── d_shengbing@3x.png │ ├── d_shenshou@2x.png │ ├── d_shenshou@3x.png │ ├── d_shiwang@2x.png │ ├── d_shiwang@3x.png │ ├── d_shuai@2x.png │ ├── d_shuai@3x.png │ ├── d_shuijiao@2x.png │ ├── d_shuijiao@3x.png │ ├── d_sikao@2x.png │ ├── d_sikao@3x.png │ ├── d_taikaixin@2x.png │ ├── d_taikaixin@3x.png │ ├── d_touxiao@2x.png │ ├── d_touxiao@3x.png │ ├── d_tu@2x.png │ ├── d_tu@3x.png │ ├── d_tuzi@2x.png │ ├── d_tuzi@3x.png │ ├── d_wabishi@2x.png │ ├── d_wabishi@3x.png │ ├── d_weiqu@2x.png │ ├── d_weiqu@3x.png │ ├── d_xiaoku@2x.png │ ├── d_xiaoku@3x.png │ ├── d_xiongmao@2x.png │ ├── d_xiongmao@3x.png │ ├── d_xixi@2x.png │ ├── d_xixi@3x.png │ ├── d_xu@2x.png │ ├── d_xu@3x.png │ ├── d_yinxian@2x.png │ ├── d_yinxian@3x.png │ ├── d_yiwen@2x.png │ ├── d_yiwen@3x.png │ ├── d_youhengheng@2x.png │ ├── d_youhengheng@3x.png │ ├── d_yun@2x.png │ ├── d_yun@3x.png │ ├── d_zhajipijiu@2x.png │ ├── d_zhuakuang@2x.png │ ├── d_zhuakuang@3x.png │ ├── d_zhutou@2x.png │ ├── d_zhutou@3x.png │ ├── d_zuiyou@2x.png │ ├── d_zuiyou@3x.png │ ├── d_zuohengheng@2x.png │ ├── d_zuohengheng@3x.png │ ├── f_geili@2x.png │ ├── f_geili@3x.png │ ├── f_hufen@2x.png │ ├── f_hufen@3x.png │ ├── f_jiong@2x.png │ ├── f_jiong@3x.png │ ├── f_meng@2x.png │ ├── f_meng@3x.png │ ├── f_shenma@2x.png │ ├── f_shenma@3x.png │ ├── f_v5@2x.png │ ├── f_v5@3x.png │ ├── f_xi@2x.png │ ├── f_xi@3x.png │ ├── f_zhi@2x.png │ ├── f_zhi@3x.png │ ├── h_buyao@2x.png │ ├── h_buyao@3x.png │ ├── h_good@2x.png │ ├── h_good@3x.png │ ├── h_haha@2x.png │ ├── h_haha@3x.png │ ├── h_lai@2x.png │ ├── h_lai@3x.png │ ├── h_ok@2x.png │ ├── h_ok@3x.png │ ├── h_quantou@2x.png │ ├── h_quantou@3x.png │ ├── h_ruo@2x.png │ ├── h_ruo@3x.png │ ├── h_woshou@2x.png │ ├── h_woshou@3x.png │ ├── h_ye@2x.png │ ├── h_ye@3x.png │ ├── h_zan@2x.png │ ├── h_zan@3x.png │ ├── h_zuoyi@2x.png │ ├── h_zuoyi@3x.png │ ├── info.plist │ ├── l_shangxin@2x.png │ ├── l_shangxin@3x.png │ ├── l_xin@2x.png │ ├── l_xin@3x.png │ ├── o_dangao@2x.png │ ├── o_dangao@3x.png │ ├── o_feiji@2x.png │ ├── o_feiji@3x.png │ ├── o_ganbei@2x.png │ ├── o_ganbei@3x.png │ ├── o_huatong@2x.png │ ├── o_huatong@3x.png │ ├── o_lazhu@2x.png │ ├── o_lazhu@3x.png │ ├── o_liwu@2x.png │ ├── o_liwu@3x.png │ ├── o_lvsidai@2x.png │ ├── o_lvsidai@3x.png │ ├── o_weibo@2x.png │ ├── o_weibo@3x.png │ ├── o_weiguan@2x.png │ ├── o_weiguan@3x.png │ ├── o_yinyue@2x.png │ ├── o_yinyue@3x.png │ ├── o_zhaoxiangji@2x.png │ ├── o_zhaoxiangji@3x.png │ ├── o_zhong@2x.png │ ├── o_zhong@3x.png │ ├── w_fuyun@2x.png │ ├── w_fuyun@3x.png │ ├── w_shachenbao@2x.png │ ├── w_shachenbao@3x.png │ ├── w_taiyang@2x.png │ ├── w_taiyang@3x.png │ ├── w_weifeng@2x.png │ ├── w_weifeng@3x.png │ ├── w_xianhua@2x.png │ ├── w_xianhua@3x.png │ ├── w_xiayu@2x.png │ ├── w_xiayu@3x.png │ ├── w_yueliang@2x.png │ └── w_yueliang@3x.png │ ├── com.sina.lxh │ ├── info.plist │ ├── lxh_beicui.png │ ├── lxh_beicui@2x.png │ ├── lxh_beidian.png │ ├── lxh_beidian@2x.png │ ├── lxh_bengkui.png │ ├── lxh_bengkui@2x.png │ ├── lxh_biefanwo.png │ ├── lxh_biefanwo@2x.png │ ├── lxh_buhaoyisi.png │ ├── lxh_buhaoyisi@2x.png │ ├── lxh_buxiangshangban.png │ ├── lxh_buxiangshangban@2x.png │ ├── lxh_deyidexiao.png │ ├── lxh_deyidexiao@2x.png │ ├── lxh_geijin.png │ ├── lxh_geijin@2x.png │ ├── lxh_haoaio.png │ ├── lxh_haoaio@2x.png │ ├── lxh_haobang.png │ ├── lxh_haobang@2x.png │ ├── lxh_haojiong.png │ ├── lxh_haojiong@2x.png │ ├── lxh_haoxihuan.png │ ├── lxh_haoxihuan@2x.png │ ├── lxh_holdzhu.png │ ├── lxh_holdzhu@2x.png │ ├── lxh_jiekexun.png │ ├── lxh_jiekexun@2x.png │ ├── lxh_jiujie.png │ ├── lxh_jiujie@2x.png │ ├── lxh_juhan.png │ ├── lxh_juhan@2x.png │ ├── lxh_koubishi.png │ ├── lxh_koubishi@2x.png │ ├── lxh_kunsile.png │ ├── lxh_kunsile@2x.png │ ├── lxh_leifeng.png │ ├── lxh_leifeng@2x.png │ ├── lxh_leiliumanmian.png │ ├── lxh_leiliumanmian@2x.png │ ├── lxh_meigui.png │ ├── lxh_meigui@2x.png │ ├── lxh_oye.png │ ├── lxh_oye@2x.png │ ├── lxh_pili.png │ ├── lxh_pili@2x.png │ ├── lxh_qiaoqiao.png │ ├── lxh_qiaoqiao@2x.png │ ├── lxh_qiubite.png │ ├── lxh_qiubite@2x.png │ ├── lxh_qiuguanzhu.png │ ├── lxh_qiuguanzhu@2x.png │ ├── lxh_quntiweiguan.png │ ├── lxh_quntiweiguan@2x.png │ ├── lxh_shuaishuaishou.png │ ├── lxh_shuaishuaishou@2x.png │ ├── lxh_toule.png │ ├── lxh_toule@2x.png │ ├── lxh_tuijian.png │ ├── lxh_tuijian@2x.png │ ├── lxh_xianghumobai.png │ ├── lxh_xianghumobai@2x.png │ ├── lxh_xiangyixiang.png │ ├── lxh_xiangyixiang@2x.png │ ├── lxh_xiaohaha.png │ ├── lxh_xiaohaha@2x.png │ ├── lxh_xiudada.png │ ├── lxh_xiudada@2x.png │ ├── lxh_xuyuan.png │ ├── lxh_xuyuan@2x.png │ ├── lxh_youyali.png │ ├── lxh_youyali@2x.png │ ├── lxh_zana.png │ ├── lxh_zana@2x.png │ ├── lxh_zaokuangzheng.png │ ├── lxh_zaokuangzheng@2x.png │ ├── lxh_zhenjing.png │ ├── lxh_zhenjing@2x.png │ ├── lxh_zhuanfa.png │ └── lxh_zhuanfa@2x.png │ ├── emoticons.plist │ ├── extra │ ├── chatBar_colorMore_audioCall@2x.png │ ├── chatBar_colorMore_audioCallSelected@2x.png │ ├── chatBar_colorMore_camera@2x.png │ ├── chatBar_colorMore_cameraSelected@2x.png │ ├── chatBar_colorMore_location@2x.png │ ├── chatBar_colorMore_locationSelected@2x.png │ ├── chatBar_colorMore_photo@2x.png │ ├── chatBar_colorMore_photoSelected@2x.png │ ├── chatBar_colorMore_video@2x.png │ ├── chatBar_colorMore_videoCall@2x.png │ ├── chatBar_colorMore_videoCallSelected@2x.png │ ├── chatBar_colorMore_videoSelected@2x.png │ └── info.plist │ └── toolBar │ ├── compose_emoticonbutton_background@2x.png │ ├── compose_emoticonbutton_background@3x.png │ ├── compose_emoticonbutton_background_highlighted@2x.png │ ├── compose_emoticonbutton_background_highlighted@3x.png │ ├── compose_emotion_delete@2x.png │ ├── compose_emotion_delete@3x.png │ ├── compose_emotion_delete_highlighted@2x.png │ ├── compose_emotion_delete_highlighted@3x.png │ ├── compose_emotion_table_left_normal@2x.png │ ├── compose_emotion_table_left_selected@2x.png │ ├── compose_emotion_table_mid_normal@2x.png │ ├── compose_emotion_table_mid_selected@2x.png │ ├── compose_emotion_table_right_normal@2x.png │ ├── compose_emotion_table_right_selected@2x.png │ ├── compose_keyboardbutton_background@2x.png │ ├── compose_keyboardbutton_background@3x.png │ ├── compose_keyboardbutton_background_highlighted@2x.png │ ├── compose_keyboardbutton_background_highlighted@3x.png │ ├── compose_toolbar_voice@2x.png │ ├── compose_toolbar_voice@3x.png │ ├── emoticon_keyboard_magnifier@2x.png │ ├── emoticon_keyboard_magnifier@3x.png │ ├── message_add_background@2x.png │ ├── message_add_background@3x.png │ ├── message_add_background_highlighted@2x.png │ └── message_add_background_highlighted@3x.png ├── TestData ├── TestData.h ├── TestData.m ├── YHDebug.h ├── YHProtocolConfig.h └── YHProtocolConfig.m ├── Tools ├── HHUtils.h ├── HHUtils.m ├── YHFileTool.h └── YHFileTool.m ├── UICustoms ├── YHActionSheet.h ├── YHActionSheet.m ├── YHNavigationController.h ├── YHNavigationController.m ├── YHPhotoBrowser │ ├── YHBrowserImageView.h │ ├── YHBrowserImageView.m │ ├── YHPhotoBrowserConfig.h │ ├── YHPhotoBrowserView.h │ ├── YHPhotoBrowserView.m │ ├── YHWaitingView.h │ └── YHWaitingView.m ├── YHRefreshTableView.h ├── YHRefreshTableView.m ├── YHWebViewController.h └── YHWebViewController.m ├── Vendors ├── MJExtension │ ├── Info.plist │ ├── MJExtension.h │ ├── MJExtensionConst.h │ ├── MJExtensionConst.m │ ├── MJFoundation.h │ ├── MJFoundation.m │ ├── MJProperty.h │ ├── MJProperty.m │ ├── MJPropertyKey.h │ ├── MJPropertyKey.m │ ├── MJPropertyType.h │ ├── MJPropertyType.m │ ├── NSObject+MJClass.h │ ├── NSObject+MJClass.m │ ├── NSObject+MJCoding.h │ ├── NSObject+MJCoding.m │ ├── NSObject+MJKeyValue.h │ ├── NSObject+MJKeyValue.m │ ├── NSObject+MJProperty.h │ ├── NSObject+MJProperty.m │ ├── NSString+MJExtension.h │ └── NSString+MJExtension.m └── VoiceConvert │ ├── VoiceConverter.h │ ├── VoiceConverter.mm │ ├── amrwapper │ ├── amrFileCodec.h │ └── amrFileCodec.mm │ ├── lib │ ├── libopencore-amrnb.a │ └── libopencore-amrwb.a │ ├── opencore-amrnb │ ├── interf_dec.h │ └── interf_enc.h │ └── opencore-amrwb │ ├── dec_if.h │ └── if_rom.h ├── YHChat-PrefixHeader.pch └── main.m /Podfile: -------------------------------------------------------------------------------- 1 | platform :ios, '9.0' 2 | target 'YHChat' do 3 | use_frameworks! 4 | pod 'Masonry' 5 | pod 'MJRefresh' 6 | pod 'HYBMasonryAutoCellHeight' 7 | pod 'YYKit' 8 | pod 'SDWebImage' 9 | pod 'AFNetworking' 10 | pod 'SocketRocket' 11 | pod 'FMDB' 12 | end 13 | 14 | -------------------------------------------------------------------------------- /Pods/FMDB/src/fmdb/FMDB.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | FOUNDATION_EXPORT double FMDBVersionNumber; 4 | FOUNDATION_EXPORT const unsigned char FMDBVersionString[]; 5 | 6 | #import "FMDatabase.h" 7 | #import "FMResultSet.h" 8 | #import "FMDatabaseAdditions.h" 9 | #import "FMDatabaseQueue.h" 10 | #import "FMDatabasePool.h" 11 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Base/MJRefreshBackFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshBackFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshFooter.h" 10 | 11 | @interface MJRefreshBackFooter : MJRefreshFooter 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJRefreshAutoNormalFooter.h 3 | // MJRefreshExample 4 | // 5 | // Created by MJ Lee on 15/4/24. 6 | // Copyright (c) 2015年 小码哥. All rights reserved. 7 | // 8 | 9 | #import "MJRefreshAutoStateFooter.h" 10 | 11 | @interface MJRefreshAutoNormalFooter : MJRefreshAutoStateFooter 12 | /** 菊花的样式 */ 13 | @property (assign, nonatomic) UIActivityIndicatorViewStyle activityIndicatorViewStyle; 14 | @end 15 | -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/arrow@2x.png -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/Pods/MJRefresh/MJRefresh/MJRefresh.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASLayoutConstraint.h" 10 | 11 | @implementation MASLayoutConstraint 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Pods/Masonry/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSLayoutConstraint+MASDebugAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * makes debug and log output of NSLayoutConstraints more readable 13 | */ 14 | @interface NSLayoutConstraint (MASDebugAdditions) 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Pods/SDWebImage/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | 11 | @protocol SDWebImageOperation 12 | 13 | - (void)cancel; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_AFNetworking : NSObject 3 | @end 4 | @implementation PodsDummy_AFNetworking 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #ifndef TARGET_OS_IOS 6 | #define TARGET_OS_IOS TARGET_OS_IPHONE 7 | #endif 8 | 9 | #ifndef TARGET_OS_WATCH 10 | #define TARGET_OS_WATCH 0 11 | #endif 12 | 13 | #ifndef TARGET_OS_TV 14 | #define TARGET_OS_TV 0 15 | #endif 16 | -------------------------------------------------------------------------------- /Pods/Target Support Files/AFNetworking/AFNetworking.modulemap: -------------------------------------------------------------------------------- 1 | framework module AFNetworking { 2 | umbrella header "AFNetworking-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FMDB : NSObject 3 | @end 4 | @implementation PodsDummy_FMDB 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "FMDatabase.h" 6 | #import "FMDatabaseAdditions.h" 7 | #import "FMDatabasePool.h" 8 | #import "FMDatabaseQueue.h" 9 | #import "FMDB.h" 10 | #import "FMResultSet.h" 11 | 12 | FOUNDATION_EXPORT double FMDBVersionNumber; 13 | FOUNDATION_EXPORT const unsigned char FMDBVersionString[]; 14 | 15 | -------------------------------------------------------------------------------- /Pods/Target Support Files/FMDB/FMDB.modulemap: -------------------------------------------------------------------------------- 1 | framework module FMDB { 2 | umbrella header "FMDB-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_HYBMasonryAutoCellHeight : NSObject 3 | @end 4 | @implementation PodsDummy_HYBMasonryAutoCellHeight 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "UITableView+HYBCacheHeight.h" 6 | #import "UITableViewCell+HYBMasonryAutoCellHeight.h" 7 | 8 | FOUNDATION_EXPORT double HYBMasonryAutoCellHeightVersionNumber; 9 | FOUNDATION_EXPORT const unsigned char HYBMasonryAutoCellHeightVersionString[]; 10 | 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/HYBMasonryAutoCellHeight/HYBMasonryAutoCellHeight.modulemap: -------------------------------------------------------------------------------- 1 | framework module HYBMasonryAutoCellHeight { 2 | umbrella header "HYBMasonryAutoCellHeight-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_MJRefresh : NSObject 3 | @end 4 | @implementation PodsDummy_MJRefresh 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/MJRefresh/MJRefresh.modulemap: -------------------------------------------------------------------------------- 1 | framework module MJRefresh { 2 | umbrella header "MJRefresh-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Masonry : NSObject 3 | @end 4 | @implementation PodsDummy_Masonry 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Masonry/Masonry.modulemap: -------------------------------------------------------------------------------- 1 | framework module Masonry { 2 | umbrella header "Masonry-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YHChat/Pods-YHChat-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_YHChat : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_YHChat 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YHChat/Pods-YHChat-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | 6 | FOUNDATION_EXPORT double Pods_YHChatVersionNumber; 7 | FOUNDATION_EXPORT const unsigned char Pods_YHChatVersionString[]; 8 | 9 | -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-YHChat/Pods-YHChat.modulemap: -------------------------------------------------------------------------------- 1 | framework module Pods_YHChat { 2 | umbrella header "Pods-YHChat-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SDWebImage/SDWebImage.modulemap: -------------------------------------------------------------------------------- 1 | framework module SDWebImage { 2 | umbrella header "SDWebImage-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SocketRocket/SocketRocket-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SocketRocket : NSObject 3 | @end 4 | @implementation PodsDummy_SocketRocket 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SocketRocket/SocketRocket-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SocketRocket/SocketRocket-umbrella.h: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "SocketRocket.h" 6 | #import "SRWebSocket.h" 7 | 8 | FOUNDATION_EXPORT double SocketRocketVersionNumber; 9 | FOUNDATION_EXPORT const unsigned char SocketRocketVersionString[]; 10 | 11 | -------------------------------------------------------------------------------- /Pods/Target Support Files/SocketRocket/SocketRocket.modulemap: -------------------------------------------------------------------------------- 1 | framework module SocketRocket { 2 | umbrella header "SocketRocket-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/Target Support Files/YYKit/YYKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_YYKit : NSObject 3 | @end 4 | @implementation PodsDummy_YYKit 5 | @end 6 | -------------------------------------------------------------------------------- /Pods/Target Support Files/YYKit/YYKit-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /Pods/Target Support Files/YYKit/YYKit.modulemap: -------------------------------------------------------------------------------- 1 | framework module YYKit { 2 | umbrella header "YYKit-umbrella.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Pods/YYKit/Vendor/WebP.framework/WebP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/Pods/YYKit/Vendor/WebP.framework/WebP -------------------------------------------------------------------------------- /YHChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /YHChat.xcodeproj/project.xcworkspace/xcuserdata/YHIOS002.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat.xcodeproj/project.xcworkspace/xcuserdata/YHIOS002.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YHChat.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /YHChat.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /YHChat.xcworkspace/xcuserdata/YHIOS002.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat.xcworkspace/xcuserdata/YHIOS002.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YHChat.xcworkspace/xcuserdata/kun.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat.xcworkspace/xcuserdata/kun.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /YHChat/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // samuelandkevin github:https://github.com/samuelandkevin/YHChat 4 | // 5 | // Created by samuelandkevin on 17/2/17. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-72.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-72@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small-1.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/App_video_play_btn_bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "video_play_btn_bg@2x.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 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/App_video_play_btn_bg.imageset/video_play_btn_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/App_video_play_btn_bg.imageset/video_play_btn_bg@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/beijign.imageset/beijign@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/beijign.imageset/beijign@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/beijign.imageset/beijign@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/beijign.imageset/beijign@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/button_retry_comment.imageset/button_retry_comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/button_retry_comment.imageset/button_retry_comment.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/button_retry_comment.imageset/button_retry_comment@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/button_retry_comment.imageset/button_retry_comment@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/button_retry_comment.imageset/button_retry_comment@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/button_retry_comment.imageset/button_retry_comment@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/cancelVoice.imageset/cancelVoice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/cancelVoice.imageset/cancelVoice@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/cancelVoice.imageset/cancelVoice@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/cancelVoice.imageset/cancelVoice@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_bubbleLeft.imageset/chat_bubbleLeft@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_bubbleLeft.imageset/chat_bubbleLeft@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_bubbleLeft.imageset/chat_bubbleLeft@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_bubbleLeft.imageset/chat_bubbleLeft@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_bubbleRight.imageset/chat_bubbleRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_bubbleRight.imageset/chat_bubbleRight@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_bubbleRight.imageset/chat_bubbleRight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_bubbleRight.imageset/chat_bubbleRight@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_checkBox_nor.imageset/chat_checkBox_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_checkBox_nor.imageset/chat_checkBox_nor@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_checkBox_nor.imageset/chat_checkBox_nor@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_checkBox_nor.imageset/chat_checkBox_nor@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_checkBox_sel.imageset/chat_checkBox_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_checkBox_sel.imageset/chat_checkBox_sel@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_checkBox_sel.imageset/chat_checkBox_sel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_checkBox_sel.imageset/chat_checkBox_sel@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_fileBG.imageset/liaotianfile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_fileBG.imageset/liaotianfile@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_fileBG.imageset/liaotianfile@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_fileBG.imageset/liaotianfile@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_img_defaultPhoto.imageset/chat_img_defaultPhoto@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_img_defaultPhoto.imageset/chat_img_defaultPhoto@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/chat_img_defaultPhoto.imageset/chat_img_defaultPhoto@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/chat_img_defaultPhoto.imageset/chat_img_defaultPhoto@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/daibantongzhi.imageset/daibantongzhi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/daibantongzhi.imageset/daibantongzhi@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/daibantongzhi.imageset/daibantongzhi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/daibantongzhi.imageset/daibantongzhi@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/deleteBtn.imageset/deleteBtn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/deleteBtn.imageset/deleteBtn@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/deleteBtn.imageset/deleteBtn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/deleteBtn.imageset/deleteBtn@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/excerl.imageset/excerl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/excerl.imageset/excerl@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/excerl.imageset/excerl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/excerl.imageset/excerl@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/groupHead.imageset/groupHead@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/groupHead.imageset/groupHead@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/groupHead.imageset/groupHead@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/groupHead.imageset/groupHead@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/icon_empty_file.imageset/图@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/icon_empty_file.imageset/图@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/icon_empty_file.imageset/图@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/icon_empty_file.imageset/图@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/icon_pickPicback.imageset/zhezhao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/icon_pickPicback.imageset/zhezhao@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/icon_pickPicback.imageset/zhezhao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/icon_pickPicback.imageset/zhezhao@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-chuangjianhuihua.imageset/iconfont-chuangjianhuihua@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-chuangjianhuihua.imageset/iconfont-chuangjianhuihua@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-chuangjianhuihua.imageset/iconfont-chuangjianhuihua@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-chuangjianhuihua.imageset/iconfont-chuangjianhuihua@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-kaishianniu.imageset/iconfont-kaishianniu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-kaishianniu.imageset/iconfont-kaishianniu@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-kaishianniu.imageset/iconfont-kaishianniu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-kaishianniu.imageset/iconfont-kaishianniu@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-luyin.imageset/iconfont-luyin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-luyin.imageset/iconfont-luyin@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-luyin.imageset/iconfont-luyin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-luyin.imageset/iconfont-luyin@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-wenjian.imageset/iconfont-wenjian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-wenjian.imageset/iconfont-wenjian@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-wenjian.imageset/iconfont-wenjian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-wenjian.imageset/iconfont-wenjian@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-zhanting.imageset/iconfont-zhanting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-zhanting.imageset/iconfont-zhanting@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/iconfont-zhanting.imageset/iconfont-zhanting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/iconfont-zhanting.imageset/iconfont-zhanting@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/left-1.imageset/left-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/left-1.imageset/left-1@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/left-1.imageset/left-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/left-1.imageset/left-1@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/left-2.imageset/left-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/left-2.imageset/left-2@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/left-2.imageset/left-2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/left-2.imageset/left-2@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/left-3.imageset/left-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/left-3.imageset/left-3@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/left-3.imageset/left-3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/left-3.imageset/left-3@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/pdf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "pdf@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "pdf@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/pdf.imageset/pdf@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/pdf.imageset/pdf@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/pdf.imageset/pdf@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/pdf.imageset/pdf@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/play.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "play.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 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/play.imageset/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/play.imageset/play.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/ppt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ppt@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "ppt@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/ppt.imageset/ppt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/ppt.imageset/ppt@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/ppt.imageset/ppt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/ppt.imageset/ppt@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/right-1.imageset/right-1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/right-1.imageset/right-1@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/right-1.imageset/right-1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/right-1.imageset/right-1@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/right-2.imageset/right-2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/right-2.imageset/right-2@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/right-2.imageset/right-2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/right-2.imageset/right-2@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/right-3.imageset/right-3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/right-3.imageset/right-3@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/right-3.imageset/right-3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/right-3.imageset/right-3@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/shipin.imageset/shipin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/shipin.imageset/shipin@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/shipin.imageset/shipin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/shipin.imageset/shipin@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/txt.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "txt@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "filename" : "txt@3x.png", 15 | "scale" : "3x" 16 | } 17 | ], 18 | "info" : { 19 | "version" : 1, 20 | "author" : "xcode" 21 | } 22 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/txt.imageset/txt@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/txt.imageset/txt@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/txt.imageset/txt@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/txt.imageset/txt@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/video_play_btn_bg-1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "video_play_btn_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 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/video_play_btn_bg-1.imageset/video_play_btn_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/video_play_btn_bg-1.imageset/video_play_btn_bg@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/video_play_btn_bg-2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "video_play_btn_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 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/video_play_btn_bg-2.imageset/video_play_btn_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/video_play_btn_bg-2.imageset/video_play_btn_bg@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/video_play_btn_bg.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "video_play_btn_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 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/video_play_btn_bg.imageset/video_play_btn_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/video_play_btn_bg.imageset/video_play_btn_bg@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voiceShort.imageset/voiceShort@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voiceShort.imageset/voiceShort@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voiceShort.imageset/voiceShort@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voiceShort.imageset/voiceShort@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_1.imageset/voice_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_1.imageset/voice_1@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_1.imageset/voice_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_1.imageset/voice_1@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_2.imageset/voice_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_2.imageset/voice_2@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_2.imageset/voice_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_2.imageset/voice_2@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_3.imageset/voice_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_3.imageset/voice_3@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_3.imageset/voice_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_3.imageset/voice_3@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_4.imageset/voice_4@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_4.imageset/voice_4@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_4.imageset/voice_4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_4.imageset/voice_4@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_5.imageset/voice_5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_5.imageset/voice_5@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_5.imageset/voice_5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_5.imageset/voice_5@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_6.imageset/voice_6@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_6.imageset/voice_6@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/voice_6.imageset/voice_6@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/voice_6.imageset/voice_6@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/word.imageset/word@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/word.imageset/word@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/word.imageset/word@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/word.imageset/word@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/xiugaiqunming.imageset/xiugaiqunming@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/xiugaiqunming.imageset/xiugaiqunming@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/xiugaiqunming.imageset/xiugaiqunming@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/xiugaiqunming.imageset/xiugaiqunming@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/yinpin.imageset/yinpin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/yinpin.imageset/yinpin@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/yinpin.imageset/yinpin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/yinpin.imageset/yinpin@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/zhaopian.imageset/zhaopian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/zhaopian.imageset/zhaopian@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Chat/zhaopian.imageset/zhaopian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Chat/zhaopian.imageset/zhaopian@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Common/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Common/common_avatar_80px.imageset/common_avatar_80px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Common/common_avatar_80px.imageset/common_avatar_80px@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Common/common_avatar_80px.imageset/common_avatar_80px@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Common/common_avatar_80px.imageset/common_avatar_80px@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Common/common_leftArrow.imageset/leftarrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Common/common_leftArrow.imageset/leftarrow@2x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Common/common_leftArrow.imageset/leftarrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Assets.xcassets/Common/common_leftArrow.imageset/leftarrow@3x.png -------------------------------------------------------------------------------- /YHChat/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /YHChat/Catagory/NSString+Extension.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+Extension.h 3 | // YHChat 4 | // 5 | // Created by samuelandkevin on 17/3/28. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (Extension) 12 | 13 | - (NSString *)originName; 14 | @end 15 | -------------------------------------------------------------------------------- /YHChat/Chat/Model/ChatModel/YHChatListModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YHChatListModel.m 3 | // samuelandkevin github:https://github.com/samuelandkevin/YHChat 4 | // 5 | // Created by samuelandkevin on 17/2/23. 6 | // Copyright © 2017年 YHSoft. All rights reserved. 7 | // 8 | 9 | #import "YHChatListModel.h" 10 | 11 | @implementation YHChatListModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YHChat/Chat/Model/ChatModel/YHGIFModel.m: -------------------------------------------------------------------------------- 1 | // 2 | // YHGIFModel.m 3 | // YHChat 4 | // 5 | // Created by YHIOS002 on 17/4/12. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import "YHGIFModel.h" 10 | 11 | @implementation YHGIFModel 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YHChat/Chat/Model/UserInfoModel/YHUserSetting.m: -------------------------------------------------------------------------------- 1 | // 2 | // YHUserSetting.m 3 | // samuelandkevin github:https://github.com/samuelandkevin/YHChat 4 | // 5 | // Created by samuelandkevin on 16/5/2. 6 | // Copyright © 2016年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import "YHUserSetting.h" 10 | 11 | @implementation YHUserSetting 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YHChat/Chat/SubPages/YHChatDetailVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHChatDetailVC.h 3 | // samuelandkevin github:https://github.com/samuelandkevin/YHChat 4 | // 5 | // Created by samuelandkevin on 17/2/17. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "YHChatListModel.h" 11 | 12 | @interface YHChatDetailVC : UIViewController 13 | 14 | @property (nonatomic,strong)YHChatListModel *model; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YHChat/Chat/SubPages/YHDocumentVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHDocumentVC.h 3 | // YHChat 4 | // 5 | // Created by samuelandkevin on 17/3/28. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YHDocumentVC : UIViewController 12 | 13 | - (void)didSelectFilesComplete:(void(^)(NSArray *files))complete; 14 | @end 15 | -------------------------------------------------------------------------------- /YHChat/Chat/SubPages/YHShootVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHShootVC.h 3 | // YHChat 4 | // 5 | // Created by YHIOS002 on 17/4/13. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YHShootVC : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YHChat/Chat/View/ChatCell/CellChatGIFLeft.h: -------------------------------------------------------------------------------- 1 | // 2 | // CellChatGIFLeft.h 3 | // YHChat 4 | // 5 | // Created by YHIOS002 on 17/4/11. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import "CellChatBase.h" 10 | 11 | @interface CellChatGIFLeft : CellChatBase 12 | 13 | - (void)startAnimating; 14 | - (void)stopAnimating; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YHChat/Chat/View/ChatCell/CellChatGIFRight.h: -------------------------------------------------------------------------------- 1 | // 2 | // CellChatGIFRight.h 3 | // YHChat 4 | // 5 | // Created by YHIOS002 on 17/4/11. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import "CellChatBase.h" 10 | 11 | @interface CellChatGIFRight : CellChatBase 12 | 13 | - (void)startAnimating; 14 | - (void)stopAnimating; 15 | @end 16 | -------------------------------------------------------------------------------- /YHChat/Chat/View/ChatCell/CellChatTips.h: -------------------------------------------------------------------------------- 1 | // 2 | // CellChatTips.h 3 | // YHChat 4 | // 5 | // Created by samuelandkevin on 17/3/16. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "YHChatModel.h" 11 | 12 | @interface CellChatTips : UITableViewCell 13 | 14 | @property (nonatomic,strong)YHChatModel *model; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /YHChat/Chat/View/YHChatButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHChatButton.h 3 | // YHChat 4 | // 5 | // Created by YHIOS002 on 17/4/6. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YHChatButton : UIButton 12 | 13 | 14 | @property (nonatomic,copy) void(^retweetFileBlock)();//转发文件 15 | @property (nonatomic,copy) void(^withDrawFileBlock)();//撤回文件 16 | 17 | @property (nonatomic,assign) BOOL isReceiver; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /YHChat/Chat/View/YHGroupIconView.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHGroupIconView.h 3 | // samuelandkevin github:https://github.com/samuelandkevin/YHChat 4 | // 5 | // Created by samuelandkevin on 2017/1/18. 6 | // Copyright © 2017年 YHSoft. All rights reserved. 7 | // 聊天群图标(由群成员头像拼成icon) 8 | 9 | #import 10 | 11 | @interface YHGroupIconView : UIView 12 | @property (nonatomic, strong) NSArray *picUrlArray; //缩略图URL 13 | @end 14 | -------------------------------------------------------------------------------- /YHChat/Chat/View/YHVoiceHUD.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHVoiceHUD.h 3 | // YHChat 4 | // 5 | // Created by samuelandkevin on 17/3/7. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YHVoiceHUD : UIImageView 12 | 13 | @property (nonatomic, assign) CGFloat progress; 14 | @end 15 | -------------------------------------------------------------------------------- /YHChat/Chat/YHChatListVC.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHChatListVC.h 3 | // samuelandkevin github:https://github.com/samuelandkevin/YHChat 4 | // 5 | // Created by samuelandkevin on 17/2/17. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YHChatListVC : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /YHChat/Manager/YHChatManager.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHChatManager.h 3 | // YHChat 4 | // 5 | // Created by samuelandkevin on 17/3/16. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YHChatManager : NSObject 12 | 13 | + (YHChatManager*)sharedInstance; 14 | 15 | //连接 16 | - (void)connectToUserID:(NSString *)toUserId isGroupChat:(BOOL)isGroupChat; 17 | //关闭 18 | - (void)close; 19 | @end 20 | -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/aihongbao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/aihongbao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/buyao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/buyao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/cakev2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/cakev2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/eventtravel_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/eventtravel_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/fahongbao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/fahongbao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/geiliv2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/geiliv2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/haqianv2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/haqianv2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/huanglianse_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/huanglianse_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/huanglianshuijiao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/huanglianshuijiao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/huanglianweixiao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/huanglianweixiao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/huatongv2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/huatongv2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/kunv2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/kunv2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/landelini_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/landelini_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/lazhuv2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/lazhuv2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/lxhpz_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/lxhpz_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/madaochenggong_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/madaochenggong_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/numav2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/numav2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/wabi_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/wabi_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/yangniandaji_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/yangniandaji_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/zhajibeer_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-04/zhajibeer_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/bbhlaolims_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/bbhlaolims_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/bbhlchihuo_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/bbhlchihuo_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/bbhltianxinxxd_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/bbhltianxinxxd_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/bbhlwoxiangjingjing_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/bbhlwoxiangjingjing_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/jqmbwtxing_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/jqmbwtxing_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/jqmweixiao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-05/jqmweixiao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/bbhlqiubaobao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/bbhlqiubaobao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/bbhltianxinbuxiangzhangda_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/bbhltianxinbuxiangzhangda_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/bbhltianxinkk_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/bbhltianxinkk_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/bbhltianxinlove_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/bbhltianxinlove_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/dorachijing_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/dorachijing_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/dorahaipa_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/dorahaipa_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/dorahan_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/dorahan_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/dorahaose_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/dorahaose_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/fuqinjie2015_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/fuqinjie2015_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/hqgzunshangv1_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/hqgzunshangv1_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/jiqimaodaxiong_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/jiqimaodaxiong_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/jiqimaojingxiang_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/jiqimaojingxiang_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/jiqimaopanghu_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/jiqimaopanghu_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/jiqimaoxiaofu_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/jiqimaoxiaofu_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/kandiev2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/kandiev2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/kanzhangv2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-06/kanzhangv2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhltianxindese_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhltianxindese_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhltianxingg_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhltianxingg_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhltianxinhot_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhltianxinhot_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhltxfanbaiyan_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhltxfanbaiyan_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhlyanzhigao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbhlyanzhigao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbqnchulaihai_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbqnchulaihai_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbqnkkbaoyou_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbqnkkbaoyou_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbqnmengwadajun_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbqnmengwadajun_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbqnxiatian_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/bbqnxiatian_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/hqgtangbao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/hqgtangbao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/huaqiangusqm_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/huaqiangusqm_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/huaqianguxiaogu_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/huaqianguxiaogu_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/zxyxwanzi_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-07/zxyxwanzi_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/bbqnxuanxuan_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/bbqnxuanxuan_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/hqggongling02_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/hqggongling02_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/qixi2015_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/qixi2015_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/zxyxchenxuedong_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/zxyxchenxuedong_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/zxyxtongdawei_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/DisplayOnly/com.sina.emotions2015-08/zxyxtongdawei_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/bbqnshezhang_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/bbqnshezhang_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/eventtravel_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/eventtravel_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/hqgqianguhua_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/hqgqianguhua_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/jqmweixiao_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/jqmweixiao_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/lggluyiv2_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/lggluyiv2_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/zxyxzhuyaowen_mobile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/additional/com.sina.default/zxyxzhuyaowen_mobile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_aini@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_aini@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_aini@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_aini@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_aoteman@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_aoteman@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_aoteman@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_aoteman@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_baibai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_baibai@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_baibai@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_baibai@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_beishang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_beishang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_beishang@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_beishang@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_bishi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_bishi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_bishi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_bishi@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_bizui@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_bizui@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_bizui@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_bizui@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_chanzui@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_chanzui@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_chanzui@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_chanzui@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_chijing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_chijing@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_chijing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_chijing@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_dahaqi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_dahaqi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_dahaqi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_dahaqi@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_dalian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_dalian@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_dalian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_dalian@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ding@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ding@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ding@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ding@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_doge@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_doge@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_doge@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_doge@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_feizao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_feizao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_feizao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_feizao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ganmao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ganmao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ganmao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ganmao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_guzhang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_guzhang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_guzhang@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_guzhang@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_haha@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_haha@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_haha@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_haha@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_haixiu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_haixiu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_haixiu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_haixiu@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_han@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_han@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_han@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_han@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_hehe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_hehe@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_hehe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_hehe@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_heixian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_heixian@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_heixian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_heixian@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_heng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_heng@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_heng@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_heng@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_huaxin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_huaxin@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_huaxin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_huaxin@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_jiyan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_jiyan@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_jiyan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_jiyan@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_keai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_keai@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_keai@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_keai@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_kelian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_kelian@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_kelian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_kelian@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ku@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ku@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ku@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_ku@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_kun@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_kun@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_kun@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_kun@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_landelini@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_landelini@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_landelini@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_landelini@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_lang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_lang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_lang@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_lang@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_lei@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_lei@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_lei@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_lei@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_madaochenggong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_madaochenggong@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_miao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_miao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_miao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_miao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nanhaier@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nanhaier@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nanhaier@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nanhaier@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nu@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_numa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_numa@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_numa@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_numa@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nvhaier@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nvhaier@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nvhaier@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_nvhaier@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_qian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_qian@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_qian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_qian@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_qinqin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_qinqin@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_qinqin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_qinqin@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shayan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shayan@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shayan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shayan@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shengbing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shengbing@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shengbing@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shengbing@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shenshou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shenshou@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shenshou@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shenshou@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shiwang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shiwang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shiwang@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shiwang@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shuai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shuai@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shuai@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shuai@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shuijiao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shuijiao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shuijiao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_shuijiao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_sikao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_sikao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_sikao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_sikao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_taikaixin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_taikaixin@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_taikaixin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_taikaixin@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_touxiao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_touxiao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_touxiao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_touxiao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_tu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_tu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_tu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_tu@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_tuzi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_tuzi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_tuzi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_tuzi@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_wabishi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_wabishi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_wabishi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_wabishi@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_weiqu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_weiqu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_weiqu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_weiqu@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xiaoku@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xiaoku@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xiaoku@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xiaoku@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xiongmao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xiongmao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xiongmao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xiongmao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xixi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xixi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xixi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xixi@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_xu@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yinxian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yinxian@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yinxian@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yinxian@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yiwen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yiwen@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yiwen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yiwen@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_youhengheng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_youhengheng@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_youhengheng@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_youhengheng@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yun@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yun@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yun@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_yun@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhajipijiu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhajipijiu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhuakuang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhuakuang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhuakuang@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhuakuang@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhutou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhutou@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhutou@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zhutou@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zuiyou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zuiyou@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zuiyou@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zuiyou@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zuohengheng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zuohengheng@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zuohengheng@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/d_zuohengheng@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_geili@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_geili@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_geili@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_geili@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_hufen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_hufen@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_hufen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_hufen@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_jiong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_jiong@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_jiong@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_jiong@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_meng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_meng@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_meng@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_meng@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_shenma@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_shenma@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_shenma@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_shenma@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_v5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_v5@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_v5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_v5@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_xi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_xi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_xi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_xi@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_zhi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_zhi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_zhi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/f_zhi@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_buyao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_buyao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_buyao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_buyao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_good@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_good@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_good@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_good@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_haha@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_haha@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_haha@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_haha@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_lai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_lai@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_lai@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_lai@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ok@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ok@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ok@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_quantou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_quantou@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_quantou@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_quantou@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ruo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ruo@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ruo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ruo@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_woshou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_woshou@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_woshou@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_woshou@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ye@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ye@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ye@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_ye@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_zan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_zan@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_zan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_zan@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_zuoyi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_zuoyi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_zuoyi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/h_zuoyi@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/l_shangxin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/l_shangxin@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/l_shangxin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/l_shangxin@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/l_xin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/l_xin@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/l_xin@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/l_xin@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_dangao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_dangao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_dangao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_dangao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_feiji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_feiji@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_feiji@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_feiji@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_ganbei@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_ganbei@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_ganbei@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_ganbei@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_huatong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_huatong@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_huatong@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_huatong@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_lazhu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_lazhu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_lazhu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_lazhu@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_liwu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_liwu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_liwu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_liwu@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_lvsidai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_lvsidai@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_lvsidai@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_lvsidai@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_weibo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_weibo@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_weibo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_weibo@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_weiguan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_weiguan@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_weiguan@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_weiguan@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_yinyue@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_yinyue@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_yinyue@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_yinyue@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_zhaoxiangji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_zhaoxiangji@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_zhaoxiangji@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_zhaoxiangji@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_zhong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_zhong@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_zhong@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/o_zhong@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_fuyun@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_fuyun@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_fuyun@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_fuyun@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_shachenbao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_shachenbao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_shachenbao@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_shachenbao@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_taiyang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_taiyang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_taiyang@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_taiyang@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_weifeng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_weifeng@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_weifeng@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_weifeng@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_xianhua@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_xianhua@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_xianhua@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_xianhua@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_xiayu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_xiayu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_xiayu@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_xiayu@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_yueliang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_yueliang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_yueliang@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.default/w_yueliang@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_beicui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_beicui.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_beicui@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_beicui@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_beidian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_beidian.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_beidian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_beidian@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_bengkui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_bengkui.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_bengkui@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_bengkui@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_biefanwo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_biefanwo.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_biefanwo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_biefanwo@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_buhaoyisi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_buhaoyisi.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_buhaoyisi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_buhaoyisi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_buxiangshangban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_buxiangshangban.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_buxiangshangban@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_buxiangshangban@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_deyidexiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_deyidexiao.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_deyidexiao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_deyidexiao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_geijin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_geijin.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_geijin@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_geijin@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haoaio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haoaio.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haoaio@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haoaio@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haobang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haobang.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haobang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haobang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haojiong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haojiong.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haojiong@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haojiong@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haoxihuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haoxihuan.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haoxihuan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_haoxihuan@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_holdzhu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_holdzhu.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_holdzhu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_holdzhu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_jiekexun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_jiekexun.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_jiekexun@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_jiekexun@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_jiujie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_jiujie.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_jiujie@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_jiujie@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_juhan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_juhan.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_juhan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_juhan@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_koubishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_koubishi.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_koubishi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_koubishi@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_kunsile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_kunsile.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_kunsile@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_kunsile@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_leifeng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_leifeng.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_leifeng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_leifeng@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_leiliumanmian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_leiliumanmian.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_leiliumanmian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_leiliumanmian@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_meigui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_meigui.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_meigui@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_meigui@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_oye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_oye.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_oye@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_oye@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_pili.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_pili.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_pili@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_pili@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiaoqiao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiaoqiao.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiaoqiao@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiaoqiao@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiubite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiubite.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiubite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiubite@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiuguanzhu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiuguanzhu.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiuguanzhu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_qiuguanzhu@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_quntiweiguan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_quntiweiguan.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_quntiweiguan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_quntiweiguan@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_shuaishuaishou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_shuaishuaishou.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_shuaishuaishou@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_shuaishuaishou@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_toule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_toule.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_toule@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_toule@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_tuijian.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_tuijian.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_tuijian@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_tuijian@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xianghumobai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xianghumobai.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xianghumobai@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xianghumobai@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiangyixiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiangyixiang.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiangyixiang@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiangyixiang@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiaohaha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiaohaha.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiaohaha@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiaohaha@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiudada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiudada.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiudada@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xiudada@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xuyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xuyuan.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xuyuan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_xuyuan@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_youyali.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_youyali.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_youyali@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_youyali@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zana.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zana@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zana@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zaokuangzheng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zaokuangzheng.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zaokuangzheng@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zaokuangzheng@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zhenjing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zhenjing.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zhenjing@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zhenjing@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zhuanfa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zhuanfa.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zhuanfa@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/com.sina.lxh/lxh_zhuanfa@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_audioCall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_audioCall@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_audioCallSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_audioCallSelected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_camera@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_cameraSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_cameraSelected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_location@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_locationSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_locationSelected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_photo@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_photoSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_photoSelected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_video@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_videoCall@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_videoCall@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_videoCallSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_videoCallSelected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_videoSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/extra/chatBar_colorMore_videoSelected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emoticonbutton_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emoticonbutton_background@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emoticonbutton_background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emoticonbutton_background@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emoticonbutton_background_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emoticonbutton_background_highlighted@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emoticonbutton_background_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emoticonbutton_background_highlighted@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_delete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_delete@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_delete@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_delete@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_delete_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_delete_highlighted@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_delete_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_delete_highlighted@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_left_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_left_normal@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_left_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_left_selected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_mid_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_mid_normal@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_mid_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_mid_selected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_right_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_right_normal@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_right_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_emotion_table_right_selected@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_keyboardbutton_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_keyboardbutton_background@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_keyboardbutton_background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_keyboardbutton_background@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_keyboardbutton_background_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_keyboardbutton_background_highlighted@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_keyboardbutton_background_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_keyboardbutton_background_highlighted@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_toolbar_voice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_toolbar_voice@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_toolbar_voice@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/compose_toolbar_voice@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/emoticon_keyboard_magnifier@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/emoticon_keyboard_magnifier@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/emoticon_keyboard_magnifier@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/emoticon_keyboard_magnifier@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/message_add_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/message_add_background@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/message_add_background@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/message_add_background@3x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/message_add_background_highlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/message_add_background_highlighted@2x.png -------------------------------------------------------------------------------- /YHChat/Resource/ExpressionKeyboard.bundle/toolBar/message_add_background_highlighted@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Resource/ExpressionKeyboard.bundle/toolBar/message_add_background_highlighted@3x.png -------------------------------------------------------------------------------- /YHChat/TestData/YHProtocolConfig.h: -------------------------------------------------------------------------------- 1 | // 2 | // YHProtocolConfig.h 3 | // YHChat 4 | // 5 | // Created by samuelandkevin on 17/3/7. 6 | // Copyright © 2017年 samuelandkevin. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface YHProtocolConfig : NSObject 12 | extern NSString *const kPathUploadRecordFile; 13 | extern NSString *const kPathUploadOfficeFile; 14 | @end 15 | -------------------------------------------------------------------------------- /YHChat/UICustoms/YHNavigationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // CustomerNavigationController.h 3 | // testCustomerNavigationBar 4 | // 5 | // Created by YHIOS003 on 16/4/20. 6 | // Copyright © 2016年 GDYHSoft. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | 12 | @interface YHNavigationController : UINavigationController 13 | @property(nonatomic,strong) UIView * naviBar; 14 | 15 | -(void)CreateNaviBar; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /YHChat/Vendors/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJFoundation.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 14/7/16. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MJFoundation : NSObject 12 | + (BOOL)isClassFromFoundation:(Class)c; 13 | @end 14 | -------------------------------------------------------------------------------- /YHChat/Vendors/VoiceConvert/lib/libopencore-amrnb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Vendors/VoiceConvert/lib/libopencore-amrnb.a -------------------------------------------------------------------------------- /YHChat/Vendors/VoiceConvert/lib/libopencore-amrwb.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samuelandkevin/YHChat/903eca1a90cfda874507a1effd83a8aa7200f722/YHChat/Vendors/VoiceConvert/lib/libopencore-amrwb.a -------------------------------------------------------------------------------- /YHChat/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // samuelandkevin github:https://github.com/samuelandkevin/YHChat 4 | // 5 | // Created by samuelandkevin on 17/2/17. 6 | // Copyright © 2017年 samuelandkevin. 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 | --------------------------------------------------------------------------------