├── .DS_Store ├── .gitignore ├── LHChatUI.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── LHChatUI ├── .DS_Store ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── .DS_Store │ └── LaunchScreen.storyboard ├── Classes │ ├── .DS_Store │ ├── Category │ │ ├── NSCalendar+Establish.h │ │ ├── NSCalendar+Establish.m │ │ ├── NSDate+Judge.h │ │ ├── NSDate+Judge.m │ │ ├── UIActionSheet+Blocks.h │ │ ├── UIActionSheet+Blocks.m │ │ ├── UIColor+RGB.h │ │ ├── UIColor+RGB.m │ │ ├── UIImage+Common.h │ │ ├── UIImage+Common.m │ │ ├── UIResponder+Router.h │ │ ├── UIResponder+Router.m │ │ ├── UIView+Addtions.h │ │ ├── UIView+Addtions.m │ │ ├── UIView+frameAdjust.h │ │ ├── UIView+frameAdjust.m │ │ ├── UIViewController+Set.h │ │ └── UIViewController+Set.m │ ├── Chat │ │ ├── .DS_Store │ │ ├── Controller │ │ │ ├── LHChatVC.h │ │ │ └── LHChatVC.m │ │ ├── Model │ │ │ ├── LHContentModel.h │ │ │ ├── LHContentModel.m │ │ │ ├── LHMessageModel.h │ │ │ └── LHMessageModel.m │ │ └── View │ │ │ ├── BubbleView │ │ │ ├── LHChatAudioBubbleView.h │ │ │ ├── LHChatAudioBubbleView.m │ │ │ ├── LHChatBaseBubbleView.h │ │ │ ├── LHChatBaseBubbleView.m │ │ │ ├── LHChatImageBubbleView.h │ │ │ ├── LHChatImageBubbleView.m │ │ │ ├── LHChatLocationBubbleView.h │ │ │ ├── LHChatLocationBubbleView.m │ │ │ ├── LHChatTextBubbleView.h │ │ │ ├── LHChatTextBubbleView.m │ │ │ ├── LHChatVideoBubbleView.h │ │ │ └── LHChatVideoBubbleView.m │ │ │ ├── LHChatBarMoreView.h │ │ │ ├── LHChatBarMoreView.m │ │ │ ├── LHChatBarView.h │ │ │ ├── LHChatBarView.m │ │ │ ├── LHChatTimeCell.h │ │ │ ├── LHChatTimeCell.m │ │ │ ├── LHChatViewBaseCell.h │ │ │ ├── LHChatViewBaseCell.m │ │ │ ├── LHChatViewCell.h │ │ │ └── LHChatViewCell.m │ ├── Config │ │ ├── LHConfig.h │ │ ├── LHConst.h │ │ └── LHConst.m │ ├── Mian │ │ ├── .DS_Store │ │ ├── Controller │ │ │ ├── LHMainVC.h │ │ │ └── LHMainVC.m │ │ └── View │ │ │ ├── LHBaseTableViewCell.h │ │ │ ├── LHBaseTableViewCell.m │ │ │ ├── LHConversationCell.h │ │ │ └── LHConversationCell.m │ ├── Other │ │ ├── .DS_Store │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Info.plist │ │ ├── LHChatUI.pch │ │ ├── Single.h │ │ └── main.m │ ├── Tools │ │ ├── Controller │ │ │ ├── LHPhotoPreviewController.h │ │ │ └── LHPhotoPreviewController.m │ │ ├── LHTools.h │ │ ├── LHTools.m │ │ ├── Manager │ │ │ ├── LHIMDBManager.h │ │ │ └── LHIMDBManager.m │ │ ├── View │ │ │ ├── LHPhotoPreviewCell.h │ │ │ └── LHPhotoPreviewCell.m │ │ ├── XSBrowserAnimateDelegate.h │ │ ├── XSBrowserAnimateDelegate.m │ │ ├── XSBrowserTransition.h │ │ └── XSBrowserTransition.m │ └── keyboardEmoji │ │ ├── Controller │ │ ├── KeyboardVC.h │ │ └── KeyboardVC.m │ │ ├── Emoticons │ │ └── emoticons.plist │ │ ├── Images │ │ ├── Keyboard_first_emoticon@2x.png │ │ ├── Keyboard_first_emoticon@3x.png │ │ ├── Keyboard_gradient_mask@2x.png │ │ └── Keyboard_gradient_mask@3x.png │ │ ├── KeyboardEmojiAttachment.h │ │ ├── KeyboardEmojiAttachment.m │ │ ├── Model │ │ ├── KeyboardEmojiModel.h │ │ ├── KeyboardEmojiModel.m │ │ ├── KeyboardEmojiPackage.h │ │ └── KeyboardEmojiPackage.m │ │ └── View │ │ ├── KeyboardButton.h │ │ ├── KeyboardButton.m │ │ ├── KeyboardEmojiTextView.h │ │ └── KeyboardEmojiTextView.m ├── CommonLibrary │ ├── .DS_Store │ ├── SDWebImage │ │ ├── MKAnnotationView+WebCache.h │ │ ├── MKAnnotationView+WebCache.m │ │ ├── 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 │ │ ├── UIImage+WebP.h │ │ ├── UIImage+WebP.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 │ ├── TZImagePickerController │ │ ├── NSBundle+TZImagePicker.h │ │ ├── NSBundle+TZImagePicker.m │ │ ├── TZAssetCell.h │ │ ├── TZAssetCell.m │ │ ├── TZAssetModel.h │ │ ├── TZAssetModel.m │ │ ├── TZImageManager.h │ │ ├── TZImageManager.m │ │ ├── TZImagePickerController.bundle │ │ │ ├── MMVideoPreviewPlay@2x.png │ │ │ ├── MMVideoPreviewPlayHL@2x.png │ │ │ ├── Root.plist │ │ │ ├── TZAlbumCell.xib │ │ │ ├── TZAssetCell.xib │ │ │ ├── TableViewArrow@2x.png │ │ │ ├── VideoSendIcon@2x.png │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── navi_back@2x.png │ │ │ ├── photo_def_photoPickerVc@2x.png │ │ │ ├── photo_def_previewVc@2x.png │ │ │ ├── photo_number_icon@2x.png │ │ │ ├── photo_original_def@2x.png │ │ │ ├── photo_original_sel@2x.png │ │ │ ├── photo_sel_photoPickerVc@2x.png │ │ │ ├── photo_sel_previewVc@2x.png │ │ │ ├── preview_number_icon@2x.png │ │ │ ├── preview_original_def@2x.png │ │ │ ├── takePicture@2x.png │ │ │ └── zh-Hans.lproj │ │ │ │ └── Localizable.strings │ │ ├── TZImagePickerController.h │ │ ├── TZImagePickerController.m │ │ ├── TZPhotoPickerController.h │ │ ├── TZPhotoPickerController.m │ │ ├── TZPhotoPreviewCell.h │ │ ├── TZPhotoPreviewCell.m │ │ ├── TZPhotoPreviewController.h │ │ ├── TZPhotoPreviewController.m │ │ ├── TZVideoPlayerController.h │ │ ├── TZVideoPlayerController.m │ │ ├── UIView+Layout.h │ │ └── UIView+Layout.m │ ├── YYKit │ │ ├── FaceDefine.h │ │ ├── NSBundle+YYAdd.h │ │ ├── NSBundle+YYAdd.m │ │ ├── NSString+YYAdd.h │ │ ├── NSString+YYAdd.m │ │ ├── UIView+YYAdd.h │ │ ├── UIView+YYAdd.m │ │ ├── YYImage │ │ │ ├── Animated image support.txt │ │ │ ├── YYAnimatedImageView.h │ │ │ ├── YYAnimatedImageView.m │ │ │ ├── YYFrameImage.h │ │ │ ├── YYFrameImage.m │ │ │ ├── YYImage.h │ │ │ ├── YYImage.m │ │ │ ├── YYImageCoder.h │ │ │ ├── YYImageCoder.m │ │ │ ├── YYSpriteSheetImage.h │ │ │ └── YYSpriteSheetImage.m │ │ └── YYText │ │ │ ├── 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 │ │ │ ├── YYTextArchiver.h │ │ │ ├── YYTextArchiver.m │ │ │ ├── YYTextAttribute.h │ │ │ ├── YYTextAttribute.m │ │ │ ├── YYTextParser.h │ │ │ ├── YYTextParser.m │ │ │ ├── YYTextRubyAnnotation.h │ │ │ ├── YYTextRubyAnnotation.m │ │ │ ├── YYTextRunDelegate.h │ │ │ └── YYTextRunDelegate.m │ │ │ ├── Utility │ │ │ ├── NSAttributedString+YYText.h │ │ │ ├── NSAttributedString+YYText.m │ │ │ ├── NSParagraphStyle+YYText.h │ │ │ ├── NSParagraphStyle+YYText.m │ │ │ ├── UIPasteboard+YYText.h │ │ │ ├── UIPasteboard+YYText.m │ │ │ ├── UIView+YYText.h │ │ │ ├── UIView+YYText.m │ │ │ ├── YYTextAsyncLayer.h │ │ │ ├── YYTextAsyncLayer.m │ │ │ ├── YYTextTransaction.h │ │ │ ├── YYTextTransaction.m │ │ │ ├── YYTextUtilities.h │ │ │ ├── YYTextUtilities.m │ │ │ ├── YYTextWeakProxy.h │ │ │ └── YYTextWeakProxy.m │ │ │ ├── YYLabel.h │ │ │ ├── YYLabel.m │ │ │ ├── YYText.h │ │ │ ├── YYTextView.h │ │ │ └── YYTextView.m │ └── fmdb │ │ ├── FMDB.h │ │ ├── FMDatabase.h │ │ ├── FMDatabase.m │ │ ├── FMDatabaseAdditions.h │ │ ├── FMDatabaseAdditions.m │ │ ├── FMDatabasePool.h │ │ ├── FMDatabasePool.m │ │ ├── FMDatabaseQueue.h │ │ ├── FMDatabaseQueue.m │ │ ├── FMResultSet.h │ │ ├── FMResultSet.m │ │ └── Info.plist └── Images │ ├── .DS_Store │ ├── Chat │ ├── IM_Chart_imageDownloadFail@2x.png │ ├── IM_Chart_imageDownloadFail@3x.png │ ├── IM_Chat_receiver_bg@2x.png │ ├── IM_Chat_receiver_bg@3x.png │ ├── IM_Chat_sender_bg@2x.png │ └── IM_Chat_sender_bg@3x.png │ ├── ChatBar │ ├── .DS_Store │ ├── IM_Chat_expression@2x.png │ ├── IM_Chat_expression@3x.png │ ├── IM_Chat_keyboard@2x.png │ ├── IM_Chat_keyboard@3x.png │ ├── IM_Chat_more@2x.png │ ├── IM_Chat_more@3x.png │ ├── chatBar_colorMore_camera@2x.png │ ├── chatBar_colorMore_camera@3x.png │ ├── chatBar_colorMore_cameraSelected@2x.png │ ├── chatBar_colorMore_cameraSelected@3x.png │ ├── chatBar_colorMore_photo@2x.png │ ├── chatBar_colorMore_photo@3x.png │ ├── chatBar_colorMore_photoSelected@2x.png │ └── chatBar_colorMore_photoSelected@3x.png │ ├── emotion3 │ ├── C_100@2x.png │ ├── C_101@2x.png │ ├── C_102@2x.png │ ├── C_103@2x.png │ ├── C_104@2x.png │ ├── C_105@2x.png │ ├── C_106@2x.png │ ├── C_107@2x.png │ ├── C_108@2x.png │ ├── C_109@2x.png │ ├── C_110@2x.png │ ├── C_111@2x.png │ ├── C_112@2x.png │ ├── C_113@2x.png │ ├── C_77@2x.png │ ├── C_82@2x.png │ ├── C_83@2x.png │ ├── C_84@2x.png │ ├── C_85@2x.png │ ├── C_86@2x.png │ ├── C_87@2x.png │ ├── C_88@2x.png │ ├── C_89@2x.png │ ├── C_90@2x.png │ ├── C_91@2x.png │ ├── C_92@2x.png │ ├── C_93@2x.png │ ├── C_94@2x.png │ ├── C_95@2x.png │ ├── C_96@2x.png │ ├── C_97@2x.png │ ├── C_98@2x.png │ ├── C_99@2x.png │ └── emotion3.plist │ ├── emotionv5 │ ├── B_01@2x.gif │ ├── B_02@2x.gif │ ├── B_03@2x.gif │ ├── B_04@2x.gif │ ├── B_05@2x.gif │ ├── B_06@2x.gif │ ├── B_07@2x.gif │ ├── B_08@2x.gif │ ├── B_09@2x.gif │ ├── B_100@2x.gif │ ├── B_101@2x.gif │ ├── B_102@2x.gif │ ├── B_103@2x.gif │ ├── B_104@2x.gif │ ├── B_105@2x.gif │ ├── B_106@2x.gif │ ├── B_107@2x.gif │ ├── B_108@2x.gif │ ├── B_109@2x.gif │ ├── B_10@2x.gif │ ├── B_110@2x.gif │ ├── B_111@2x.gif │ ├── B_112@2x.gif │ ├── B_113@2x.gif │ ├── B_114@2x.gif │ ├── B_115@2x.gif │ ├── B_116@2x.gif │ ├── B_117@2x.gif │ ├── B_118@2x.gif │ ├── B_11@2x.gif │ ├── B_12@2x.gif │ ├── B_13@2x.gif │ ├── B_14@2x.gif │ ├── B_15@2x.gif │ ├── B_16@2x.gif │ ├── B_17@2x.gif │ ├── B_18@2x.gif │ ├── B_19@2x.gif │ ├── B_20@2x.gif │ ├── B_21@2x.gif │ ├── B_22@2x.gif │ ├── B_23@2x.gif │ ├── B_24@2x.gif │ ├── B_25@2x.gif │ ├── B_26@2x.gif │ ├── B_27@2x.gif │ ├── B_28@2x.gif │ ├── B_29@2x.gif │ ├── B_30@2x.gif │ ├── B_31@2x.gif │ ├── B_32@2x.gif │ ├── B_33@2x.gif │ ├── B_34@2x.gif │ ├── B_35@2x.gif │ ├── B_36@2x.gif │ ├── B_37@2x.gif │ ├── B_38@2x.gif │ ├── B_39@2x.gif │ ├── B_40@2x.gif │ ├── B_41@2x.gif │ ├── B_42@2x.gif │ ├── B_43@2x.gif │ ├── B_44@2x.gif │ ├── B_45@2x.gif │ ├── B_46@2x.gif │ ├── B_47@2x.gif │ ├── B_48@2x.gif │ ├── B_49@2x.gif │ ├── B_50@2x.gif │ ├── B_51@2x.gif │ ├── B_52@2x.gif │ ├── B_53@2x.gif │ ├── B_54@2x.gif │ ├── B_55@2x.gif │ ├── B_56@2x.gif │ ├── B_57@2x.gif │ ├── B_58@2x.gif │ ├── B_59@2x.gif │ ├── B_60@2x.gif │ ├── B_61@2x.gif │ ├── B_62@2x.gif │ ├── B_63@2x.gif │ ├── B_64@2x.gif │ ├── B_65@2x.gif │ ├── B_66@2x.gif │ ├── B_67@2x.gif │ ├── B_68@2x.gif │ ├── B_69@2x.gif │ ├── B_70@2x.gif │ ├── B_71@2x.gif │ ├── B_72@2x.gif │ ├── B_73@2x.gif │ ├── B_74@2x.gif │ ├── B_75@2x.gif │ ├── B_76@2x.gif │ ├── B_77@2x.gif │ ├── B_78@2x.gif │ ├── B_79@2x.gif │ ├── B_80@2x.gif │ ├── B_81@2x.gif │ ├── B_82@2x.gif │ ├── B_83@2x.gif │ ├── B_84@2x.gif │ ├── B_85@2x.gif │ ├── B_86@2x.gif │ ├── B_87@2x.gif │ ├── B_88@2x.gif │ ├── B_89@2x.gif │ ├── B_90@2x.gif │ ├── B_91@2x.gif │ ├── B_92@2x.gif │ ├── B_93@2x.gif │ ├── B_94@2x.gif │ ├── B_95@2x.gif │ ├── B_96@2x.gif │ ├── B_97@2x.gif │ ├── B_98@2x.gif │ ├── B_99@2x.gif │ ├── b_1@2x.gif │ ├── b_2@2x.gif │ ├── b_3@2x.gif │ ├── b_4@2x.gif │ ├── b_5@2x.gif │ ├── b_6@2x.gif │ ├── b_7@2x.gif │ ├── b_8@2x.gif │ ├── b_9@2x.gif │ ├── emotion.plist │ └── emotion1.plist │ ├── icon_success_hite@2x.png │ ├── receive_head.jpg │ └── send_head.jpg ├── LHChatUITests ├── Info.plist └── LHChatUITests.m ├── LHChatUIUITests ├── Info.plist └── LHChatUIUITests.m └── README.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/.gitignore -------------------------------------------------------------------------------- /LHChatUI.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LHChatUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LHChatUI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LHChatUI/Base.lproj/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Base.lproj/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LHChatUI/Classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/NSCalendar+Establish.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/NSCalendar+Establish.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/NSCalendar+Establish.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/NSCalendar+Establish.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/NSDate+Judge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/NSDate+Judge.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/NSDate+Judge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/NSDate+Judge.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIActionSheet+Blocks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIActionSheet+Blocks.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIActionSheet+Blocks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIActionSheet+Blocks.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIColor+RGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIColor+RGB.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIColor+RGB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIColor+RGB.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIImage+Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIImage+Common.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIImage+Common.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIImage+Common.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIResponder+Router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIResponder+Router.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIResponder+Router.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIResponder+Router.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIView+Addtions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIView+Addtions.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIView+Addtions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIView+Addtions.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIView+frameAdjust.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIView+frameAdjust.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIView+frameAdjust.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIView+frameAdjust.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIViewController+Set.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIViewController+Set.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Category/UIViewController+Set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Category/UIViewController+Set.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/Controller/LHChatVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/Controller/LHChatVC.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/Controller/LHChatVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/Controller/LHChatVC.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/Model/LHContentModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/Model/LHContentModel.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/Model/LHContentModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/Model/LHContentModel.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/Model/LHMessageModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/Model/LHMessageModel.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/Model/LHMessageModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/Model/LHMessageModel.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatAudioBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatAudioBubbleView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatAudioBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatAudioBubbleView.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatBaseBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatBaseBubbleView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatBaseBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatBaseBubbleView.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatImageBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatImageBubbleView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatImageBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatImageBubbleView.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatLocationBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatLocationBubbleView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatLocationBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatLocationBubbleView.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatTextBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatTextBubbleView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatTextBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatTextBubbleView.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatVideoBubbleView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatVideoBubbleView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/BubbleView/LHChatVideoBubbleView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/BubbleView/LHChatVideoBubbleView.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatBarMoreView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatBarMoreView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatBarMoreView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatBarMoreView.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatBarView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatBarView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatBarView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatBarView.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatTimeCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatTimeCell.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatTimeCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatTimeCell.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatViewBaseCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatViewBaseCell.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatViewBaseCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatViewBaseCell.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatViewCell.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Chat/View/LHChatViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Chat/View/LHChatViewCell.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Config/LHConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Config/LHConfig.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Config/LHConst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Config/LHConst.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Config/LHConst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Config/LHConst.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Mian/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Mian/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/Classes/Mian/Controller/LHMainVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Mian/Controller/LHMainVC.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Mian/Controller/LHMainVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Mian/Controller/LHMainVC.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Mian/View/LHBaseTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Mian/View/LHBaseTableViewCell.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Mian/View/LHBaseTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Mian/View/LHBaseTableViewCell.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Mian/View/LHConversationCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Mian/View/LHConversationCell.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Mian/View/LHConversationCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Mian/View/LHConversationCell.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Other/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Other/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/Classes/Other/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Other/AppDelegate.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Other/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Other/AppDelegate.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Other/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Other/Info.plist -------------------------------------------------------------------------------- /LHChatUI/Classes/Other/LHChatUI.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Other/LHChatUI.pch -------------------------------------------------------------------------------- /LHChatUI/Classes/Other/Single.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Other/Single.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Other/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Other/main.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/Controller/LHPhotoPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/Controller/LHPhotoPreviewController.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/Controller/LHPhotoPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/Controller/LHPhotoPreviewController.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/LHTools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/LHTools.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/LHTools.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/LHTools.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/Manager/LHIMDBManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/Manager/LHIMDBManager.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/Manager/LHIMDBManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/Manager/LHIMDBManager.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/View/LHPhotoPreviewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/View/LHPhotoPreviewCell.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/View/LHPhotoPreviewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/View/LHPhotoPreviewCell.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/XSBrowserAnimateDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/XSBrowserAnimateDelegate.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/XSBrowserAnimateDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/XSBrowserAnimateDelegate.m -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/XSBrowserTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/XSBrowserTransition.h -------------------------------------------------------------------------------- /LHChatUI/Classes/Tools/XSBrowserTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/Tools/XSBrowserTransition.m -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Controller/KeyboardVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Controller/KeyboardVC.h -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Controller/KeyboardVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Controller/KeyboardVC.m -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Emoticons/emoticons.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Emoticons/emoticons.plist -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Images/Keyboard_first_emoticon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Images/Keyboard_first_emoticon@2x.png -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Images/Keyboard_first_emoticon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Images/Keyboard_first_emoticon@3x.png -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Images/Keyboard_gradient_mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Images/Keyboard_gradient_mask@2x.png -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Images/Keyboard_gradient_mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Images/Keyboard_gradient_mask@3x.png -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/KeyboardEmojiAttachment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/KeyboardEmojiAttachment.h -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/KeyboardEmojiAttachment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/KeyboardEmojiAttachment.m -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Model/KeyboardEmojiModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Model/KeyboardEmojiModel.h -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Model/KeyboardEmojiModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Model/KeyboardEmojiModel.m -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Model/KeyboardEmojiPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Model/KeyboardEmojiPackage.h -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/Model/KeyboardEmojiPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/Model/KeyboardEmojiPackage.m -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/View/KeyboardButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/View/KeyboardButton.h -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/View/KeyboardButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/View/KeyboardButton.m -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/View/KeyboardEmojiTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/View/KeyboardEmojiTextView.h -------------------------------------------------------------------------------- /LHChatUI/Classes/keyboardEmoji/View/KeyboardEmojiTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Classes/keyboardEmoji/View/KeyboardEmojiTextView.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/MKAnnotationView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/MKAnnotationView+WebCache.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/MKAnnotationView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/MKAnnotationView+WebCache.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/NSData+ImageContentType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/NSData+ImageContentType.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/NSData+ImageContentType.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/NSData+ImageContentType.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/NSImage+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/NSImage+WebCache.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/NSImage+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/NSImage+WebCache.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDImageCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDImageCache.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDImageCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDImageCache.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDImageCacheConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDImageCacheConfig.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDImageCacheConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDImageCacheConfig.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageCompat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageCompat.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageCompat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageCompat.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageDecoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageDecoder.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageDecoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageDecoder.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageDownloader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageDownloader.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageDownloader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageDownloader.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageDownloaderOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageDownloaderOperation.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageDownloaderOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageDownloaderOperation.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageManager.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageManager.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImageOperation.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImagePrefetcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImagePrefetcher.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/SDWebImagePrefetcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/SDWebImagePrefetcher.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIButton+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIButton+WebCache.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIButton+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIButton+WebCache.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImage+GIF.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImage+GIF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImage+GIF.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImage+MultiFormat.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImage+MultiFormat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImage+MultiFormat.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImage+WebP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImage+WebP.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImage+WebP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImage+WebP.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImageView+HighlightedWebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImageView+HighlightedWebCache.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImageView+HighlightedWebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImageView+HighlightedWebCache.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImageView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImageView+WebCache.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIImageView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIImageView+WebCache.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIView+WebCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIView+WebCache.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIView+WebCache.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIView+WebCache.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIView+WebCacheOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIView+WebCacheOperation.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/SDWebImage/UIView+WebCacheOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/SDWebImage/UIView+WebCacheOperation.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/NSBundle+TZImagePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/NSBundle+TZImagePicker.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/NSBundle+TZImagePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/NSBundle+TZImagePicker.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZAssetCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZAssetCell.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZAssetCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZAssetCell.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZAssetModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZAssetModel.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZAssetModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZAssetModel.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImageManager.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImageManager.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/MMVideoPreviewPlay@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/MMVideoPreviewPlayHL@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/Root.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/Root.plist -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/TZAlbumCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/TZAlbumCell.xib -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/TZAssetCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/TZAssetCell.xib -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/TableViewArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/TableViewArrow@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/VideoSendIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/VideoSendIcon@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/navi_back@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/navi_back@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_def_photoPickerVc@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_def_previewVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_def_previewVc@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_number_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_number_icon@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_original_def@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_original_def@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_original_sel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_original_sel@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_sel_photoPickerVc@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_sel_previewVc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/photo_sel_previewVc@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/preview_number_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/preview_number_icon@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/preview_original_def@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/preview_original_def@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/takePicture@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/takePicture@2x.png -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.bundle/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZImagePickerController.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPickerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPickerController.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPickerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPickerController.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPreviewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPreviewCell.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPreviewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPreviewCell.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPreviewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPreviewController.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPreviewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZPhotoPreviewController.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZVideoPlayerController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZVideoPlayerController.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/TZVideoPlayerController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/TZVideoPlayerController.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/UIView+Layout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/UIView+Layout.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/TZImagePickerController/UIView+Layout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/TZImagePickerController/UIView+Layout.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/FaceDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/FaceDefine.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/NSBundle+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/NSBundle+YYAdd.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/NSBundle+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/NSBundle+YYAdd.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/NSString+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/NSString+YYAdd.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/NSString+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/NSString+YYAdd.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/UIView+YYAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/UIView+YYAdd.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/UIView+YYAdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/UIView+YYAdd.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/Animated image support.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/Animated image support.txt -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYAnimatedImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYAnimatedImageView.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYAnimatedImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYAnimatedImageView.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYFrameImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYFrameImage.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYFrameImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYFrameImage.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYImage.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYImage.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYImageCoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYImageCoder.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYImageCoder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYImageCoder.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYSpriteSheetImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYSpriteSheetImage.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYImage/YYSpriteSheetImage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYImage/YYSpriteSheetImage.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextContainerView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextContainerView.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextContainerView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextContainerView.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextDebugOption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextDebugOption.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextDebugOption.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextDebugOption.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextEffectWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextEffectWindow.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextEffectWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextEffectWindow.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextInput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextInput.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextInput.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextInput.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextKeyboardManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextKeyboardManager.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextKeyboardManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextKeyboardManager.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextLayout.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextLayout.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextLine.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextLine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextLine.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextMagnifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextMagnifier.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextMagnifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextMagnifier.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextSelectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextSelectionView.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextSelectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Component/YYTextSelectionView.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextArchiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextArchiver.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextArchiver.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextArchiver.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextAttribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextAttribute.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextAttribute.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextAttribute.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextParser.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextParser.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextRubyAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextRubyAnnotation.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextRubyAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextRubyAnnotation.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextRunDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextRunDelegate.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextRunDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/String/YYTextRunDelegate.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/NSAttributedString+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/NSAttributedString+YYText.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/NSAttributedString+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/NSAttributedString+YYText.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/NSParagraphStyle+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/NSParagraphStyle+YYText.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/NSParagraphStyle+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/NSParagraphStyle+YYText.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/UIPasteboard+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/UIPasteboard+YYText.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/UIPasteboard+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/UIPasteboard+YYText.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/UIView+YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/UIView+YYText.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/UIView+YYText.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/UIView+YYText.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextAsyncLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextAsyncLayer.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextAsyncLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextAsyncLayer.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextTransaction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextTransaction.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextTransaction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextTransaction.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextUtilities.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextUtilities.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextWeakProxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextWeakProxy.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextWeakProxy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/Utility/YYTextWeakProxy.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/YYLabel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/YYLabel.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/YYLabel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/YYLabel.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/YYText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/YYText.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/YYTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/YYTextView.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/YYKit/YYText/YYTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/YYKit/YYText/YYTextView.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDB.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDatabase.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDatabase.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDatabasePool.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDatabasePool.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDatabaseQueue.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMDatabaseQueue.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMResultSet.h -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/FMResultSet.m -------------------------------------------------------------------------------- /LHChatUI/CommonLibrary/fmdb/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/CommonLibrary/fmdb/Info.plist -------------------------------------------------------------------------------- /LHChatUI/Images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/Images/Chat/IM_Chart_imageDownloadFail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/Chat/IM_Chart_imageDownloadFail@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/Chat/IM_Chart_imageDownloadFail@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/Chat/IM_Chart_imageDownloadFail@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/Chat/IM_Chat_receiver_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/Chat/IM_Chat_receiver_bg@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/Chat/IM_Chat_receiver_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/Chat/IM_Chat_receiver_bg@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/Chat/IM_Chat_sender_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/Chat/IM_Chat_sender_bg@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/Chat/IM_Chat_sender_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/Chat/IM_Chat_sender_bg@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/.DS_Store -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/IM_Chat_expression@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/IM_Chat_expression@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/IM_Chat_expression@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/IM_Chat_expression@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/IM_Chat_keyboard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/IM_Chat_keyboard@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/IM_Chat_keyboard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/IM_Chat_keyboard@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/IM_Chat_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/IM_Chat_more@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/IM_Chat_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/IM_Chat_more@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/chatBar_colorMore_camera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/chatBar_colorMore_camera@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/chatBar_colorMore_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/chatBar_colorMore_camera@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/chatBar_colorMore_cameraSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/chatBar_colorMore_cameraSelected@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/chatBar_colorMore_cameraSelected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/chatBar_colorMore_cameraSelected@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/chatBar_colorMore_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/chatBar_colorMore_photo@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/chatBar_colorMore_photo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/chatBar_colorMore_photo@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/chatBar_colorMore_photoSelected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/chatBar_colorMore_photoSelected@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/ChatBar/chatBar_colorMore_photoSelected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/ChatBar/chatBar_colorMore_photoSelected@3x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_100@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_101@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_101@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_102@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_102@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_103@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_103@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_104@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_104@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_105@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_105@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_106@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_106@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_107@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_107@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_108@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_108@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_109@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_109@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_110@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_110@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_111@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_111@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_112@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_112@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_113@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_113@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_77@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_77@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_82@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_82@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_83@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_83@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_84@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_84@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_85@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_85@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_86@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_87@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_87@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_88@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_88@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_89@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_89@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_90@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_90@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_91@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_91@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_92@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_92@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_93@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_93@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_94@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_94@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_95@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_95@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_96@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_96@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_97@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_97@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_98@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/C_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/C_99@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/emotion3/emotion3.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotion3/emotion3.plist -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_01@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_01@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_02@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_02@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_03@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_03@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_04@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_04@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_05@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_05@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_06@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_06@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_07@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_07@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_08@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_08@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_09@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_09@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_100@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_100@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_101@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_101@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_102@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_102@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_103@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_103@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_104@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_104@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_105@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_105@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_106@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_106@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_107@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_107@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_108@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_108@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_109@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_109@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_10@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_10@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_110@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_110@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_111@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_111@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_112@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_112@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_113@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_113@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_114@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_114@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_115@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_115@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_116@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_116@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_117@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_117@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_118@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_118@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_11@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_11@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_12@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_12@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_13@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_13@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_14@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_14@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_15@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_15@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_16@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_16@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_17@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_17@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_18@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_18@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_19@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_19@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_20@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_20@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_21@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_21@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_22@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_22@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_23@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_23@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_24@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_24@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_25@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_25@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_26@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_26@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_27@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_27@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_28@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_28@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_29@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_29@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_30@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_30@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_31@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_31@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_32@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_32@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_33@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_33@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_34@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_34@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_35@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_35@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_36@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_36@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_37@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_37@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_38@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_38@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_39@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_39@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_40@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_40@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_41@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_41@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_42@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_42@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_43@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_43@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_44@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_44@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_45@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_45@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_46@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_46@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_47@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_47@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_48@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_48@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_49@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_49@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_50@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_50@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_51@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_51@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_52@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_52@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_53@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_53@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_54@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_54@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_55@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_55@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_56@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_56@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_57@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_57@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_58@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_58@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_59@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_59@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_60@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_60@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_61@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_61@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_62@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_62@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_63@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_63@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_64@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_64@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_65@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_65@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_66@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_66@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_67@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_67@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_68@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_68@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_69@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_69@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_70@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_70@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_71@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_71@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_72@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_72@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_73@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_73@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_74@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_74@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_75@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_75@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_76@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_76@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_77@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_77@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_78@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_78@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_79@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_79@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_80@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_80@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_81@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_81@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_82@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_82@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_83@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_83@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_84@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_84@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_85@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_85@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_86@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_86@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_87@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_87@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_88@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_88@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_89@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_89@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_90@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_90@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_91@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_91@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_92@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_92@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_93@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_93@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_94@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_94@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_95@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_95@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_96@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_96@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_97@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_97@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_98@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_98@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/B_99@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/B_99@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_1@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_1@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_2@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_2@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_3@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_3@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_4@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_4@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_5@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_5@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_6@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_6@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_7@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_7@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_8@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_8@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/b_9@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/b_9@2x.gif -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/emotion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/emotion.plist -------------------------------------------------------------------------------- /LHChatUI/Images/emotionv5/emotion1.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/emotionv5/emotion1.plist -------------------------------------------------------------------------------- /LHChatUI/Images/icon_success_hite@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/icon_success_hite@2x.png -------------------------------------------------------------------------------- /LHChatUI/Images/receive_head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/receive_head.jpg -------------------------------------------------------------------------------- /LHChatUI/Images/send_head.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUI/Images/send_head.jpg -------------------------------------------------------------------------------- /LHChatUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUITests/Info.plist -------------------------------------------------------------------------------- /LHChatUITests/LHChatUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUITests/LHChatUITests.m -------------------------------------------------------------------------------- /LHChatUIUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUIUITests/Info.plist -------------------------------------------------------------------------------- /LHChatUIUITests/LHChatUIUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/No88/LHChat/HEAD/LHChatUIUITests/LHChatUIUITests.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LHChat 2 | IM模块UI 3 | --------------------------------------------------------------------------------