├── .DS_Store ├── .gitignore ├── LCWeChat.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── LICENSE ├── README.md ├── Resource ├── LCWeChat.gif ├── chatCell.png └── mainController.png ├── weChat ├── .DS_Store ├── Discover(发现) │ ├── LCDiscoverViewController.h │ ├── LCDiscoverViewController.m │ ├── LCDiscoverViewController.storyboard │ ├── LCNews.h │ ├── LCNews.m │ ├── LCNewsCell.h │ ├── LCNewsCell.m │ ├── LCNewsCell.xib │ ├── LCNewsViewController.h │ ├── LCNewsViewController.m │ ├── LCNewsViewController.xib │ ├── LCPhotosView.h │ └── LCPhotosView.m ├── Group(讨论组) │ ├── LCGroupList.h │ ├── LCGroupList.m │ ├── LCGroupListCell.h │ ├── LCGroupListCell.m │ ├── LCGroupListViewController.h │ └── LCGroupListViewController.m ├── Lib │ ├── AFNetworking │ │ ├── AFHTTPSessionManager.h │ │ ├── AFHTTPSessionManager.m │ │ ├── AFNetworkReachabilityManager.h │ │ ├── AFNetworkReachabilityManager.m │ │ ├── AFNetworking.h │ │ ├── AFSecurityPolicy.h │ │ ├── AFSecurityPolicy.m │ │ ├── AFURLRequestSerialization.h │ │ ├── AFURLRequestSerialization.m │ │ ├── AFURLResponseSerialization.h │ │ ├── AFURLResponseSerialization.m │ │ ├── AFURLSessionManager.h │ │ └── AFURLSessionManager.m │ ├── DACircularProgress │ │ ├── DACircularProgressView.h │ │ ├── DACircularProgressView.m │ │ ├── DALabeledCircularProgressView.h │ │ └── DALabeledCircularProgressView.m │ ├── GCD │ │ ├── Documentation.html │ │ ├── GCDAsyncSocket.h │ │ ├── GCDAsyncSocket.m │ │ ├── GCDAsyncUdpSocket.h │ │ └── GCDAsyncUdpSocket.m │ ├── MBProgressHUD │ │ ├── MBProgressHUD+MJ.h │ │ ├── MBProgressHUD+MJ.m │ │ ├── MBProgressHUD.h │ │ └── MBProgressHUD.m │ ├── MJExtension │ │ ├── MJExtension.h │ │ ├── MJExtensionConst.h │ │ ├── MJExtensionConst.m │ │ ├── MJFoundation.h │ │ ├── MJFoundation.m │ │ ├── MJProperty.h │ │ ├── MJProperty.m │ │ ├── MJPropertyKey.h │ │ ├── MJPropertyKey.m │ │ ├── MJPropertyType.h │ │ ├── MJPropertyType.m │ │ ├── NSObject+MJClass.h │ │ ├── NSObject+MJClass.m │ │ ├── NSObject+MJCoding.h │ │ ├── NSObject+MJCoding.m │ │ ├── NSObject+MJKeyValue.h │ │ ├── NSObject+MJKeyValue.m │ │ ├── NSObject+MJProperty.h │ │ ├── NSObject+MJProperty.m │ │ ├── NSString+MJExtension.h │ │ └── NSString+MJExtension.m │ ├── Masonry │ │ ├── Info.plist │ │ ├── MASCompositeConstraint.h │ │ ├── MASCompositeConstraint.m │ │ ├── MASConstraint+Private.h │ │ ├── MASConstraint.h │ │ ├── MASConstraint.m │ │ ├── MASConstraintMaker.h │ │ ├── MASConstraintMaker.m │ │ ├── MASLayoutConstraint.h │ │ ├── MASLayoutConstraint.m │ │ ├── MASUtilities.h │ │ ├── MASViewAttribute.h │ │ ├── MASViewAttribute.m │ │ ├── MASViewConstraint.h │ │ ├── MASViewConstraint.m │ │ ├── Masonry.h │ │ ├── NSArray+MASAdditions.h │ │ ├── NSArray+MASAdditions.m │ │ ├── NSArray+MASShorthandAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.h │ │ ├── NSLayoutConstraint+MASDebugAdditions.m │ │ ├── View+MASAdditions.h │ │ ├── View+MASAdditions.m │ │ ├── View+MASShorthandAdditions.h │ │ ├── ViewController+MASAdditions.h │ │ └── ViewController+MASAdditions.m │ ├── SDWebImage │ │ ├── MKAnnotationView+WebCache.h │ │ ├── MKAnnotationView+WebCache.m │ │ ├── NSData+ImageContentType.h │ │ ├── NSData+ImageContentType.m │ │ ├── SDImageCache.h │ │ ├── SDImageCache.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+WebCacheOperation.h │ │ └── UIView+WebCacheOperation.m │ ├── TTTAttributedLabel │ │ ├── TTTAttributedLabel.h │ │ └── TTTAttributedLabel.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 │ ├── lame.h │ └── libmp3lame.a ├── Other │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── 0058.png │ │ │ ├── 0080.png │ │ │ ├── 0087.png │ │ │ ├── 0120-1.png │ │ │ ├── 0120.png │ │ │ ├── 0180.png │ │ │ └── Contents.json │ │ ├── ChatBar │ │ │ ├── Contents.json │ │ │ ├── chat_bar_emoji_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_emoji_highlight@2x.png │ │ │ ├── chat_bar_emoji_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_emoji_normal@2x.png │ │ │ ├── chat_bar_face_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_face_highlight@3x.png │ │ │ ├── chat_bar_face_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_face_normal@3x.png │ │ │ ├── chat_bar_icons_camera.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_camera@3x.png │ │ │ ├── chat_bar_icons_location.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_location@3x.png │ │ │ ├── chat_bar_icons_pic.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_pic@3x.png │ │ │ ├── chat_bar_input_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_ipunt_message.png │ │ │ ├── chat_bar_more_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_more_highlight@3x.png │ │ │ ├── chat_bar_more_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_more_normal@3x.png │ │ │ ├── chat_bar_picture_normal.imageset │ │ │ │ ├── Chat_take_picture.png │ │ │ │ └── Contents.json │ │ │ ├── chat_bar_recent_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_recent_highlight@2x.png │ │ │ ├── chat_bar_recent_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_recent_normal@2x.png │ │ │ ├── chat_bar_record_circle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bar_record@2x.png │ │ │ ├── chat_bar_voice_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_voice_record.png │ │ │ ├── location_green_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── location_green_icon@2x.png │ │ │ ├── preview_background.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bg(1).png │ │ │ ├── show_user_location_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── show_user_location_normal@2x.png │ │ │ ├── show_user_location_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── show_user_location_pressed@2x.png │ │ │ └── show_user_location_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── show_user_location_selected@2x.png │ │ ├── ChatView │ │ │ ├── Contents.json │ │ │ ├── location.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── location@2x.png │ │ │ ├── message_receiver_background_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_receiver_background_highlight@2x.png │ │ │ │ └── message_receiver_background_highlight@3x.png │ │ │ ├── message_receiver_background_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_receiver_background_normal@2x.png │ │ │ │ └── message_receiver_background_normal@3x.png │ │ │ ├── message_sender_background_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_sender_background_highlight@2x.png │ │ │ │ └── message_sender_background_highlight@3x.png │ │ │ ├── message_sender_background_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_sender_background_normal@2x.png │ │ │ │ └── message_sender_background_normal@3x.png │ │ │ ├── message_voice_receiver_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_voice_receiver_normal@2x.png │ │ │ │ └── message_voice_receiver_normal@3x.png │ │ │ ├── message_voice_receiver_playing_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_voice_receiver_playing_1@2x.png │ │ │ │ └── message_voice_receiver_playing_1@3x.png │ │ │ ├── message_voice_receiver_playing_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_voice_receiver_playing_2@2x.png │ │ │ │ └── message_voice_receiver_playing_2@3x.png │ │ │ ├── message_voice_receiver_playing_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_voice_receiver_playing_3@2x.png │ │ │ │ └── message_voice_receiver_playing_3@3x.png │ │ │ ├── message_voice_sender_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_voice_sender_normal.imageset.png │ │ │ │ └── message_voice_sender_normal@3x.png │ │ │ ├── message_voice_sender_playing_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_voice_sender_playing_1@2x.png │ │ │ │ └── message_voice_sender_playing_1@3x.png │ │ │ ├── message_voice_sender_playing_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_voice_sender_playing_2@2x.png │ │ │ │ └── message_voice_sender_playing_2@3x.png │ │ │ ├── message_voice_sender_playing_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── message_voice_sender_playing_3@2x.png │ │ │ │ └── message_voice_sender_playing_3@3x.png │ │ │ └── sun.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── sun.jpg │ │ ├── Contents.json │ │ ├── New Folder │ │ │ ├── AlbumOperateMoreHL.imageset │ │ │ │ ├── AlbumOperateMoreHL@2x.png │ │ │ │ ├── AlbumOperateMoreHL@3x.png │ │ │ │ └── Contents.json │ │ │ ├── AlbumReflashIcon.imageset │ │ │ │ ├── AlbumReflashIcon@2x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── CreditCard_ShoppingBag.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── CreditCard_ShoppingBag@2x.png │ │ │ ├── Menu.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Menu@2x.png │ │ │ ├── MoreGame.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MoreGame.png │ │ │ │ ├── MoreGame@2x.png │ │ │ │ └── MoreGame@3x.png │ │ │ ├── QQ钱包.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── nav_coin_icon_click@2x.png │ │ │ ├── aio_icons_favorite.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_favorite@3x.png │ │ │ ├── aio_icons_folder.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_folder@3x.png │ │ │ ├── aio_icons_freeaudio.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_freeaudio@3x.png │ │ │ ├── aio_icons_location.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_location@3x.png │ │ │ ├── aio_icons_music.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_music@3x.png │ │ │ ├── aio_icons_pacamera.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_pacamera@3x.png │ │ │ ├── aio_icons_red_pack.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_red_pack@3x.png │ │ │ ├── aio_icons_shake.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_shake@3x.png │ │ │ ├── aio_icons_share_nameplate.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_share_nameplate@3x.png │ │ │ ├── aio_icons_shotmovie.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_shotmovie@3x.png │ │ │ ├── aio_icons_transfer.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_transfer@3x.png │ │ │ ├── aio_icons_video.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_icons_video@3x.png │ │ │ ├── aio_voiceChange_effect.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_voiceChange_effect_0@3x.png │ │ │ ├── aio_voiceChange_effect_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── anon_group_loading@2x.png │ │ │ ├── aio_voiceChange_effect_1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_voiceChange_effect_1@3x.png │ │ │ ├── aio_voiceChange_effect_2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_voiceChange_effect_2@3x.png │ │ │ ├── aio_voiceChange_effect_3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_voiceChange_effect_3@3x.png │ │ │ ├── aio_voiceChange_effect_4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_voiceChange_effect_4@3x.png │ │ │ ├── aio_voiceChange_effect_5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aio_voiceChange_effect_5@3x.png │ │ │ ├── aio_voiceChange_effect_6.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── anon_group_loading_fail@2x.png │ │ │ ├── back.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── back@3x.png │ │ │ ├── bottleRecord.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── bottleRecord@2x.png │ │ │ ├── chat_bottom_emotion_press.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bottom_emotion_press@3x.png │ │ │ ├── chat_bottom_more_press.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bottom_more_press@3x.png │ │ │ ├── chat_bottom_photo_press.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bottom_photo_press@3x.png │ │ │ ├── chat_bottom_smile_nor.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bottom_smile_nor@2x.png │ │ │ ├── chat_bottom_up_nor.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bottom_up_nor@2x.png │ │ │ ├── chat_bottom_up_press.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── chat_bottom_up_press@2x.png │ │ │ ├── ff_IconBottle.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconBottle.png │ │ │ │ ├── ff_IconBottle@2x.png │ │ │ │ └── ff_IconBottle@3x.png │ │ │ ├── ff_IconLocationService.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconLocationService.png │ │ │ │ ├── ff_IconLocationService@2x.png │ │ │ │ └── ff_IconLocationService@3x.png │ │ │ ├── ff_IconQRCode.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconQRCode.png │ │ │ │ ├── ff_IconQRCode@2x.png │ │ │ │ └── ff_IconQRCode@3x.png │ │ │ ├── ff_IconShake.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconShake.png │ │ │ │ ├── ff_IconShake@2x.png │ │ │ │ └── ff_IconShake@3x.png │ │ │ ├── ff_IconShowAlbum-1.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconShowAlbum.png │ │ │ │ ├── ff_IconShowAlbum@2x.png │ │ │ │ └── ff_IconShowAlbum@3x.png │ │ │ ├── ff_IconShowAlbum-2.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconShowAlbum.png │ │ │ │ ├── ff_IconShowAlbum@2x.png │ │ │ │ └── ff_IconShowAlbum@3x.png │ │ │ ├── ff_IconShowAlbum.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── ff_IconShowAlbum.png │ │ │ │ ├── ff_IconShowAlbum@2x.png │ │ │ │ └── ff_IconShowAlbum@3x.png │ │ │ ├── header.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── header_cry_icon.png │ │ │ ├── icon_message_cell_error.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_message_cell_error@2x.png │ │ │ │ └── icon_message_cell_error@3x.png │ │ │ ├── person_topbackImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── person_topbackImage@2x.png │ │ │ ├── pin_green.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── pin_green@2x.png │ │ │ ├── qvip_ps_banner_icon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── qvip_ps_banner_icon@2x.png │ │ │ ├── set1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tabBar_me_click_icon@2x.png │ │ │ ├── sfdsaf.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── hot-news.png │ │ │ ├── 个性装扮.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mine-setting-icon-click@2x.png │ │ │ ├── 开通会员.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── friendsRecommentIcon-click@2x.png │ │ │ ├── 我的名片夹.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mine-moon-icon@2x.png │ │ │ ├── 我的收藏.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mainCellDingClick@2x.png │ │ │ ├── 我的文件.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mine-sun-icon-click@2x.png │ │ │ ├── 我的相册.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── MainTagSubIconClick@2x.png │ │ │ └── 未读消息-红底.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── 未读消息-红底@2x.png │ │ │ │ └── 未读消息-红底@3x.png │ │ ├── TabBarIcon │ │ │ ├── Contents.json │ │ │ ├── account_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── account_highlight@2x.png │ │ │ ├── account_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── account_normal@2x.png │ │ │ ├── home_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── home_highlight@2x.png │ │ │ ├── home_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── home_normal@2x.png │ │ │ ├── message_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── message_highlight@2x.png │ │ │ ├── message_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── message_normal@2x.png │ │ │ ├── mycity_highlight.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mycity_highlight@2x.png │ │ │ ├── mycity_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mycity_normal@2x.png │ │ │ ├── navigationButtonReturn.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── navigationButtonReturn.png │ │ │ │ ├── navigationButtonReturn@2x.png │ │ │ │ └── navigationButtonReturn@3x.png │ │ │ ├── navigationButtonReturnClick.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── navigationButtonReturnClick.png │ │ │ │ ├── navigationButtonReturnClick@2x.png │ │ │ │ └── navigationButtonReturnClick@3x.png │ │ │ ├── navigationbarBackgroundWhite.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── navigationbarBackgroundWhite.png │ │ │ ├── post_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── post_normal@2x.png │ │ │ ├── shareBottomBackground.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shareBottomBackground.png │ │ │ │ ├── shareBottomBackground@2x.png │ │ │ │ └── shareBottomBackground@3x.png │ │ │ ├── shareButtonCancel.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── shareButtonCancel.png │ │ │ │ ├── shareButtonCancel@2x.png │ │ │ │ └── shareButtonCancel@3x.png │ │ │ ├── tabbar_background.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tabbar_background@2x.png │ │ │ └── tapbar_top_line.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── tapbar_top_line@2x.png │ │ └── sesionVC │ │ │ ├── Contents.json │ │ │ ├── DeleteEmoticonBtn_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── DeleteEmoticonBtn_ios7@2x.png │ │ │ ├── EmoticonBigTipsRight.imageset │ │ │ ├── Contents.json │ │ │ └── EmoticonBigTipsRight@2x.png │ │ │ ├── ReceiverVoiceNodePlaying000_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── ReceiverVoiceNodePlaying000_ios7@2x.png │ │ │ ├── ReceiverVoiceNodePlaying001_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── ReceiverVoiceNodePlaying001_ios7@2x.png │ │ │ ├── ReceiverVoiceNodePlaying002_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── ReceiverVoiceNodePlaying002_ios7@2x.png │ │ │ ├── ReceiverVoiceNodePlaying003_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── ReceiverVoiceNodePlaying003_ios7@2x.png │ │ │ ├── ReceiverVoiceNodePlaying_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── ReceiverVoiceNodePlaying_ios7@2x.png │ │ │ ├── SenderVoiceNodePlaying000_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── SenderVoiceNodePlaying000_ios7@2x.png │ │ │ ├── SenderVoiceNodePlaying001_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── SenderVoiceNodePlaying001_ios7@2x.png │ │ │ ├── SenderVoiceNodePlaying002_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── SenderVoiceNodePlaying002_ios7@2x.png │ │ │ ├── SenderVoiceNodePlaying003_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── SenderVoiceNodePlaying003_ios7@2x.png │ │ │ ├── SenderVoiceNodePlaying_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── SenderVoiceNodePlaying_ios7@2x.png │ │ │ ├── ToolViewEmotion_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── ToolViewEmotion_ios7@2x.png │ │ │ ├── ToolViewInputVoice_ios7.imageset │ │ │ ├── Contents.json │ │ │ ├── 录音图标-默认@2x.png │ │ │ └── 录音图标-默认@3x.png │ │ │ ├── ToolViewKeyboard_ios7.imageset │ │ │ ├── Contents.json │ │ │ ├── 键盘@2x.png │ │ │ └── 键盘@3x.png │ │ │ ├── TypeSelectorBtn_Black_ios7.imageset │ │ │ ├── Contents.json │ │ │ ├── TypeSelectorBtn_Black_ios7@2x.png │ │ │ ├── 功能-默认@2x.png │ │ │ └── 功能-默认@3x.png │ │ │ ├── avator.imageset │ │ │ ├── Contents.json │ │ │ └── avator@2x.png │ │ │ ├── chatBubble_Receiving_Cavern.imageset │ │ │ ├── Contents.json │ │ │ └── chatBubble_Receiving_Cavern@2x.png │ │ │ ├── chatBubble_Receiving_Solid.imageset │ │ │ ├── Contents.json │ │ │ └── chatBubble_Receiving_Solid@2x.png │ │ │ ├── chatBubble_Sending_Cavern-1.imageset │ │ │ ├── Contents.json │ │ │ └── chatBubble_Sending_Cavern@2x.png │ │ │ ├── chatBubble_Sending_Cavern.imageset │ │ │ ├── Contents.json │ │ │ └── chatBubble_Sending_Cavern@2x.png │ │ │ ├── chatBubble_Sending_Solid.imageset │ │ │ ├── Contents.json │ │ │ └── chatBubble_Sending_Solid@2x.png │ │ │ ├── chat_bottom_keyboard_nor.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_keyboard_nor.png │ │ │ ├── chat_bottom_keyboard_press.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_keyboard_press.png │ │ │ ├── chat_bottom_smile_nor.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_smile_nor.png │ │ │ ├── chat_bottom_smile_press.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_smile_press.png │ │ │ ├── chat_bottom_textfield.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_textfield.png │ │ │ ├── chat_bottom_up_nor.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_up_nor.png │ │ │ ├── chat_bottom_up_press.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_up_press.png │ │ │ ├── chat_bottom_voice_nor.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_voice_nor.png │ │ │ ├── chat_bottom_voice_press.imageset │ │ │ ├── Contents.json │ │ │ └── chat_bottom_voice_press.png │ │ │ ├── chatfrom_bg_focused.imageset │ │ │ ├── Contents.json │ │ │ └── chatfrom_bg_focused.png │ │ │ ├── chatfrom_bg_normal.imageset │ │ │ ├── Contents.json │ │ │ └── 气泡-1.png │ │ │ ├── chatto_bg_focused.imageset │ │ │ ├── Contents.json │ │ │ └── chatto_bg_focused.png │ │ │ ├── chatto_bg_normal.imageset │ │ │ ├── Contents.json │ │ │ └── 气泡-2(1).png │ │ │ ├── customerHead.imageset │ │ │ ├── Contents.json │ │ │ ├── 客服头像@2x.png │ │ │ └── 客服头像@3x.png │ │ │ ├── holdDownButton.imageset │ │ │ ├── Contents.json │ │ │ └── holdDownButton@2x.png │ │ │ ├── input-bar-background.imageset │ │ │ ├── Contents.json │ │ │ ├── input-bar-background.png │ │ │ └── input-bar-background@2x.png │ │ │ ├── input-bar-flat.imageset │ │ │ ├── Contents.json │ │ │ ├── input-bar-flat.png │ │ │ └── input-bar-flat@2x.png │ │ │ ├── map_located.imageset │ │ │ ├── Contents.json │ │ │ └── map_located@2x.png │ │ │ ├── overSession.imageset │ │ │ ├── Contents.json │ │ │ ├── 结束对话@2x.png │ │ │ └── 结束对话@3x.png │ │ │ ├── prevent.imageset │ │ │ ├── Contents.json │ │ │ ├── 阻止-默认@2x.png │ │ │ └── 阻止-默认@3x.png │ │ │ ├── preventH.imageset │ │ │ ├── Contents.json │ │ │ ├── 阻止-点击@2x.png │ │ │ └── 阻止-点击@3x.png │ │ │ ├── recordValue │ │ │ ├── Contents.json │ │ │ ├── value0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── 说话图标-0.png │ │ │ ├── value1.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── 说话图标-1.png │ │ │ ├── value2.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── 说话图标-2.png │ │ │ ├── value3.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── 说话图标-3.png │ │ │ ├── value4.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── 说话图标-4.png │ │ │ ├── value5.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── 说话图标-5.png │ │ │ └── voicecancle.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── 取消发送@3x.png │ │ │ ├── sendImage.imageset │ │ │ ├── Contents.json │ │ │ ├── 图片-默认@2x.png │ │ │ └── 图片-默认@3x.png │ │ │ ├── sendjudge.imageset │ │ │ ├── Contents.json │ │ │ ├── 推送评价@2x.png │ │ │ └── 推送评价@3x.png │ │ │ ├── sharemore_location_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── sharemore_location_ios7@2x.png │ │ │ ├── sharemore_pic_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── sharemore_pic_ios7@2x.png │ │ │ ├── sharemore_video_ios7.imageset │ │ │ ├── Contents.json │ │ │ └── sharemore_video_ios7@2x.png │ │ │ ├── sharemore_videovoip.imageset │ │ │ ├── Contents.json │ │ │ └── sharemore_videovoip@2x.png │ │ │ ├── toolbar_bottom_bar.imageset │ │ │ ├── Contents.json │ │ │ └── toolbar_bottom_bar.png │ │ │ ├── transfer.imageset │ │ │ ├── Contents.json │ │ │ ├── 转接-默认@2x.png │ │ │ └── 转接-默认@3x.png │ │ │ ├── vistorHead.imageset │ │ │ ├── Contents.json │ │ │ ├── 访客头像@2x.png │ │ │ └── 访客头像@3x.png │ │ │ └── 常用语 │ │ │ ├── Contents.json │ │ │ ├── clearButtonImg.imageset │ │ │ ├── Contents.json │ │ │ ├── clearButtonImg-1.png │ │ │ └── clearButtonImg.png │ │ │ ├── clearButtonImg_h.imageset │ │ │ ├── Contents.json │ │ │ ├── clearButtonImg_h-1.png │ │ │ └── clearButtonImg_h.png │ │ │ ├── commonWords.imageset │ │ │ ├── Contents.json │ │ │ ├── 常用语-展开@2x.png │ │ │ └── 常用语-展开@3x.png │ │ │ ├── searchLogo.imageset │ │ │ ├── Contents.json │ │ │ ├── searchLogo-1.png │ │ │ └── searchLogo.png │ │ │ ├── subTitleH.imageset │ │ │ ├── Contents.json │ │ │ ├── 子主题-展开@2x.png │ │ │ └── 子主题-展开@3x.png │ │ │ ├── subTitleN.imageset │ │ │ ├── Contents.json │ │ │ ├── 子主题-收缩@2x.png │ │ │ └── 子主题-收缩@3x.png │ │ │ ├── textH.imageset │ │ │ ├── Contents.json │ │ │ ├── 文本-点击@2x.png │ │ │ └── 文本-点击@3x.png │ │ │ ├── textN.imageset │ │ │ ├── Contents.json │ │ │ ├── 文本-默认@2x.png │ │ │ └── 文本-默认@3x.png │ │ │ └── 表情 │ │ │ ├── 1f01.imageset │ │ │ ├── 1f01.png │ │ │ └── Contents.json │ │ │ ├── 1f02.imageset │ │ │ ├── 1f02.png │ │ │ └── Contents.json │ │ │ ├── 1f03.imageset │ │ │ ├── 1f03.png │ │ │ └── Contents.json │ │ │ ├── 1f04.imageset │ │ │ ├── 1f04.png │ │ │ └── Contents.json │ │ │ ├── 1f05.imageset │ │ │ ├── 1f05.png │ │ │ └── Contents.json │ │ │ ├── 1f06.imageset │ │ │ ├── 1f06.png │ │ │ └── Contents.json │ │ │ ├── 1f07.imageset │ │ │ ├── 1f07.png │ │ │ └── Contents.json │ │ │ ├── 1f08.imageset │ │ │ ├── 1f08.png │ │ │ └── Contents.json │ │ │ ├── 1f09.imageset │ │ │ ├── 1f09.png │ │ │ └── Contents.json │ │ │ ├── 1f10.imageset │ │ │ ├── 1f10.png │ │ │ └── Contents.json │ │ │ ├── 1f11.imageset │ │ │ ├── 1f11.png │ │ │ └── Contents.json │ │ │ ├── 1f12.imageset │ │ │ ├── 1f12.png │ │ │ └── Contents.json │ │ │ ├── 1f13.imageset │ │ │ ├── 1f13.png │ │ │ └── Contents.json │ │ │ ├── 1f14.imageset │ │ │ ├── 1f14.png │ │ │ └── Contents.json │ │ │ ├── 1f15.imageset │ │ │ ├── 1f15.png │ │ │ └── Contents.json │ │ │ ├── 1f16.imageset │ │ │ ├── 1f16.png │ │ │ └── Contents.json │ │ │ ├── 1f17.imageset │ │ │ ├── 1f17.png │ │ │ └── Contents.json │ │ │ ├── 1f18.imageset │ │ │ ├── 1f18.png │ │ │ └── Contents.json │ │ │ ├── 1f19.imageset │ │ │ ├── 1f19.png │ │ │ └── Contents.json │ │ │ ├── 1f20.imageset │ │ │ ├── 1f20.png │ │ │ └── Contents.json │ │ │ ├── 1f21.imageset │ │ │ ├── 1f21.png │ │ │ └── Contents.json │ │ │ ├── 1f22.imageset │ │ │ ├── 1f22.png │ │ │ └── Contents.json │ │ │ ├── 1f23.imageset │ │ │ ├── 1f23.png │ │ │ └── Contents.json │ │ │ ├── 1f24.imageset │ │ │ ├── 1f24.png │ │ │ └── Contents.json │ │ │ ├── 1f25.imageset │ │ │ ├── 1f25.png │ │ │ └── Contents.json │ │ │ ├── 1f26.imageset │ │ │ ├── 1f26.png │ │ │ └── Contents.json │ │ │ ├── 1f27.imageset │ │ │ ├── 1f27.png │ │ │ └── Contents.json │ │ │ ├── 1f28.imageset │ │ │ ├── 1f28.png │ │ │ └── Contents.json │ │ │ ├── 1f29.imageset │ │ │ ├── 1f29.png │ │ │ └── Contents.json │ │ │ ├── 1f30.imageset │ │ │ ├── 1f30.png │ │ │ └── Contents.json │ │ │ ├── 1f31.imageset │ │ │ ├── 1f31.png │ │ │ └── Contents.json │ │ │ ├── 1f32.imageset │ │ │ ├── 1f32.png │ │ │ └── Contents.json │ │ │ ├── 1f33.imageset │ │ │ ├── 1f33.png │ │ │ └── Contents.json │ │ │ ├── 1f34.imageset │ │ │ ├── 1f34.png │ │ │ └── Contents.json │ │ │ ├── 1f35.imageset │ │ │ ├── 1f35.png │ │ │ └── Contents.json │ │ │ ├── 1f36.imageset │ │ │ ├── 1f36.png │ │ │ └── Contents.json │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── LaunchScreen.storyboard │ ├── Chat │ │ ├── Controller │ │ │ ├── LCAddressMapViewController.h │ │ │ ├── LCAddressMapViewController.m │ │ │ ├── LCAssetGridViewController.h │ │ │ ├── LCAssetGridViewController.m │ │ │ ├── LCAssetViewController.h │ │ │ ├── LCAssetViewController.m │ │ │ ├── LCChatViewController.h │ │ │ ├── LCChatViewController.m │ │ │ ├── LCMapViewController.h │ │ │ └── LCMapViewController.m │ │ ├── Model │ │ │ ├── LCAnnotation.h │ │ │ ├── LCAnnotation.m │ │ │ ├── LCAsset.h │ │ │ ├── LCAsset.m │ │ │ ├── LCBanner.h │ │ │ ├── LCBanner.m │ │ │ ├── LCEmotion.h │ │ │ ├── LCEmotion.m │ │ │ ├── LCSession.h │ │ │ ├── LCSession.m │ │ │ ├── LCTextAttachment.h │ │ │ └── LCTextAttachment.m │ │ └── View │ │ │ ├── Photo │ │ │ ├── LCAssetCell.h │ │ │ ├── LCAssetCell.m │ │ │ ├── LCAssetGridCell.h │ │ │ ├── LCAssetGridCell.m │ │ │ ├── LCAssetGridTooBar.h │ │ │ ├── LCAssetGridTooBar.m │ │ │ ├── LCPhotoBrowseCell.h │ │ │ ├── LCPhotoBrowseCell.m │ │ │ ├── LCPhotoBrowseView.h │ │ │ └── LCPhotoBrowseView.m │ │ │ ├── Toolbar │ │ │ ├── LCEmotionCell.h │ │ │ ├── LCEmotionCell.m │ │ │ ├── LCEmotionPopView.h │ │ │ ├── LCEmotionPopView.m │ │ │ ├── LCEmotionView.h │ │ │ ├── LCEmotionView.m │ │ │ ├── LCInputToolBar.h │ │ │ ├── LCInputToolBar.m │ │ │ ├── LCMetersRecordingView.h │ │ │ ├── LCMetersRecordingView.m │ │ │ ├── LCMoreInputCell.h │ │ │ ├── LCMoreInputCell.m │ │ │ ├── LCMoreInputView.h │ │ │ ├── LCMoreInputView.m │ │ │ ├── LCRecordingView.h │ │ │ ├── LCRecordingView.m │ │ │ ├── LCTextView.h │ │ │ └── LCTextView.m │ │ │ └── chatCell │ │ │ ├── LCBannerCell.h │ │ │ ├── LCBannerCell.m │ │ │ ├── LCBaseChatCell.h │ │ │ ├── LCBaseChatCell.m │ │ │ ├── LCReceiverChatCell.h │ │ │ ├── LCReceiverChatCell.m │ │ │ ├── LCSenderChatCell.h │ │ │ ├── LCSenderChatCell.m │ │ │ ├── LCShapedImageView.h │ │ │ └── LCShapedImageView.m │ ├── Controller │ │ ├── LCBaseViewController.h │ │ ├── LCBaseViewController.m │ │ ├── LCDetailViewController.h │ │ ├── LCDetailViewController.m │ │ ├── LCDetailViewController.xib │ │ ├── LCNavigationController.h │ │ ├── LCNavigationController.m │ │ ├── LCTabBarController.h │ │ └── LCTabBarController.m │ ├── Info.plist │ ├── LCSettingConst.h │ ├── LCSettingConst.m │ ├── PrefixHeader.pch │ ├── Resources │ │ ├── 0.jpg │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 11.jpg │ │ ├── 12.jpg │ │ ├── 13.jpg │ │ ├── 14.jpg │ │ ├── 15.jpg │ │ ├── 16.jpg │ │ ├── 17.jpg │ │ ├── 18.jpg │ │ ├── 19.jpg │ │ ├── 2.jpg │ │ ├── 20.jpg │ │ ├── 21.jpg │ │ ├── 22.jpg │ │ ├── 23.jpg │ │ ├── 24.jpg │ │ ├── 25.jpg │ │ ├── 26.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── Tool │ │ ├── Audio │ │ │ ├── LCAudioManager.h │ │ │ ├── LCAudioManager.m │ │ │ ├── LCAudioPlay.h │ │ │ ├── LCAudioPlay.m │ │ │ ├── LCAudioRecord.h │ │ │ └── LCAudioRecord.m │ │ ├── LCAudioPlayTool.h │ │ ├── LCAudioPlayTool.m │ │ ├── LCBaseHttpTool.h │ │ ├── LCBaseHttpTool.m │ │ ├── LCCachesTool.h │ │ ├── LCCachesTool.m │ │ ├── LCHttpParamTool.h │ │ ├── LCHttpParamTool.m │ │ ├── LCHttpTool.h │ │ ├── LCHttpTool.m │ │ ├── LCLayer │ │ │ ├── LCLayer.h │ │ │ └── LCLayer.m │ │ ├── mqtt │ │ │ ├── LCMosquittoMqtt.h │ │ │ ├── LCMosquittoMqtt.m │ │ │ └── libmosquitto │ │ │ │ ├── config.h │ │ │ │ ├── dummypthread.h │ │ │ │ ├── logging_mosq.c │ │ │ │ ├── logging_mosq.h │ │ │ │ ├── memory_mosq.c │ │ │ │ ├── memory_mosq.h │ │ │ │ ├── messages_mosq.c │ │ │ │ ├── messages_mosq.h │ │ │ │ ├── mosquitto.c │ │ │ │ ├── mosquitto.h │ │ │ │ ├── mosquitto_internal.h │ │ │ │ ├── mqtt3_protocol.h │ │ │ │ ├── net_mosq.c │ │ │ │ ├── net_mosq.h │ │ │ │ ├── read_handle.c │ │ │ │ ├── read_handle.h │ │ │ │ ├── read_handle_client.c │ │ │ │ ├── read_handle_shared.c │ │ │ │ ├── send_client_mosq.c │ │ │ │ ├── send_mosq.c │ │ │ │ ├── send_mosq.h │ │ │ │ ├── thread_mosq.c │ │ │ │ ├── time_mosq.c │ │ │ │ ├── time_mosq.h │ │ │ │ ├── tls_mosq.c │ │ │ │ ├── tls_mosq.h │ │ │ │ ├── util_mosq.c │ │ │ │ ├── util_mosq.h │ │ │ │ ├── will_mosq.c │ │ │ │ └── will_mosq.h │ │ └── socket │ │ │ ├── LCBaseSocket.h │ │ │ ├── LCBaseSocket.m │ │ │ ├── LCSocketCoderProtocol.h │ │ │ ├── LCSocketDecoder.h │ │ │ ├── LCSocketDecoder.m │ │ │ ├── LCSocketEncoder.h │ │ │ └── LCSocketEncoder.m │ ├── View │ │ ├── LCTabBar.h │ │ └── LCTabBar.m │ ├── category │ │ ├── NSData+LCCategory.h │ │ ├── NSData+LCCategory.m │ │ ├── NSString+LCCatory.h │ │ ├── NSString+LCCatory.m │ │ ├── UIImage+LCCategory.h │ │ ├── UIImage+LCCategory.m │ │ ├── UIScrollView+LCCategory.h │ │ ├── UIScrollView+LCCategory.m │ │ ├── UIView+LCCategory.h │ │ └── UIView+LCCategory.m │ ├── emotions.plist │ ├── main.m │ ├── moreInputView.plist │ ├── news.plist │ ├── receive_msg.caf │ ├── sendmsgsuc.caf │ └── zh-Hans.lproj │ │ ├── LaunchScreen.strings │ │ └── Localizable.strings ├── Plus(更多) │ ├── LCPlusButton.h │ ├── LCPlusButton.m │ ├── LCPlusViewController.h │ └── LCPlusViewController.m ├── Session(会话) │ ├── LCDetailViewController.h │ ├── LCDetailViewController.m │ ├── LCDetailViewController.storyboard │ ├── LCSessionList.h │ ├── LCSessionList.m │ ├── LCSessionListCell.h │ ├── LCSessionListCell.m │ ├── LCSessionListViewController.h │ └── LCSessionListViewController.m └── Setting(设置) │ ├── Controller │ ├── LCSettingAboutUsViewController.h │ ├── LCSettingAboutUsViewController.m │ ├── LCSettingViewController.h │ └── LCSettingViewController.m │ ├── Model │ ├── LCSettingAboutUsItem.h │ ├── LCSettingAboutUsItem.m │ ├── LCSettingArrowItem.h │ ├── LCSettingArrowItem.m │ ├── LCSettingItem.h │ ├── LCSettingItem.m │ ├── LCSettingLoginItem.h │ ├── LCSettingLoginItem.m │ ├── LCSettingStatusItem.h │ ├── LCSettingStatusItem.m │ ├── LCSettingSwitchItem.h │ └── LCSettingSwitchItem.m │ └── View │ ├── AlertView │ ├── LCLoginoffView.h │ ├── LCLoginoffView.m │ ├── LCLoginoffView.xib │ ├── LCSettingPasswordChangeView.h │ ├── LCSettingPasswordChangeView.m │ ├── LCSettingPasswordChangeView.xib │ ├── LCSettingStatusChangeView.h │ ├── LCSettingStatusChangeView.m │ └── LCSettingStatusChangeView.xib │ ├── LCLoginStatusView.h │ ├── LCLoginStatusView.m │ ├── LCLoginStatusView.xib │ ├── LCSettingCell.h │ ├── LCSettingCell.m │ └── LCSettingCell.xib ├── weChatTests ├── Info.plist └── weChatTests.m └── weChatUITests ├── Info.plist └── weChatUITests.m /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/.DS_Store -------------------------------------------------------------------------------- /LCWeChat.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Resource/LCWeChat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/Resource/LCWeChat.gif -------------------------------------------------------------------------------- /Resource/chatCell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/Resource/chatCell.png -------------------------------------------------------------------------------- /Resource/mainController.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/Resource/mainController.png -------------------------------------------------------------------------------- /weChat/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/.DS_Store -------------------------------------------------------------------------------- /weChat/Discover(发现)/LCDiscoverViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCDiscoverViewController.h 3 | // weChat 4 | // 5 | // Created by 聪 on 16/5/11. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCDiscoverViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Discover(发现)/LCNewsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCNewsViewController.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/6. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCNewsViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Discover(发现)/LCPhotosView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCPhotosView.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/9. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCPhotosView : UIView 12 | @property (strong, nonatomic) NSArray *photos; 13 | 14 | + (CGSize)photosViewSizeWithPhotosCount:(NSInteger)count image:(UIImage *)image; 15 | @end 16 | -------------------------------------------------------------------------------- /weChat/Group(讨论组)/LCGroupListCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCGroupListCell.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 16/1/19. 6 | // Copyright © 2016年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class LCGroupList; 12 | @interface LCGroupListCell : UITableViewCell 13 | 14 | @property (strong, nonatomic) LCGroupList *internalGroupList; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /weChat/Group(讨论组)/LCGroupListViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCGroupViewController.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 16/1/18. 6 | // Copyright © 2016年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCGroupListViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Lib/MJExtension/MJFoundation.h: -------------------------------------------------------------------------------- 1 | // 2 | // MJFoundation.h 3 | // MJExtensionExample 4 | // 5 | // Created by MJ Lee on 14/7/16. 6 | // Copyright (c) 2014年 小码哥. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface MJFoundation : NSObject 12 | + (BOOL)isClassFromFoundation:(Class)c; 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Lib/Masonry/MASLayoutConstraint.m: -------------------------------------------------------------------------------- 1 | // 2 | // MASLayoutConstraint.m 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASLayoutConstraint.h" 10 | 11 | @implementation MASLayoutConstraint 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Lib/Masonry/NSLayoutConstraint+MASDebugAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSLayoutConstraint+MASDebugAdditions.h 3 | // Masonry 4 | // 5 | // Created by Jonas Budelmann on 3/08/13. 6 | // Copyright (c) 2013 Jonas Budelmann. All rights reserved. 7 | // 8 | 9 | #import "MASUtilities.h" 10 | 11 | /** 12 | * makes debug and log output of NSLayoutConstraints more readable 13 | */ 14 | @interface NSLayoutConstraint (MASDebugAdditions) 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /weChat/Lib/SDWebImage/SDWebImageOperation.h: -------------------------------------------------------------------------------- 1 | /* 2 | * This file is part of the SDWebImage package. 3 | * (c) Olivier Poitrey 4 | * 5 | * For the full copyright and license information, please view the LICENSE 6 | * file that was distributed with this source code. 7 | */ 8 | 9 | #import 10 | 11 | @protocol SDWebImageOperation 12 | 13 | - (void)cancel; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /weChat/Lib/SDWebImage/UIImage+GIF.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+GIF.h 3 | // LBGIFImage 4 | // 5 | // Created by Laurin Brandner on 06.01.12. 6 | // Copyright (c) 2012 __MyCompanyName__. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (GIF) 12 | 13 | + (UIImage *)sd_animatedGIFNamed:(NSString *)name; 14 | 15 | + (UIImage *)sd_animatedGIFWithData:(NSData *)data; 16 | 17 | - (UIImage *)sd_animatedImageByScalingAndCroppingToSize:(CGSize)size; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /weChat/Lib/SDWebImage/UIImage+MultiFormat.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+MultiFormat.h 3 | // SDWebImage 4 | // 5 | // Created by Olivier Poitrey on 07/06/13. 6 | // Copyright (c) 2013 Dailymotion. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (MultiFormat) 12 | 13 | + (UIImage *)sd_imageWithData:(NSData *)data; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /weChat/Lib/fmdb/FMDB.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | FOUNDATION_EXPORT double FMDBVersionNumber; 4 | FOUNDATION_EXPORT const unsigned char FMDBVersionString[]; 5 | 6 | #import "FMDatabase.h" 7 | #import "FMResultSet.h" 8 | #import "FMDatabaseAdditions.h" 9 | #import "FMDatabaseQueue.h" 10 | #import "FMDatabasePool.h" 11 | -------------------------------------------------------------------------------- /weChat/Lib/libmp3lame.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Lib/libmp3lame.a -------------------------------------------------------------------------------- /weChat/Other/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/29. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/AppIcon.appiconset/0058.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/AppIcon.appiconset/0058.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/AppIcon.appiconset/0080.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/AppIcon.appiconset/0080.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/AppIcon.appiconset/0087.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/AppIcon.appiconset/0087.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/AppIcon.appiconset/0120-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/AppIcon.appiconset/0120-1.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/AppIcon.appiconset/0120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/AppIcon.appiconset/0120.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/AppIcon.appiconset/0180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/AppIcon.appiconset/0180.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_emoji_highlight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bar_emoji_highlight@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_emoji_highlight.imageset/chat_bar_emoji_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_emoji_highlight.imageset/chat_bar_emoji_highlight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_emoji_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bar_emoji_normal@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_emoji_normal.imageset/chat_bar_emoji_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_emoji_normal.imageset/chat_bar_emoji_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_face_highlight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_bar_face_highlight@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_face_highlight.imageset/chat_bar_face_highlight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_face_highlight.imageset/chat_bar_face_highlight@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_face_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_bar_face_normal@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_face_normal.imageset/chat_bar_face_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_face_normal.imageset/chat_bar_face_normal@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_camera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_camera@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_camera.imageset/aio_icons_camera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_camera.imageset/aio_icons_camera@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_location@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_location.imageset/aio_icons_location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_location.imageset/aio_icons_location@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_pic.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_pic@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_pic.imageset/aio_icons_pic@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_icons_pic.imageset/aio_icons_pic@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_input_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_ipunt_message.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_input_normal.imageset/chat_ipunt_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_input_normal.imageset/chat_ipunt_message.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_more_highlight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_bar_more_highlight@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_more_highlight.imageset/chat_bar_more_highlight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_more_highlight.imageset/chat_bar_more_highlight@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_more_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_bar_more_normal@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_more_normal.imageset/chat_bar_more_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_more_normal.imageset/chat_bar_more_normal@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_picture_normal.imageset/Chat_take_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_picture_normal.imageset/Chat_take_picture.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_picture_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "Chat_take_picture.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_recent_highlight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bar_recent_highlight@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_recent_highlight.imageset/chat_bar_recent_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_recent_highlight.imageset/chat_bar_recent_highlight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_recent_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bar_recent_normal@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_recent_normal.imageset/chat_bar_recent_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_recent_normal.imageset/chat_bar_recent_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_record_circle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bar_record@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_record_circle.imageset/chat_bar_record@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_record_circle.imageset/chat_bar_record@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_voice_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_voice_record.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/chat_bar_voice_normal.imageset/chat_voice_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/chat_bar_voice_normal.imageset/chat_voice_record.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/location_green_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "location_green_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/location_green_icon.imageset/location_green_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/location_green_icon.imageset/location_green_icon@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/preview_background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bg(1).png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/preview_background.imageset/bg(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/preview_background.imageset/bg(1).png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/show_user_location_normal.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "show_user_location_normal@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/show_user_location_normal.imageset/show_user_location_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/show_user_location_normal.imageset/show_user_location_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/show_user_location_pressed.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "show_user_location_pressed@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/show_user_location_pressed.imageset/show_user_location_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/show_user_location_pressed.imageset/show_user_location_pressed@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatBar/show_user_location_selected.imageset/show_user_location_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatBar/show_user_location_selected.imageset/show_user_location_selected@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "location@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/location.imageset/location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/location.imageset/location@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_receiver_background_highlight.imageset/message_receiver_background_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_receiver_background_highlight.imageset/message_receiver_background_highlight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_receiver_background_highlight.imageset/message_receiver_background_highlight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_receiver_background_highlight.imageset/message_receiver_background_highlight@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_receiver_background_normal.imageset/message_receiver_background_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_receiver_background_normal.imageset/message_receiver_background_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_receiver_background_normal.imageset/message_receiver_background_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_receiver_background_normal.imageset/message_receiver_background_normal@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_sender_background_highlight.imageset/message_sender_background_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_sender_background_highlight.imageset/message_sender_background_highlight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_sender_background_highlight.imageset/message_sender_background_highlight@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_sender_background_highlight.imageset/message_sender_background_highlight@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_sender_background_normal.imageset/message_sender_background_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_sender_background_normal.imageset/message_sender_background_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_sender_background_normal.imageset/message_sender_background_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_sender_background_normal.imageset/message_sender_background_normal@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_normal.imageset/message_voice_receiver_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_normal.imageset/message_voice_receiver_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_normal.imageset/message_voice_receiver_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_normal.imageset/message_voice_receiver_normal@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_1.imageset/message_voice_receiver_playing_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_1.imageset/message_voice_receiver_playing_1@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_1.imageset/message_voice_receiver_playing_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_1.imageset/message_voice_receiver_playing_1@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_2.imageset/message_voice_receiver_playing_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_2.imageset/message_voice_receiver_playing_2@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_2.imageset/message_voice_receiver_playing_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_2.imageset/message_voice_receiver_playing_2@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_3.imageset/message_voice_receiver_playing_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_3.imageset/message_voice_receiver_playing_3@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_3.imageset/message_voice_receiver_playing_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_receiver_playing_3.imageset/message_voice_receiver_playing_3@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_sender_normal.imageset/message_voice_sender_normal.imageset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_sender_normal.imageset/message_voice_sender_normal.imageset.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_sender_normal.imageset/message_voice_sender_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_sender_normal.imageset/message_voice_sender_normal@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_1.imageset/message_voice_sender_playing_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_1.imageset/message_voice_sender_playing_1@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_1.imageset/message_voice_sender_playing_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_1.imageset/message_voice_sender_playing_1@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_2.imageset/message_voice_sender_playing_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_2.imageset/message_voice_sender_playing_2@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_2.imageset/message_voice_sender_playing_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_2.imageset/message_voice_sender_playing_2@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_3.imageset/message_voice_sender_playing_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_3.imageset/message_voice_sender_playing_3@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_3.imageset/message_voice_sender_playing_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/message_voice_sender_playing_3.imageset/message_voice_sender_playing_3@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/sun.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "sun.jpg", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/ChatView/sun.imageset/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/ChatView/sun.imageset/sun.jpg -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/AlbumOperateMoreHL.imageset/AlbumOperateMoreHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/AlbumOperateMoreHL.imageset/AlbumOperateMoreHL@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/AlbumOperateMoreHL.imageset/AlbumOperateMoreHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/AlbumOperateMoreHL.imageset/AlbumOperateMoreHL@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/AlbumReflashIcon.imageset/AlbumReflashIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/AlbumReflashIcon.imageset/AlbumReflashIcon@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/AlbumReflashIcon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "AlbumReflashIcon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/CreditCard_ShoppingBag.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "CreditCard_ShoppingBag@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/CreditCard_ShoppingBag.imageset/CreditCard_ShoppingBag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/CreditCard_ShoppingBag.imageset/CreditCard_ShoppingBag@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/Menu.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "Menu@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/Menu.imageset/Menu@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/Menu.imageset/Menu@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/MoreGame.imageset/MoreGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/MoreGame.imageset/MoreGame.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/MoreGame.imageset/MoreGame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/MoreGame.imageset/MoreGame@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/MoreGame.imageset/MoreGame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/MoreGame.imageset/MoreGame@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/QQ钱包.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "nav_coin_icon_click@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/QQ钱包.imageset/nav_coin_icon_click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/QQ钱包.imageset/nav_coin_icon_click@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_favorite.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_favorite@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_favorite.imageset/aio_icons_favorite@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_favorite.imageset/aio_icons_favorite@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_folder.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_folder@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_folder.imageset/aio_icons_folder@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_folder.imageset/aio_icons_folder@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_freeaudio.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_freeaudio@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_freeaudio.imageset/aio_icons_freeaudio@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_freeaudio.imageset/aio_icons_freeaudio@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_location.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_location@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_location.imageset/aio_icons_location@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_location.imageset/aio_icons_location@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_music.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_music@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_music.imageset/aio_icons_music@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_music.imageset/aio_icons_music@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_pacamera.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_pacamera@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_pacamera.imageset/aio_icons_pacamera@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_pacamera.imageset/aio_icons_pacamera@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_red_pack.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_red_pack@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_red_pack.imageset/aio_icons_red_pack@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_red_pack.imageset/aio_icons_red_pack@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_shake.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_shake@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_shake.imageset/aio_icons_shake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_shake.imageset/aio_icons_shake@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_share_nameplate.imageset/aio_icons_share_nameplate@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_share_nameplate.imageset/aio_icons_share_nameplate@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_shotmovie.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_shotmovie@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_shotmovie.imageset/aio_icons_shotmovie@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_shotmovie.imageset/aio_icons_shotmovie@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_transfer.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_transfer@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_transfer.imageset/aio_icons_transfer@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_transfer.imageset/aio_icons_transfer@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_video.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_icons_video@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_icons_video.imageset/aio_icons_video@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_icons_video.imageset/aio_icons_video@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect.imageset/aio_voiceChange_effect_0@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect.imageset/aio_voiceChange_effect_0@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "anon_group_loading@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_0.imageset/anon_group_loading@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_0.imageset/anon_group_loading@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_voiceChange_effect_1@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_1.imageset/aio_voiceChange_effect_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_1.imageset/aio_voiceChange_effect_1@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_voiceChange_effect_2@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_2.imageset/aio_voiceChange_effect_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_2.imageset/aio_voiceChange_effect_2@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_voiceChange_effect_3@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_3.imageset/aio_voiceChange_effect_3@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_3.imageset/aio_voiceChange_effect_3@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_voiceChange_effect_4@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_4.imageset/aio_voiceChange_effect_4@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_4.imageset/aio_voiceChange_effect_4@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "aio_voiceChange_effect_5@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_5.imageset/aio_voiceChange_effect_5@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_5.imageset/aio_voiceChange_effect_5@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "anon_group_loading_fail@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_6.imageset/anon_group_loading_fail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/aio_voiceChange_effect_6.imageset/anon_group_loading_fail@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/back.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "back@3x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/back.imageset/back@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/back.imageset/back@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/bottleRecord.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "bottleRecord@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/bottleRecord.imageset/bottleRecord@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/bottleRecord.imageset/bottleRecord@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_emotion_press.imageset/chat_bottom_emotion_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/chat_bottom_emotion_press.imageset/chat_bottom_emotion_press@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_more_press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_bottom_more_press@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_more_press.imageset/chat_bottom_more_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/chat_bottom_more_press.imageset/chat_bottom_more_press@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_photo_press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_bottom_photo_press@3x.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_photo_press.imageset/chat_bottom_photo_press@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/chat_bottom_photo_press.imageset/chat_bottom_photo_press@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_smile_nor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bottom_smile_nor@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_smile_nor.imageset/chat_bottom_smile_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/chat_bottom_smile_nor.imageset/chat_bottom_smile_nor@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_up_nor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bottom_up_nor@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_up_nor.imageset/chat_bottom_up_nor@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/chat_bottom_up_nor.imageset/chat_bottom_up_nor@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_up_press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bottom_up_press@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/chat_bottom_up_press.imageset/chat_bottom_up_press@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/chat_bottom_up_press.imageset/chat_bottom_up_press@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconBottle.imageset/ff_IconBottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconBottle.imageset/ff_IconBottle.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconBottle.imageset/ff_IconBottle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconBottle.imageset/ff_IconBottle@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconBottle.imageset/ff_IconBottle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconBottle.imageset/ff_IconBottle@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconLocationService.imageset/ff_IconLocationService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconLocationService.imageset/ff_IconLocationService.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconLocationService.imageset/ff_IconLocationService@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconLocationService.imageset/ff_IconLocationService@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconLocationService.imageset/ff_IconLocationService@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconLocationService.imageset/ff_IconLocationService@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconQRCode.imageset/ff_IconQRCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconQRCode.imageset/ff_IconQRCode.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconQRCode.imageset/ff_IconQRCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconQRCode.imageset/ff_IconQRCode@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconQRCode.imageset/ff_IconQRCode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconQRCode.imageset/ff_IconQRCode@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShake.imageset/ff_IconShake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShake.imageset/ff_IconShake.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShake.imageset/ff_IconShake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShake.imageset/ff_IconShake@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShake.imageset/ff_IconShake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShake.imageset/ff_IconShake@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-1.imageset/ff_IconShowAlbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-1.imageset/ff_IconShowAlbum.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-1.imageset/ff_IconShowAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-1.imageset/ff_IconShowAlbum@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-1.imageset/ff_IconShowAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-1.imageset/ff_IconShowAlbum@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-2.imageset/ff_IconShowAlbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-2.imageset/ff_IconShowAlbum.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-2.imageset/ff_IconShowAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-2.imageset/ff_IconShowAlbum@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-2.imageset/ff_IconShowAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum-2.imageset/ff_IconShowAlbum@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum.imageset/ff_IconShowAlbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum.imageset/ff_IconShowAlbum.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum.imageset/ff_IconShowAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum.imageset/ff_IconShowAlbum@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum.imageset/ff_IconShowAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/ff_IconShowAlbum.imageset/ff_IconShowAlbum@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/header.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "header_cry_icon.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/header.imageset/header_cry_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/header.imageset/header_cry_icon.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/icon_message_cell_error.imageset/icon_message_cell_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/icon_message_cell_error.imageset/icon_message_cell_error@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/icon_message_cell_error.imageset/icon_message_cell_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/icon_message_cell_error.imageset/icon_message_cell_error@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/person_topbackImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "person_topbackImage@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/person_topbackImage.imageset/person_topbackImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/person_topbackImage.imageset/person_topbackImage@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/pin_green.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "pin_green@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/pin_green.imageset/pin_green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/pin_green.imageset/pin_green@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/qvip_ps_banner_icon.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "qvip_ps_banner_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/qvip_ps_banner_icon.imageset/qvip_ps_banner_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/qvip_ps_banner_icon.imageset/qvip_ps_banner_icon@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/set1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tabBar_me_click_icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/set1.imageset/tabBar_me_click_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/set1.imageset/tabBar_me_click_icon@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/sfdsaf.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "hot-news.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/sfdsaf.imageset/hot-news.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/sfdsaf.imageset/hot-news.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/个性装扮.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "mine-setting-icon-click@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/个性装扮.imageset/mine-setting-icon-click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/个性装扮.imageset/mine-setting-icon-click@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/开通会员.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "friendsRecommentIcon-click@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/开通会员.imageset/friendsRecommentIcon-click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/开通会员.imageset/friendsRecommentIcon-click@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/我的名片夹.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "mine-moon-icon@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/我的名片夹.imageset/mine-moon-icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/我的名片夹.imageset/mine-moon-icon@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/我的收藏.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "mainCellDingClick@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/我的收藏.imageset/mainCellDingClick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/我的收藏.imageset/mainCellDingClick@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/我的文件.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "mine-sun-icon-click@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/我的文件.imageset/mine-sun-icon-click@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/我的文件.imageset/mine-sun-icon-click@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/我的相册.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "MainTagSubIconClick@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/我的相册.imageset/MainTagSubIconClick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/我的相册.imageset/MainTagSubIconClick@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/未读消息-红底.imageset/未读消息-红底@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/未读消息-红底.imageset/未读消息-红底@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/New Folder/未读消息-红底.imageset/未读消息-红底@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/New Folder/未读消息-红底.imageset/未读消息-红底@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/account_highlight.imageset/account_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/account_highlight.imageset/account_highlight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/account_normal.imageset/account_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/account_normal.imageset/account_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/home_highlight.imageset/home_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/home_highlight.imageset/home_highlight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/home_normal.imageset/home_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/home_normal.imageset/home_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/message_highlight.imageset/message_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/message_highlight.imageset/message_highlight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/message_normal.imageset/message_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/message_normal.imageset/message_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/mycity_highlight.imageset/mycity_highlight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/mycity_highlight.imageset/mycity_highlight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/mycity_normal.imageset/mycity_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/mycity_normal.imageset/mycity_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturn.imageset/navigationButtonReturn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturn.imageset/navigationButtonReturn.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturn.imageset/navigationButtonReturn@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturn.imageset/navigationButtonReturn@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturn.imageset/navigationButtonReturn@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturn.imageset/navigationButtonReturn@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturnClick.imageset/navigationButtonReturnClick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturnClick.imageset/navigationButtonReturnClick.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturnClick.imageset/navigationButtonReturnClick@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturnClick.imageset/navigationButtonReturnClick@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturnClick.imageset/navigationButtonReturnClick@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/navigationButtonReturnClick.imageset/navigationButtonReturnClick@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/navigationbarBackgroundWhite.imageset/navigationbarBackgroundWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/navigationbarBackgroundWhite.imageset/navigationbarBackgroundWhite.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/post_normal.imageset/post_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/post_normal.imageset/post_normal@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/shareBottomBackground.imageset/shareBottomBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/shareBottomBackground.imageset/shareBottomBackground.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/shareBottomBackground.imageset/shareBottomBackground@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/shareBottomBackground.imageset/shareBottomBackground@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/shareBottomBackground.imageset/shareBottomBackground@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/shareBottomBackground.imageset/shareBottomBackground@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/shareButtonCancel.imageset/shareButtonCancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/shareButtonCancel.imageset/shareButtonCancel.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/shareButtonCancel.imageset/shareButtonCancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/shareButtonCancel.imageset/shareButtonCancel@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/shareButtonCancel.imageset/shareButtonCancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/shareButtonCancel.imageset/shareButtonCancel@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/tabbar_background.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "tabbar_background@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/tabbar_background.imageset/tabbar_background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/tabbar_background.imageset/tabbar_background@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/TabBarIcon/tapbar_top_line.imageset/tapbar_top_line@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/TabBarIcon/tapbar_top_line.imageset/tapbar_top_line@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/DeleteEmoticonBtn_ios7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "DeleteEmoticonBtn_ios7@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/DeleteEmoticonBtn_ios7.imageset/DeleteEmoticonBtn_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/DeleteEmoticonBtn_ios7.imageset/DeleteEmoticonBtn_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/EmoticonBigTipsRight.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "EmoticonBigTipsRight@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/EmoticonBigTipsRight.imageset/EmoticonBigTipsRight@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/EmoticonBigTipsRight.imageset/EmoticonBigTipsRight@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying000_ios7.imageset/ReceiverVoiceNodePlaying000_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying000_ios7.imageset/ReceiverVoiceNodePlaying000_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying001_ios7.imageset/ReceiverVoiceNodePlaying001_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying001_ios7.imageset/ReceiverVoiceNodePlaying001_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying002_ios7.imageset/ReceiverVoiceNodePlaying002_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying002_ios7.imageset/ReceiverVoiceNodePlaying002_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying003_ios7.imageset/ReceiverVoiceNodePlaying003_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying003_ios7.imageset/ReceiverVoiceNodePlaying003_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying_ios7.imageset/ReceiverVoiceNodePlaying_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ReceiverVoiceNodePlaying_ios7.imageset/ReceiverVoiceNodePlaying_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying000_ios7.imageset/SenderVoiceNodePlaying000_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying000_ios7.imageset/SenderVoiceNodePlaying000_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying001_ios7.imageset/SenderVoiceNodePlaying001_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying001_ios7.imageset/SenderVoiceNodePlaying001_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying002_ios7.imageset/SenderVoiceNodePlaying002_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying002_ios7.imageset/SenderVoiceNodePlaying002_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying003_ios7.imageset/SenderVoiceNodePlaying003_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying003_ios7.imageset/SenderVoiceNodePlaying003_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying_ios7.imageset/SenderVoiceNodePlaying_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/SenderVoiceNodePlaying_ios7.imageset/SenderVoiceNodePlaying_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ToolViewEmotion_ios7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "ToolViewEmotion_ios7@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ToolViewEmotion_ios7.imageset/ToolViewEmotion_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ToolViewEmotion_ios7.imageset/ToolViewEmotion_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ToolViewInputVoice_ios7.imageset/录音图标-默认@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ToolViewInputVoice_ios7.imageset/录音图标-默认@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ToolViewInputVoice_ios7.imageset/录音图标-默认@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ToolViewInputVoice_ios7.imageset/录音图标-默认@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ToolViewKeyboard_ios7.imageset/键盘@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ToolViewKeyboard_ios7.imageset/键盘@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/ToolViewKeyboard_ios7.imageset/键盘@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/ToolViewKeyboard_ios7.imageset/键盘@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/TypeSelectorBtn_Black_ios7.imageset/TypeSelectorBtn_Black_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/TypeSelectorBtn_Black_ios7.imageset/TypeSelectorBtn_Black_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/TypeSelectorBtn_Black_ios7.imageset/功能-默认@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/TypeSelectorBtn_Black_ios7.imageset/功能-默认@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/TypeSelectorBtn_Black_ios7.imageset/功能-默认@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/TypeSelectorBtn_Black_ios7.imageset/功能-默认@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/avator.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "avator@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/avator.imageset/avator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/avator.imageset/avator@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatBubble_Receiving_Cavern.imageset/chatBubble_Receiving_Cavern@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatBubble_Receiving_Cavern.imageset/chatBubble_Receiving_Cavern@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatBubble_Receiving_Solid.imageset/chatBubble_Receiving_Solid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatBubble_Receiving_Solid.imageset/chatBubble_Receiving_Solid@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatBubble_Sending_Cavern-1.imageset/chatBubble_Sending_Cavern@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatBubble_Sending_Cavern-1.imageset/chatBubble_Sending_Cavern@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatBubble_Sending_Cavern.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chatBubble_Sending_Cavern@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatBubble_Sending_Cavern.imageset/chatBubble_Sending_Cavern@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatBubble_Sending_Cavern.imageset/chatBubble_Sending_Cavern@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatBubble_Sending_Solid.imageset/chatBubble_Sending_Solid@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatBubble_Sending_Solid.imageset/chatBubble_Sending_Solid@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_keyboard_nor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bottom_keyboard_nor.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_keyboard_nor.imageset/chat_bottom_keyboard_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_keyboard_nor.imageset/chat_bottom_keyboard_nor.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_keyboard_press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "chat_bottom_keyboard_press.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_keyboard_press.imageset/chat_bottom_keyboard_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_keyboard_press.imageset/chat_bottom_keyboard_press.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_smile_nor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chat_bottom_smile_nor.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_smile_nor.imageset/chat_bottom_smile_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_smile_nor.imageset/chat_bottom_smile_nor.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_smile_press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chat_bottom_smile_press.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_smile_press.imageset/chat_bottom_smile_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_smile_press.imageset/chat_bottom_smile_press.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_textfield.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chat_bottom_textfield.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_textfield.imageset/chat_bottom_textfield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_textfield.imageset/chat_bottom_textfield.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_up_nor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chat_bottom_up_nor.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_up_nor.imageset/chat_bottom_up_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_up_nor.imageset/chat_bottom_up_nor.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_up_press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chat_bottom_up_press.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_up_press.imageset/chat_bottom_up_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_up_press.imageset/chat_bottom_up_press.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_voice_nor.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "scale" : "2x" 10 | }, 11 | { 12 | "idiom" : "universal", 13 | "filename" : "chat_bottom_voice_nor.png", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_voice_nor.imageset/chat_bottom_voice_nor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_voice_nor.imageset/chat_bottom_voice_nor.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_voice_press.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chat_bottom_voice_press.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chat_bottom_voice_press.imageset/chat_bottom_voice_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chat_bottom_voice_press.imageset/chat_bottom_voice_press.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatfrom_bg_focused.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "chatfrom_bg_focused.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatfrom_bg_focused.imageset/chatfrom_bg_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatfrom_bg_focused.imageset/chatfrom_bg_focused.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatfrom_bg_normal.imageset/气泡-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatfrom_bg_normal.imageset/气泡-1.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatto_bg_focused.imageset/chatto_bg_focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatto_bg_focused.imageset/chatto_bg_focused.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/chatto_bg_normal.imageset/气泡-2(1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/chatto_bg_normal.imageset/气泡-2(1).png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/customerHead.imageset/客服头像@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/customerHead.imageset/客服头像@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/customerHead.imageset/客服头像@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/customerHead.imageset/客服头像@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/holdDownButton.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "holdDownButton@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/holdDownButton.imageset/holdDownButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/holdDownButton.imageset/holdDownButton@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/input-bar-background.imageset/input-bar-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/input-bar-background.imageset/input-bar-background.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/input-bar-background.imageset/input-bar-background@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/input-bar-background.imageset/input-bar-background@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/input-bar-flat.imageset/input-bar-flat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/input-bar-flat.imageset/input-bar-flat.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/input-bar-flat.imageset/input-bar-flat@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/input-bar-flat.imageset/input-bar-flat@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/map_located.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "map_located@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/map_located.imageset/map_located@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/map_located.imageset/map_located@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/overSession.imageset/结束对话@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/overSession.imageset/结束对话@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/overSession.imageset/结束对话@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/overSession.imageset/结束对话@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/prevent.imageset/阻止-默认@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/prevent.imageset/阻止-默认@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/prevent.imageset/阻止-默认@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/prevent.imageset/阻止-默认@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/preventH.imageset/阻止-点击@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/preventH.imageset/阻止-点击@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/preventH.imageset/阻止-点击@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/preventH.imageset/阻止-点击@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value0.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "说话图标-0.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value0.imageset/说话图标-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/recordValue/value0.imageset/说话图标-0.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "说话图标-1.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value1.imageset/说话图标-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/recordValue/value1.imageset/说话图标-1.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "说话图标-2.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value2.imageset/说话图标-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/recordValue/value2.imageset/说话图标-2.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "说话图标-3.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value3.imageset/说话图标-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/recordValue/value3.imageset/说话图标-3.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "说话图标-4.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value4.imageset/说话图标-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/recordValue/value4.imageset/说话图标-4.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "说话图标-5.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/value5.imageset/说话图标-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/recordValue/value5.imageset/说话图标-5.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/voicecancle.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "取消发送@3x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/recordValue/voicecancle.imageset/取消发送@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/recordValue/voicecancle.imageset/取消发送@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sendImage.imageset/图片-默认@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/sendImage.imageset/图片-默认@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sendImage.imageset/图片-默认@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/sendImage.imageset/图片-默认@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sendjudge.imageset/推送评价@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/sendjudge.imageset/推送评价@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sendjudge.imageset/推送评价@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/sendjudge.imageset/推送评价@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sharemore_location_ios7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "sharemore_location_ios7@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sharemore_location_ios7.imageset/sharemore_location_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/sharemore_location_ios7.imageset/sharemore_location_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sharemore_pic_ios7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "sharemore_pic_ios7@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sharemore_pic_ios7.imageset/sharemore_pic_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/sharemore_pic_ios7.imageset/sharemore_pic_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sharemore_video_ios7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "sharemore_video_ios7@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sharemore_video_ios7.imageset/sharemore_video_ios7@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/sharemore_video_ios7.imageset/sharemore_video_ios7@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sharemore_videovoip.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "scale" : "1x" 6 | }, 7 | { 8 | "idiom" : "universal", 9 | "filename" : "sharemore_videovoip@2x.png", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/sharemore_videovoip.imageset/sharemore_videovoip@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/sharemore_videovoip.imageset/sharemore_videovoip@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/toolbar_bottom_bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "toolbar_bottom_bar.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/toolbar_bottom_bar.imageset/toolbar_bottom_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/toolbar_bottom_bar.imageset/toolbar_bottom_bar.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/transfer.imageset/转接-默认@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/transfer.imageset/转接-默认@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/transfer.imageset/转接-默认@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/transfer.imageset/转接-默认@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/vistorHead.imageset/访客头像@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/vistorHead.imageset/访客头像@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/vistorHead.imageset/访客头像@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/vistorHead.imageset/访客头像@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/clearButtonImg.imageset/clearButtonImg-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/clearButtonImg.imageset/clearButtonImg-1.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/clearButtonImg.imageset/clearButtonImg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/clearButtonImg.imageset/clearButtonImg.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/clearButtonImg_h.imageset/clearButtonImg_h-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/clearButtonImg_h.imageset/clearButtonImg_h-1.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/clearButtonImg_h.imageset/clearButtonImg_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/clearButtonImg_h.imageset/clearButtonImg_h.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/commonWords.imageset/常用语-展开@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/commonWords.imageset/常用语-展开@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/commonWords.imageset/常用语-展开@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/commonWords.imageset/常用语-展开@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/searchLogo.imageset/searchLogo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/searchLogo.imageset/searchLogo-1.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/searchLogo.imageset/searchLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/searchLogo.imageset/searchLogo.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/subTitleH.imageset/子主题-展开@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/subTitleH.imageset/子主题-展开@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/subTitleH.imageset/子主题-展开@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/subTitleH.imageset/子主题-展开@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/subTitleN.imageset/子主题-收缩@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/subTitleN.imageset/子主题-收缩@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/subTitleN.imageset/子主题-收缩@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/subTitleN.imageset/子主题-收缩@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/textH.imageset/文本-点击@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/textH.imageset/文本-点击@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/textH.imageset/文本-点击@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/textH.imageset/文本-点击@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/textN.imageset/文本-默认@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/textN.imageset/文本-默认@2x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/textN.imageset/文本-默认@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/textN.imageset/文本-默认@3x.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f01.imageset/1f01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f01.imageset/1f01.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f01.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f01.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f02.imageset/1f02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f02.imageset/1f02.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f02.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f02.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f03.imageset/1f03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f03.imageset/1f03.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f03.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f03.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f04.imageset/1f04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f04.imageset/1f04.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f04.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f04.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f05.imageset/1f05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f05.imageset/1f05.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f05.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f05.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f06.imageset/1f06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f06.imageset/1f06.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f06.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f06.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f07.imageset/1f07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f07.imageset/1f07.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f07.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f07.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f08.imageset/1f08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f08.imageset/1f08.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f08.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f08.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f09.imageset/1f09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f09.imageset/1f09.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f09.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f09.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f10.imageset/1f10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f10.imageset/1f10.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f10.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f11.imageset/1f11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f11.imageset/1f11.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f11.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f11.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f12.imageset/1f12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f12.imageset/1f12.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f12.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f12.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f13.imageset/1f13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f13.imageset/1f13.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f13.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f13.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f14.imageset/1f14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f14.imageset/1f14.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f14.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f14.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f15.imageset/1f15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f15.imageset/1f15.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f15.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f15.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f16.imageset/1f16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f16.imageset/1f16.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f16.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f16.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f17.imageset/1f17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f17.imageset/1f17.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f17.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f17.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f18.imageset/1f18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f18.imageset/1f18.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f18.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f18.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f19.imageset/1f19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f19.imageset/1f19.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f19.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f19.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f20.imageset/1f20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f20.imageset/1f20.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f20.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f20.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f21.imageset/1f21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f21.imageset/1f21.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f21.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f21.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f22.imageset/1f22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f22.imageset/1f22.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f22.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f22.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f23.imageset/1f23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f23.imageset/1f23.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f23.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f23.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f24.imageset/1f24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f24.imageset/1f24.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f24.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f24.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f25.imageset/1f25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f25.imageset/1f25.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f25.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f25.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f26.imageset/1f26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f26.imageset/1f26.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f26.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f26.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f27.imageset/1f27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f27.imageset/1f27.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f27.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f27.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f28.imageset/1f28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f28.imageset/1f28.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f28.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f28.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f29.imageset/1f29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f29.imageset/1f29.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f29.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f29.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f30.imageset/1f30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f30.imageset/1f30.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f30.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f30.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f31.imageset/1f31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f31.imageset/1f31.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f31.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f31.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f32.imageset/1f32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f32.imageset/1f32.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f32.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f32.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f33.imageset/1f33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f33.imageset/1f33.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f33.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f33.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f34.imageset/1f34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f34.imageset/1f34.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f34.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f34.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f35.imageset/1f35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f35.imageset/1f35.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f35.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f35.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f36.imageset/1f36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f36.imageset/1f36.png -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/1f36.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1f36.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "scale" : "2x" 11 | }, 12 | { 13 | "idiom" : "universal", 14 | "scale" : "3x" 15 | } 16 | ], 17 | "info" : { 18 | "version" : 1, 19 | "author" : "xcode" 20 | } 21 | } -------------------------------------------------------------------------------- /weChat/Other/Assets.xcassets/sesionVC/常用语/表情/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /weChat/Other/Chat/Controller/LCMapViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCMapViewController.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/4/28. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCMapViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Chat/Model/LCAnnotation.m: -------------------------------------------------------------------------------- 1 | // 2 | // LCAnnotation.m 3 | // weChat 4 | // 5 | // Created by Lc on 16/4/20. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import "LCAnnotation.h" 10 | 11 | @implementation LCAnnotation 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Chat/Model/LCEmotion.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCEmotion.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/2/26. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCEmotion : NSObject 12 | /** 表情的文字描述 */ 13 | @property (nonatomic, copy) NSString *chs; 14 | /** 表情的png图片名 */ 15 | @property (nonatomic, copy) NSString *png; 16 | 17 | + (instancetype)emotionWithDict:(NSDictionary *)dict; 18 | @end 19 | -------------------------------------------------------------------------------- /weChat/Other/Chat/Model/LCTextAttachment.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCTextAttachment.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/2/26. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | @class LCEmotion; 11 | @interface LCTextAttachment : NSTextAttachment 12 | @property (nonatomic, strong) LCEmotion *emotion; 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Chat/Model/LCTextAttachment.m: -------------------------------------------------------------------------------- 1 | // 2 | // LCTextAttachment.m 3 | // weChat 4 | // 5 | // Created by Lc on 16/2/26. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import "LCTextAttachment.h" 10 | #import "LCEmotion.h" 11 | 12 | @implementation LCTextAttachment 13 | - (void)setEmotion:(LCEmotion *)emotion 14 | { 15 | _emotion = emotion; 16 | self.image = [UIImage imageNamed:[NSString stringWithFormat:@"%@", emotion.png]]; 17 | } 18 | @end 19 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/Photo/LCAssetCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCAssetCell.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/29. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCAssetCell : UICollectionViewCell 12 | @property (weak, nonatomic) UIImageView *imageView; 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/Photo/LCPhotoBrowseView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCPhotoBrowseView.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/30. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCPhotoBrowseView : UIView 12 | @property (assign, nonatomic) NSInteger index; 13 | @property (strong, nonatomic) NSArray *datasource; 14 | 15 | - (void)show; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/Toolbar/LCEmotionCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCEmotionCell.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/29. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCEmotionCell : UICollectionViewCell 12 | @property (strong, nonatomic) NSArray *emotions; 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/Toolbar/LCEmotionPopView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCEmotionPopView.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/4/27. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | @class LCEmotion; 11 | @interface LCEmotionPopView : UIView 12 | + (instancetype)popView; 13 | 14 | - (void)showFrom:(UIButton *)button emotion:(LCEmotion *)emotion; 15 | @end 16 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/Toolbar/LCEmotionView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCEmotionView.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/29. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | typedef void(^didclickSender)(); 11 | @interface LCEmotionView : UIView 12 | @property (copy, nonatomic) didclickSender didclickSenderEmotion; 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/chatCell/LCBannerCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCBannerCell.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/29. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCBannerCell : UITableViewCell 12 | @property (copy, nonatomic) NSString *time; 13 | 14 | @property (copy, nonatomic) NSString *alert; 15 | @end 16 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/chatCell/LCReceiverChatCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCReceiverChatCell.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/29. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import "LCBaseChatCell.h" 10 | 11 | @interface LCReceiverChatCell : LCBaseChatCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/chatCell/LCSenderChatCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSenderChatCell.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/29. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import "LCBaseChatCell.h" 10 | 11 | @interface LCSenderChatCell : LCBaseChatCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Chat/View/chatCell/LCShapedImageView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCShapedImageView.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/4/21. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCShapedImageView : UIImageView 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Controller/LCBaseViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCBaseViewController.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/12. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCBaseViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Controller/LCDetailViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCDetailViewController.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/13. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCDetailViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Controller/LCNavigationController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCNavigationController.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/3. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCNavigationController : UINavigationController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Controller/LCTabBarController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCTabBarController.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/3. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCTabBarController : UITabBarController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Resources/0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/0.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/1.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/10.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/11.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/12.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/13.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/14.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/15.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/16.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/17.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/18.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/19.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/2.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/20.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/21.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/22.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/23.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/24.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/25.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/26.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/3.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/4.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/5.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/6.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/7.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/8.jpg -------------------------------------------------------------------------------- /weChat/Other/Resources/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/Resources/9.jpg -------------------------------------------------------------------------------- /weChat/Other/Tool/LCHttpParamTool.m: -------------------------------------------------------------------------------- 1 | // 2 | // LCHttpParamTool.m 3 | // LC 4 | // 5 | // Created by Lc on 16/3/22. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import "LCHttpParamTool.h" 10 | 11 | @implementation LCHttpParamTool 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/Tool/LCHttpTool.m: -------------------------------------------------------------------------------- 1 | // 2 | // LCHttpTool.m 3 | // LC 4 | // 5 | // Created by Lc on 16/3/3. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import "LCHttpTool.h" 10 | 11 | @implementation LCHttpTool 12 | 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /weChat/Other/Tool/mqtt/libmosquitto/dummypthread.h: -------------------------------------------------------------------------------- 1 | #ifndef _DUMMYPTHREAD_H_ 2 | #define _DUMMYPTHREAD_H_ 3 | 4 | #define pthread_create(A, B, C, D) 5 | #define pthread_join(A, B) 6 | #define pthread_cancel(A) 7 | 8 | #define pthread_mutex_init(A, B) 9 | #define pthread_mutex_destroy(A) 10 | #define pthread_mutex_lock(A) 11 | #define pthread_mutex_unlock(A) 12 | 13 | #endif 14 | -------------------------------------------------------------------------------- /weChat/Other/View/LCTabBar.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCTabBar.h 3 | // hotwind 4 | // 5 | // Created by Lc on 15/7/3. 6 | // Copyright © 2015年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCTabBar : UITabBar 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/category/UIScrollView+LCCategory.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIScrollView+LCCategory.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/30. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIScrollView (LCCategory) 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Other/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // weChat 4 | // 5 | // Created by Lc on 16/3/29. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /weChat/Other/receive_msg.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/receive_msg.caf -------------------------------------------------------------------------------- /weChat/Other/sendmsgsuc.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/icoderRo/IRWeChat/ac791d624acc890b63f0ffa7fd75c73c7223e560/weChat/Other/sendmsgsuc.caf -------------------------------------------------------------------------------- /weChat/Other/zh-Hans.lproj/LaunchScreen.strings: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /weChat/Other/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- 1 | /* 2 | Localizable.strings 3 | weChat 4 | 5 | Created by Lc on 16/4/5. 6 | Copyright © 2016年 LC. All rights reserved. 7 | */ 8 | -------------------------------------------------------------------------------- /weChat/Plus(更多)/LCPlusButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCPlusButton.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/4. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCPlusButton : UIButton 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Plus(更多)/LCPlusViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCPlusViewController.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/4. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCPlusViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Session(会话)/LCDetailViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCDetailViewController.h 3 | // weChat 4 | // 5 | // Created by Lc on 16/5/12. 6 | // Copyright © 2016年 LC. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCDetailViewController : UITableViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Session(会话)/LCSessionListCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSessionListCell.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 16/1/18. 6 | // Copyright © 2016年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class LCSessionList; 12 | @interface LCSessionListCell : UITableViewCell 13 | 14 | @property (strong, nonatomic) LCSessionList *internalSessionList; 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /weChat/Session(会话)/LCSessionListViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSessionListViewController.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 16/1/18. 6 | // Copyright © 2016年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCSessionListViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Controller/LCSettingAboutUsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingAboutUsViewController.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 16/2/25. 6 | // Copyright © 2016年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCSettingAboutUsViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Controller/LCSettingViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingViewController.h 3 | // TaiYangHua 4 | // 5 | // Created by Vieene on 15/12/21. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCSettingViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Model/LCSettingAboutUsItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingAboutUsItem.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 16/2/25. 6 | // Copyright © 2016年 hhly. All rights reserved. 7 | // 8 | 9 | #import "LCSettingArrowItem.h" 10 | 11 | @interface LCSettingAboutUsItem : LCSettingArrowItem 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Model/LCSettingAboutUsItem.m: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingAboutUsItem.m 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 16/2/25. 6 | // Copyright © 2016年 hhly. All rights reserved. 7 | // 8 | 9 | #import "LCSettingAboutUsItem.h" 10 | 11 | @implementation LCSettingAboutUsItem 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Model/LCSettingArrowItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingArrowItem.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 15/12/24. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import "LCSettingItem.h" 10 | 11 | typedef void(^operation)(); 12 | 13 | @interface LCSettingArrowItem : LCSettingItem 14 | 15 | @property (copy, nonatomic) operation operation; 16 | @end 17 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Model/LCSettingArrowItem.m: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingArrowItem.m 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 15/12/24. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import "LCSettingArrowItem.h" 10 | 11 | @implementation LCSettingArrowItem 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Model/LCSettingStatusItem.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingStatusItem.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 15/12/25. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import "LCSettingItem.h" 10 | 11 | @interface LCSettingStatusItem : LCSettingItem 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Model/LCSettingStatusItem.m: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingStatusItem.m 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 15/12/25. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import "LCSettingStatusItem.h" 10 | 11 | @implementation LCSettingStatusItem 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/Model/LCSettingSwitchItem.m: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingSwitchItem.m 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 15/12/24. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import "LCSettingSwitchItem.h" 10 | 11 | @implementation LCSettingSwitchItem 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/View/AlertView/LCLoginoffView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCLoginoffView.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 16/1/15. 6 | // Copyright © 2016年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCLoginoffView : UIView 12 | - (void)show; 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/View/AlertView/LCSettingPasswordChangeView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingPasswordChangeView.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 15/12/28. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface LCSettingPasswordChangeView : UIView 12 | - (void)show; 13 | @end 14 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/View/LCLoginStatusView.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCLoginStatusView.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 15/12/24. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class LCSettingLoginItem; 12 | @interface LCLoginStatusView : UIView 13 | 14 | @property (nonatomic, strong) LCSettingLoginItem *loginStatusModel; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /weChat/Setting(设置)/View/LCSettingCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // LCSettingCell.h 3 | // TaiYangHua 4 | // 5 | // Created by Lc on 15/12/24. 6 | // Copyright © 2015年 hhly. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @class LCSettingItem; 12 | 13 | @interface LCSettingCell : UITableViewCell 14 | @property (nonatomic, strong) LCSettingItem *item; 15 | @end 16 | --------------------------------------------------------------------------------