├── .gitignore ├── NIM_iOS_Demo_v3 ├── NIMDemo │ ├── .idea │ │ ├── .name │ │ ├── NIMDemo.iml │ │ ├── inspectionProfiles │ │ │ └── Project_Default.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations │ │ │ └── NIM.xml │ │ ├── workspace.xml │ │ └── xcode.xml │ ├── NIM.xcodeproj │ │ ├── NIMDemo.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── NIM.xcscheme │ ├── NIM.xcworkspace │ │ └── contents.xcworkspacedata │ ├── NIMDemo │ │ ├── Classes │ │ │ ├── Category │ │ │ │ ├── NSData+NTES.h │ │ │ │ ├── NSData+NTES.m │ │ │ │ ├── NSDictionary+NTESJson.h │ │ │ │ ├── NSDictionary+NTESJson.m │ │ │ │ ├── NSString+NTES.h │ │ │ │ ├── NSString+NTES.m │ │ │ │ ├── UIActionSheet+NTESBlock.h │ │ │ │ ├── UIActionSheet+NTESBlock.m │ │ │ │ ├── UIAlertView+NTESBlock.h │ │ │ │ ├── UIAlertView+NTESBlock.m │ │ │ │ ├── UIImage+NTES.h │ │ │ │ ├── UIImage+NTES.m │ │ │ │ ├── UIImage+NTESColor.h │ │ │ │ ├── UIImage+NTESColor.m │ │ │ │ ├── UIResponder+NTESFirstResponder.h │ │ │ │ ├── UIResponder+NTESFirstResponder.m │ │ │ │ ├── UIScrollView+NTESDirection.h │ │ │ │ ├── UIScrollView+NTESDirection.m │ │ │ │ ├── UIScrollView+NTESPullToRefresh.h │ │ │ │ ├── UIScrollView+NTESPullToRefresh.m │ │ │ │ ├── UIView+NTES.h │ │ │ │ └── UIView+NTES.m │ │ │ ├── Common │ │ │ │ ├── Addons │ │ │ │ │ ├── SwizzlingDefine.h │ │ │ │ │ ├── UINavigationBar+Swizzling.h │ │ │ │ │ ├── UINavigationBar+Swizzling.m │ │ │ │ │ ├── UINavigationController+Swizzling.h │ │ │ │ │ ├── UINavigationController+Swizzling.m │ │ │ │ │ ├── UINavigationItem+Swizzling.h │ │ │ │ │ ├── UINavigationItem+Swizzling.m │ │ │ │ │ ├── UIView+Swizzling.h │ │ │ │ │ ├── UIView+Swizzling.m │ │ │ │ │ ├── UIViewController+Swizzling.h │ │ │ │ │ └── UIViewController+Swizzling.m │ │ │ │ ├── Controller │ │ │ │ │ ├── NTESMainTabController.h │ │ │ │ │ └── NTESMainTabController.m │ │ │ │ ├── Delegate │ │ │ │ │ ├── NTESNavigationAnimator.h │ │ │ │ │ ├── NTESNavigationAnimator.m │ │ │ │ │ ├── NTESNavigationHandler.h │ │ │ │ │ └── NTESNavigationHandler.m │ │ │ │ └── View │ │ │ │ │ ├── NTESAvatarImageView.h │ │ │ │ │ ├── NTESAvatarImageView.m │ │ │ │ │ ├── NTESBadgeView.h │ │ │ │ │ ├── NTESBadgeView.m │ │ │ │ │ ├── NTESFPSLabel.h │ │ │ │ │ ├── NTESFPSLabel.m │ │ │ │ │ ├── NTESMarginButton.h │ │ │ │ │ ├── NTESMarginButton.m │ │ │ │ │ ├── NTESPageView.h │ │ │ │ │ └── NTESPageView.m │ │ │ ├── LayoutConfig │ │ │ │ ├── NTESCellLayoutConfig.h │ │ │ │ ├── NTESCellLayoutConfig.m │ │ │ │ ├── NTESChatroomTextContentConfig.h │ │ │ │ ├── NTESChatroomTextContentConfig.m │ │ │ │ ├── NTESSessionCustomContentConfig.h │ │ │ │ └── NTESSessionCustomContentConfig.m │ │ │ ├── Sections │ │ │ │ ├── Card │ │ │ │ │ ├── View │ │ │ │ │ │ ├── NTESCardPortraitCell.h │ │ │ │ │ │ ├── NTESCardPortraitCell.m │ │ │ │ │ │ ├── NTESColorButtonCell.h │ │ │ │ │ │ └── NTESColorButtonCell.m │ │ │ │ │ └── ViewController │ │ │ │ │ │ ├── NTESJionTeamViewController.h │ │ │ │ │ │ ├── NTESJionTeamViewController.m │ │ │ │ │ │ ├── NTESJionTeamViewController.xib │ │ │ │ │ │ ├── NTESPersonalCardViewController.h │ │ │ │ │ │ ├── NTESPersonalCardViewController.m │ │ │ │ │ │ ├── NTESSearchTeamViewController.h │ │ │ │ │ │ ├── NTESSearchTeamViewController.m │ │ │ │ │ │ ├── NTESSearchTeamViewController.xib │ │ │ │ │ │ ├── NTESSessionCardViewController.h │ │ │ │ │ │ ├── NTESSessionCardViewController.m │ │ │ │ │ │ ├── NTESTeamListViewController.h │ │ │ │ │ │ ├── NTESTeamListViewController.m │ │ │ │ │ │ └── NTESTeamListViewController.xib │ │ │ │ ├── Chatroom │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── NTESChatroomConfig.h │ │ │ │ │ │ └── NTESChatroomConfig.m │ │ │ │ │ ├── Manager │ │ │ │ │ │ ├── NTESChatroomManager.h │ │ │ │ │ │ └── NTESChatroomManager.m │ │ │ │ │ ├── NTESChatroomListViewController.h │ │ │ │ │ ├── NTESChatroomListViewController.m │ │ │ │ │ ├── NTESChatroomMaker.h │ │ │ │ │ ├── NTESChatroomMaker.m │ │ │ │ │ ├── NTESChatroomMemberListViewController.h │ │ │ │ │ ├── NTESChatroomMemberListViewController.m │ │ │ │ │ ├── NTESChatroomMessageDataProvider.h │ │ │ │ │ ├── NTESChatroomMessageDataProvider.m │ │ │ │ │ ├── NTESChatroomViewController.h │ │ │ │ │ ├── NTESChatroomViewController.m │ │ │ │ │ ├── NTESLiveInfoViewController.h │ │ │ │ │ ├── NTESLiveInfoViewController.m │ │ │ │ │ ├── NTESLiveViewController.h │ │ │ │ │ ├── NTESLiveViewController.m │ │ │ │ │ └── View │ │ │ │ │ │ ├── Cell │ │ │ │ │ │ ├── NTESChatroomListCell.h │ │ │ │ │ │ ├── NTESChatroomListCell.m │ │ │ │ │ │ ├── NTESChatroomMemberCell.h │ │ │ │ │ │ └── NTESChatroomMemberCell.m │ │ │ │ │ │ ├── NTESChatroomSegmentedControl.h │ │ │ │ │ │ ├── NTESChatroomSegmentedControl.m │ │ │ │ │ │ ├── NTESLiveActionView.h │ │ │ │ │ │ ├── NTESLiveActionView.m │ │ │ │ │ │ ├── NTESLiveBroadcastView.h │ │ │ │ │ │ ├── NTESLiveBroadcastView.m │ │ │ │ │ │ ├── NTESLiveMasterInfoView.h │ │ │ │ │ │ ├── NTESLiveMasterInfoView.m │ │ │ │ │ │ └── SessionContentView │ │ │ │ │ │ ├── NTESChatroomTextContentView.h │ │ │ │ │ │ └── NTESChatroomTextContentView.m │ │ │ │ ├── Contact │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── NTESCustomSysNotificationSender.h │ │ │ │ │ │ └── NTESCustomSysNotificationSender.m │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── NTESContactDataMember.h │ │ │ │ │ │ ├── NTESContactDataMember.m │ │ │ │ │ │ ├── NTESGroupedContacts.h │ │ │ │ │ │ ├── NTESGroupedContacts.m │ │ │ │ │ │ ├── NTESGroupedDataCollection.h │ │ │ │ │ │ ├── NTESGroupedDataCollection.m │ │ │ │ │ │ ├── NTESGroupedUsrInfo.h │ │ │ │ │ │ └── NTESGroupedUsrInfo.m │ │ │ │ │ ├── View │ │ │ │ │ │ ├── NTESContactDataCell.h │ │ │ │ │ │ ├── NTESContactDataCell.m │ │ │ │ │ │ ├── NTESContactDefines.h │ │ │ │ │ │ ├── NTESContactUtilCell.h │ │ │ │ │ │ ├── NTESContactUtilCell.m │ │ │ │ │ │ ├── NTESContactUtilItem.h │ │ │ │ │ │ ├── NTESContactUtilItem.m │ │ │ │ │ │ ├── NTESUserListCell.h │ │ │ │ │ │ └── NTESUserListCell.m │ │ │ │ │ └── ViewController │ │ │ │ │ │ ├── Contact │ │ │ │ │ │ ├── NTESBlackListViewController.h │ │ │ │ │ │ ├── NTESBlackListViewController.m │ │ │ │ │ │ ├── NTESContactAddFriendViewController.h │ │ │ │ │ │ ├── NTESContactAddFriendViewController.m │ │ │ │ │ │ ├── NTESContactViewController.h │ │ │ │ │ │ ├── NTESContactViewController.m │ │ │ │ │ │ └── NTESContactViewController.xib │ │ │ │ │ │ └── Notification │ │ │ │ │ │ ├── DB │ │ │ │ │ │ ├── NTESCustomNotificationDB.h │ │ │ │ │ │ └── NTESCustomNotificationDB.m │ │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── NTESCustomNotificationObject.h │ │ │ │ │ │ └── NTESCustomNotificationObject.m │ │ │ │ │ │ ├── NTESCustomSysNotificationViewController.h │ │ │ │ │ │ ├── NTESCustomSysNotificationViewController.m │ │ │ │ │ │ ├── NTESCustomSysNotificationViewController.xib │ │ │ │ │ │ ├── NTESSystemNotificationCell.h │ │ │ │ │ │ ├── NTESSystemNotificationCell.m │ │ │ │ │ │ ├── NTESSystemNotificationCell.xib │ │ │ │ │ │ ├── NTESSystemNotificationViewController.h │ │ │ │ │ │ ├── NTESSystemNotificationViewController.m │ │ │ │ │ │ └── NTESSystemNotificationViewController.xib │ │ │ │ ├── Find │ │ │ │ │ ├── FindViewController.h │ │ │ │ │ ├── FindViewController.m │ │ │ │ │ ├── FindViewController.xib │ │ │ │ │ └── View │ │ │ │ │ │ ├── WebViewController.h │ │ │ │ │ │ └── WebViewController.m │ │ │ │ ├── Login │ │ │ │ │ ├── Manager │ │ │ │ │ │ ├── NTESLoginManager.h │ │ │ │ │ │ └── NTESLoginManager.m │ │ │ │ │ └── ViewController │ │ │ │ │ │ ├── NTESLoginViewController.h │ │ │ │ │ │ ├── NTESLoginViewController.m │ │ │ │ │ │ ├── NTESLoginViewController.xib │ │ │ │ │ │ ├── NTESRegisterViewController.h │ │ │ │ │ │ ├── NTESRegisterViewController.m │ │ │ │ │ │ └── NTESRegisterViewController.xib │ │ │ │ ├── Profile │ │ │ │ │ ├── ProfileViewController.h │ │ │ │ │ ├── ProfileViewController.m │ │ │ │ │ ├── ProfileViewController.xib │ │ │ │ │ └── View │ │ │ │ │ │ ├── QrCodeView.h │ │ │ │ │ │ └── QrCodeView.m │ │ │ │ ├── Session │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── NTESSessionConfig.h │ │ │ │ │ │ └── NTESSessionConfig.m │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Object │ │ │ │ │ │ │ ├── NTESChartletAttachment.h │ │ │ │ │ │ │ ├── NTESChartletAttachment.m │ │ │ │ │ │ │ ├── NTESCustomAttachmentDecoder.h │ │ │ │ │ │ │ ├── NTESCustomAttachmentDecoder.m │ │ │ │ │ │ │ ├── NTESCustomAttachmentDefines.h │ │ │ │ │ │ │ ├── NTESJanKenPonAttachment.h │ │ │ │ │ │ │ ├── NTESJanKenPonAttachment.m │ │ │ │ │ │ │ ├── NTESSearchLocalHistoryObject.h │ │ │ │ │ │ │ ├── NTESSearchLocalHistoryObject.m │ │ │ │ │ │ │ ├── NTESSessionFileStatusProtocol.h │ │ │ │ │ │ │ ├── NTESSessionMsgConverter.h │ │ │ │ │ │ │ ├── NTESSessionMsgConverter.m │ │ │ │ │ │ │ ├── NTESSnapchatAttachment.h │ │ │ │ │ │ │ ├── NTESSnapchatAttachment.m │ │ │ │ │ │ │ ├── NTESWhiteboardAttachment.h │ │ │ │ │ │ │ └── NTESWhiteboardAttachment.m │ │ │ │ │ ├── View │ │ │ │ │ │ └── SessionCell │ │ │ │ │ │ │ ├── Search │ │ │ │ │ │ │ ├── NTESSearchCellLayoutConstant.h │ │ │ │ │ │ │ ├── NTESSearchMessageContentCell.h │ │ │ │ │ │ │ ├── NTESSearchMessageContentCell.m │ │ │ │ │ │ │ ├── NTESSearchMessageEntraceCell.h │ │ │ │ │ │ │ └── NTESSearchMessageEntraceCell.m │ │ │ │ │ │ │ └── SessionContentView │ │ │ │ │ │ │ ├── NTESSessionChartletContentView.h │ │ │ │ │ │ │ ├── NTESSessionChartletContentView.m │ │ │ │ │ │ │ ├── NTESSessionJankenponContentView.h │ │ │ │ │ │ │ ├── NTESSessionJankenponContentView.m │ │ │ │ │ │ │ ├── NTESSessionSnapchatContentView.h │ │ │ │ │ │ │ ├── NTESSessionSnapchatContentView.m │ │ │ │ │ │ │ ├── NTESSessionTipContentView.h │ │ │ │ │ │ │ ├── NTESSessionTipContentView.m │ │ │ │ │ │ │ ├── NTESSessionWhiteBoardContentView.h │ │ │ │ │ │ │ └── NTESSessionWhiteBoardContentView.m │ │ │ │ │ └── ViewController │ │ │ │ │ │ ├── Audio │ │ │ │ │ │ ├── NTESAudio2TextViewController.h │ │ │ │ │ │ ├── NTESAudio2TextViewController.m │ │ │ │ │ │ └── NTESAudio2TextViewController.xib │ │ │ │ │ │ ├── File │ │ │ │ │ │ ├── NTESFilePreViewController.h │ │ │ │ │ │ ├── NTESFilePreViewController.m │ │ │ │ │ │ ├── NTESFilePreViewController.xib │ │ │ │ │ │ ├── NTESFileTransSelectViewController.h │ │ │ │ │ │ ├── NTESFileTransSelectViewController.m │ │ │ │ │ │ └── NTESFileTransSelectViewController.xib │ │ │ │ │ │ ├── Gallery │ │ │ │ │ │ ├── NTESGalleryViewController.h │ │ │ │ │ │ ├── NTESGalleryViewController.m │ │ │ │ │ │ └── NTESGalleryViewController.xib │ │ │ │ │ │ ├── NTESSessionLocalHistoryViewController.h │ │ │ │ │ │ ├── NTESSessionLocalHistoryViewController.m │ │ │ │ │ │ ├── NTESSessionPeekViewController.h │ │ │ │ │ │ ├── NTESSessionPeekViewController.m │ │ │ │ │ │ ├── NTESSessionRemoteHistoryViewController.h │ │ │ │ │ │ ├── NTESSessionRemoteHistoryViewController.m │ │ │ │ │ │ ├── NTESSessionViewController.h │ │ │ │ │ │ ├── NTESSessionViewController.m │ │ │ │ │ │ ├── RealTimeSession │ │ │ │ │ │ ├── NTESWhiteboardViewController.h │ │ │ │ │ │ ├── NTESWhiteboardViewController.m │ │ │ │ │ │ ├── NTESWhiteboardViewController.xib │ │ │ │ │ │ └── View │ │ │ │ │ │ │ ├── NTESWhiteboardDrawView.h │ │ │ │ │ │ │ └── NTESWhiteboardDrawView.m │ │ │ │ │ │ ├── Video │ │ │ │ │ │ ├── NTESVideoViewController.h │ │ │ │ │ │ ├── NTESVideoViewController.m │ │ │ │ │ │ └── NTESVideoViewController.xib │ │ │ │ │ │ └── VideoChat │ │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── NetCallChatInfo.h │ │ │ │ │ │ └── NetCallChatInfo.m │ │ │ │ │ │ ├── NTESAudioChatViewController.h │ │ │ │ │ │ ├── NTESAudioChatViewController.m │ │ │ │ │ │ ├── NTESAudioChatViewController.xib │ │ │ │ │ │ ├── NTESNetChatViewController.h │ │ │ │ │ │ ├── NTESNetChatViewController.m │ │ │ │ │ │ ├── NTESVideoChatViewController.h │ │ │ │ │ │ ├── NTESVideoChatViewController.m │ │ │ │ │ │ ├── NTESVideoChatViewController.xib │ │ │ │ │ │ └── View │ │ │ │ │ │ ├── NTESGLView.h │ │ │ │ │ │ ├── NTESGLView.m │ │ │ │ │ │ ├── NTESRecordSelectView.h │ │ │ │ │ │ ├── NTESRecordSelectView.m │ │ │ │ │ │ ├── NTESVideoChatNetStatusView.h │ │ │ │ │ │ └── NTESVideoChatNetStatusView.m │ │ │ │ ├── SessionList │ │ │ │ │ ├── View │ │ │ │ │ │ ├── MutiCilentsCell │ │ │ │ │ │ │ ├── NTESMutiClientsCell.h │ │ │ │ │ │ │ ├── NTESMutiClientsCell.m │ │ │ │ │ │ │ └── NTESMutiClientsCell.xib │ │ │ │ │ │ └── SessionListHeader │ │ │ │ │ │ │ ├── NTESListHeader.h │ │ │ │ │ │ │ ├── NTESListHeader.m │ │ │ │ │ │ │ ├── NTESMutiClientsHeaderView.h │ │ │ │ │ │ │ ├── NTESMutiClientsHeaderView.m │ │ │ │ │ │ │ ├── NTESTextHeaderView.h │ │ │ │ │ │ │ └── NTESTextHeaderView.m │ │ │ │ │ └── ViewController │ │ │ │ │ │ ├── NTESClientsTableViewController.h │ │ │ │ │ │ ├── NTESClientsTableViewController.m │ │ │ │ │ │ ├── NTESSessionListViewController.h │ │ │ │ │ │ └── NTESSessionListViewController.m │ │ │ │ ├── Setting │ │ │ │ │ ├── Log │ │ │ │ │ │ ├── NTESLogManager.h │ │ │ │ │ │ ├── NTESLogManager.m │ │ │ │ │ │ ├── NTESLogUploader.h │ │ │ │ │ │ ├── NTESLogUploader.m │ │ │ │ │ │ ├── NTESLogViewController.h │ │ │ │ │ │ ├── NTESLogViewController.m │ │ │ │ │ │ └── NTESLogViewController.xib │ │ │ │ │ ├── NTESAboutViewController.h │ │ │ │ │ ├── NTESAboutViewController.m │ │ │ │ │ ├── NTESAboutViewController.xib │ │ │ │ │ ├── NTESSettingViewController.h │ │ │ │ │ ├── NTESSettingViewController.m │ │ │ │ │ ├── NTESSettingViewController.xib │ │ │ │ │ ├── NetDetect │ │ │ │ │ │ ├── NTESNetDetectViewController.h │ │ │ │ │ │ ├── NTESNetDetectViewController.m │ │ │ │ │ │ └── NTESNetDetectViewController.xib │ │ │ │ │ ├── NoDisturb │ │ │ │ │ │ ├── NTESNoDisturbSettingViewController.h │ │ │ │ │ │ ├── NTESNoDisturbSettingViewController.m │ │ │ │ │ │ ├── NTESNoDisturbSettingViewController.xib │ │ │ │ │ │ └── View │ │ │ │ │ │ │ ├── NTESNoDisturbTimeCell.h │ │ │ │ │ │ │ ├── NTESNoDisturbTimeCell.m │ │ │ │ │ │ │ ├── NTESTextSettingCell.h │ │ │ │ │ │ │ └── NTESTextSettingCell.m │ │ │ │ │ ├── UInfo │ │ │ │ │ │ ├── NTESAliasSettingViewController.h │ │ │ │ │ │ ├── NTESAliasSettingViewController.m │ │ │ │ │ │ ├── NTESBirthSettingViewController.h │ │ │ │ │ │ ├── NTESBirthSettingViewController.m │ │ │ │ │ │ ├── NTESEmailSettingViewController.h │ │ │ │ │ │ ├── NTESEmailSettingViewController.m │ │ │ │ │ │ ├── NTESGenderSettingViewController.h │ │ │ │ │ │ ├── NTESGenderSettingViewController.m │ │ │ │ │ │ ├── NTESMobileSettingViewController.h │ │ │ │ │ │ ├── NTESMobileSettingViewController.m │ │ │ │ │ │ ├── NTESNickNameSettingViewController.h │ │ │ │ │ │ ├── NTESNickNameSettingViewController.m │ │ │ │ │ │ ├── NTESSignSettingViewController.h │ │ │ │ │ │ ├── NTESSignSettingViewController.m │ │ │ │ │ │ ├── NTESUserInfoSettingViewController.h │ │ │ │ │ │ ├── NTESUserInfoSettingViewController.m │ │ │ │ │ │ └── NTESUserInfoSettingViewController.xib │ │ │ │ │ └── View │ │ │ │ │ │ ├── NTESBirthPickerView.h │ │ │ │ │ │ ├── NTESBirthPickerView.m │ │ │ │ │ │ ├── NTESSettingCheckCell.h │ │ │ │ │ │ ├── NTESSettingCheckCell.m │ │ │ │ │ │ ├── NTESSettingPortraitCell.h │ │ │ │ │ │ ├── NTESSettingPortraitCell.m │ │ │ │ │ │ ├── NTESSettingPortraitInfoCell.h │ │ │ │ │ │ ├── NTESSettingPortraitInfoCell.m │ │ │ │ │ │ ├── NTESSettingSwitcherCell.h │ │ │ │ │ │ └── NTESSettingSwitcherCell.m │ │ │ │ └── Subscribe │ │ │ │ │ ├── NTESSubscribeDefine.h │ │ │ │ │ ├── NTESSubscribeManager.h │ │ │ │ │ └── NTESSubscribeManager.m │ │ │ ├── Service │ │ │ │ ├── NTESDemoFetchChatroomTask.h │ │ │ │ ├── NTESDemoFetchChatroomTask.m │ │ │ │ ├── NTESDemoRegisterTask.h │ │ │ │ ├── NTESDemoRegisterTask.m │ │ │ │ ├── NTESDemoService.h │ │ │ │ ├── NTESDemoService.m │ │ │ │ └── NTESDemoServiceTask.h │ │ │ └── Util │ │ │ │ ├── NTESBundleSetting.h │ │ │ │ ├── NTESBundleSetting.m │ │ │ │ ├── NTESCADisplayLinkHolder.h │ │ │ │ ├── NTESCADisplayLinkHolder.m │ │ │ │ ├── NTESClientUtil.h │ │ │ │ ├── NTESClientUtil.m │ │ │ │ ├── NTESDemoConfig.h │ │ │ │ ├── NTESDemoConfig.m │ │ │ │ ├── NTESDevice.h │ │ │ │ ├── NTESDevice.m │ │ │ │ ├── NTESFileLocationHelper.h │ │ │ │ ├── NTESFileLocationHelper.m │ │ │ │ ├── NTESNotificationCenter.h │ │ │ │ ├── NTESNotificationCenter.m │ │ │ │ ├── NTESSDKConfigDelegate.h │ │ │ │ ├── NTESSDKConfigDelegate.m │ │ │ │ ├── NTESService.h │ │ │ │ ├── NTESService.m │ │ │ │ ├── NTESSessionUtil.h │ │ │ │ ├── NTESSessionUtil.m │ │ │ │ ├── NTESTimerHolder.h │ │ │ │ ├── NTESTimerHolder.m │ │ │ │ ├── NTESUserUtil.h │ │ │ │ ├── NTESUserUtil.m │ │ │ │ └── Spelling │ │ │ │ ├── NTESPinyinConverter.h │ │ │ │ ├── NTESPinyinConverter.m │ │ │ │ ├── NTESSpellingCenter.h │ │ │ │ └── NTESSpellingCenter.m │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-60@2x.png │ │ │ │ ├── Icon-60@3x.png │ │ │ │ ├── Icon-Small@2x-1.png │ │ │ │ ├── Icon-Small@3x.png │ │ │ │ ├── Icon-Spotlight-40.png │ │ │ │ ├── Icon-Spotlight-40@2x-1.png │ │ │ │ └── Icon-Spotlight-40@3x.png │ │ │ ├── Avatar │ │ │ │ ├── 1.imageset │ │ │ │ │ ├── 1.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 10.imageset │ │ │ │ │ ├── 10.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 2.imageset │ │ │ │ │ ├── 2.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 3.imageset │ │ │ │ │ ├── 3.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 4.imageset │ │ │ │ │ ├── 4.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 5.imageset │ │ │ │ │ ├── 5.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 6.imageset │ │ │ │ │ ├── 6.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 7.imageset │ │ │ │ │ ├── 7.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 8.imageset │ │ │ │ │ ├── 8.pdf │ │ │ │ │ └── Contents.json │ │ │ │ ├── 9.imageset │ │ │ │ │ ├── 9.pdf │ │ │ │ │ └── Contents.json │ │ │ │ └── avatar_team.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── avatar_team@2x.png │ │ │ ├── Chatroom │ │ │ │ ├── Contents.json │ │ │ │ ├── Cover │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chatroom_cover_page_0.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chatroom_cover_page_8@2x.png │ │ │ │ │ │ └── chatroom_cover_page_8@3x.png │ │ │ │ │ ├── chatroom_cover_page_1.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chatroom_cover_page_1@2x.png │ │ │ │ │ │ └── chatroom_cover_page_1@3x.png │ │ │ │ │ ├── chatroom_cover_page_2.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chatroom_cover_page_2@2x.png │ │ │ │ │ │ └── chatroom_cover_page_2@3x.png │ │ │ │ │ ├── chatroom_cover_page_3.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chatroom_cover_page_3@2x.png │ │ │ │ │ │ └── chatroom_cover_page_3@3x.png │ │ │ │ │ ├── chatroom_cover_page_4.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chatroom_cover_page_4@2x.png │ │ │ │ │ │ └── chatroom_cover_page_4@3x.png │ │ │ │ │ ├── chatroom_cover_page_5.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chatroom_cover_page_5@2x.png │ │ │ │ │ │ └── chatroom_cover_page_5@3x.png │ │ │ │ │ ├── chatroom_cover_page_6.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chatroom_cover_page_6@2x.png │ │ │ │ │ │ └── chatroom_cover_page_6@3x.png │ │ │ │ │ └── chatroom_cover_page_7.imageset │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── chatroom_cover_page_7@2x.png │ │ │ │ │ │ └── chatroom_cover_page_7@3x.png │ │ │ │ ├── chatroom_announce.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chatroom_announce@2x.png │ │ │ │ │ └── chatroom_announce@3x.png │ │ │ │ ├── chatroom_back_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chatroom_back_normal@2x.png │ │ │ │ │ └── chatroom_back_normal@3x.png │ │ │ │ ├── chatroom_back_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chatroom_back_selected@2x.png │ │ │ │ │ └── chatroom_back_selected@3x.png │ │ │ │ ├── chatroom_onlinecount_room.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chatroom_onlinecount_room@2x.png │ │ │ │ │ └── chatroom_onlinecount_room@3x.png │ │ │ │ ├── chatroom_onlinecount_roomlist.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chatroom_onlinecount_roomlist@2x.png │ │ │ │ │ └── chatroom_onlinecount_roomlist@3x.png │ │ │ │ ├── chatroom_role_manager.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chatroom_role_manager@2x.png │ │ │ │ │ └── chatroom_role_manager@3x.png │ │ │ │ ├── chatroom_role_master.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── chatroom_role_master@2x.png │ │ │ │ │ └── chatroom_role_master@3x.png │ │ │ │ ├── icon_chatroom_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── tabbar_discover@2x.png │ │ │ │ │ └── tabbar_discover@3x.png │ │ │ │ ├── icon_chatroom_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── tabbar_discoverHL@2x.png │ │ │ │ │ └── tabbar_discoverHL@3x.png │ │ │ │ └── icon_chatroom_seg_bkg.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_chatroom_seg_bkg@2x.png │ │ │ │ │ └── icon_chatroom_seg_bkg@3x.png │ │ │ ├── Contact │ │ │ │ ├── contact_bg.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── contact_bg@2x.png │ │ │ │ ├── contact_head_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── contact_head_selected@2x.png │ │ │ │ ├── contact_select_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── contact_select_normal@2x.png │ │ │ │ ├── contact_select_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── contact_select_pressed@2x.png │ │ │ │ ├── icon_accessory_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_accessory_normal@2x.png │ │ │ │ │ └── icon_accessory_normal@3x.png │ │ │ │ ├── icon_accessory_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_accessory_pressed@2x.png │ │ │ │ │ └── icon_accessory_pressed@3x.png │ │ │ │ └── icon_accessory_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_accessory_selected@2x.png │ │ │ │ │ └── icon_accessory_selected@3x.png │ │ │ ├── Contents.json │ │ │ ├── Find │ │ │ │ ├── Contents.json │ │ │ │ ├── find_bottle.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ff_IconBottle.png │ │ │ │ │ ├── ff_IconBottle@2x.png │ │ │ │ │ └── ff_IconBottle@3x.png │ │ │ │ ├── find_friends.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ff_IconShowAlbum.png │ │ │ │ │ ├── ff_IconShowAlbum@2x.png │ │ │ │ │ └── ff_IconShowAlbum@3x.png │ │ │ │ ├── find_game.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── MoreGame.png │ │ │ │ │ ├── MoreGame@2x.png │ │ │ │ │ └── MoreGame@3x.png │ │ │ │ ├── find_nearby.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ff_IconLocationService.png │ │ │ │ │ ├── ff_IconLocationService@2x.png │ │ │ │ │ └── ff_IconLocationService@3x.png │ │ │ │ ├── find_programs.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── find_programs@2x.png │ │ │ │ ├── find_scan.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ff_IconQRCode.png │ │ │ │ │ ├── ff_IconQRCode@2x.png │ │ │ │ │ └── ff_IconQRCode@3x.png │ │ │ │ ├── find_shake.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── ff_IconShake.png │ │ │ │ │ ├── ff_IconShake@2x.png │ │ │ │ │ └── ff_IconShake@3x.png │ │ │ │ └── find_shopping.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── CreditCard_ShoppingBag@2x.png │ │ │ ├── Group │ │ │ │ ├── icon_add_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_add_normal@2x.png │ │ │ │ ├── icon_add_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_add_pressed@2x.png │ │ │ │ ├── icon_cell_red_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_cell_red_normal@2x.png │ │ │ │ ├── icon_cell_red_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_cell_red_pressed@2x.png │ │ │ │ ├── icon_remove_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_remove_normal@2x.png │ │ │ │ ├── icon_remove_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_remove_pressed@2x.png │ │ │ │ ├── icon_team_creator.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_team_creator@2x.png │ │ │ │ └── icon_team_manager.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── icon_team_manager@2x.png │ │ │ ├── Input │ │ │ │ ├── btn_dot_gray.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── btn_dot_gray@2x.png │ │ │ │ └── btn_dot_green.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── btn_dot_green@2x.png │ │ │ ├── LaunchImage.launchimage │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage-568h@2x-1.png │ │ │ │ ├── LaunchImage-568h@2x.png │ │ │ │ ├── LaunchImage-800-667h@2x.png │ │ │ │ ├── LaunchImage-800-Portrait-736h@3x.png │ │ │ │ ├── LaunchImage@2x-1.png │ │ │ │ └── LaunchImage@2x.png │ │ │ ├── Login │ │ │ │ ├── login_bg.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── login_bg@2x.png │ │ │ │ ├── login_btn_done_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── login_btn_done_normal@2x.png │ │ │ │ ├── login_btn_done_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── login_btn_done_pressed@2x.png │ │ │ │ ├── login_icon_clear.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── login_icon_clear@2x.png │ │ │ │ ├── login_icon_pwd_.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── login_icon_pwd_@2x.png │ │ │ │ ├── login_icon_usr_.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── login_icon_usr_@2x.png │ │ │ │ └── login_logo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── logo@2x.png │ │ │ │ │ └── logo@3x.png │ │ │ ├── Netcall │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_bg_video_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── btn_bg_video_normal@2x.png │ │ │ │ ├── btn_bg_video_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── btn_bg_video_pressed@2x.png │ │ │ │ ├── btn_bg_voice_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── btn_bg_voice_normal@2x.png │ │ │ │ ├── btn_bg_voice_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── btn_bg_voice_pressed@2x.png │ │ │ │ ├── btn_camera_disabled.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_camera_disabled@2x.png │ │ │ │ │ └── btn_camera_disabled@3x.png │ │ │ │ ├── btn_camera_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_camera_normal@2x.png │ │ │ │ │ └── btn_camera_normal@3x.png │ │ │ │ ├── btn_camera_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_camera_pressed@2x.png │ │ │ │ │ └── btn_camera_pressed@3x.png │ │ │ │ ├── btn_mute_disable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_mute_disable@2x.png │ │ │ │ │ └── btn_mute_disable@3x.png │ │ │ │ ├── btn_mute_highlight.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_mute_highlight@2x.png │ │ │ │ │ └── btn_mute_highlight@3x.png │ │ │ │ ├── btn_mute_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_mute_normal@2x.png │ │ │ │ │ └── btn_mute_normal@3x.png │ │ │ │ ├── btn_mute_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_mute_pressed@2x.png │ │ │ │ │ └── btn_mute_pressed@3x.png │ │ │ │ ├── btn_record_disable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_record_disable@2x.png │ │ │ │ │ └── btn_record_disable@3x.png │ │ │ │ ├── btn_record_highlight.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_record_highlight@2x.png │ │ │ │ │ └── btn_record_highlight@3x.png │ │ │ │ ├── btn_record_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_record_normal@2x.png │ │ │ │ │ └── btn_record_normal@3x.png │ │ │ │ ├── btn_record_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_record_pressed@2x.png │ │ │ │ │ └── btn_record_pressed@3x.png │ │ │ │ ├── btn_speaker_disable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_speaker_disable@2x.png │ │ │ │ │ └── btn_speaker_disable@3x.png │ │ │ │ ├── btn_speaker_highlight.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_speaker_highlight@2x.png │ │ │ │ │ └── btn_speaker_highlight@3x.png │ │ │ │ ├── btn_speaker_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_speaker_normal@2x.png │ │ │ │ │ └── btn_speaker_normal@3x.png │ │ │ │ ├── btn_speaker_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_speaker_pressed@2x.png │ │ │ │ │ └── btn_speaker_pressed@3x.png │ │ │ │ ├── btn_switch_av.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── btn_switch_av@2x.png │ │ │ │ ├── btn_turn_disabled.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_turn_disabled@2x.png │ │ │ │ │ └── btn_turn_disabled@3x.png │ │ │ │ ├── btn_turn_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_turn_normal@2x.png │ │ │ │ │ └── btn_turn_normal@3x.png │ │ │ │ ├── btn_turn_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_turn_pressed@2x.png │ │ │ │ │ └── btn_turn_pressed@3x.png │ │ │ │ ├── btn_vcancel_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_vcancel_normal@2x.png │ │ │ │ │ └── btn_vcancel_normal@3x.png │ │ │ │ ├── btn_vcancel_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_vcancel_pressed@2x.png │ │ │ │ │ └── btn_vcancel_pressed@3x.png │ │ │ │ ├── btn_voice_disable.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_voice_disable@2x.png │ │ │ │ │ └── btn_voice_disable@3x.png │ │ │ │ ├── btn_vrecord_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_vrecord_normal@2x.png │ │ │ │ │ └── btn_vrecord_normal@3x.png │ │ │ │ ├── btn_vrecord_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_vrecord_pressed@2x.png │ │ │ │ │ └── btn_vrecord_pressed@3x.png │ │ │ │ ├── btn_vrecord_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_vrecord_selected@2x.png │ │ │ │ │ └── btn_vrecord_selected@3x.png │ │ │ │ ├── btn_vvoice_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_vvoice_normal@2x.png │ │ │ │ │ └── btn_vvoice_normal@3x.png │ │ │ │ ├── btn_vvoice_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── btn_vvoice_pressed@2x.png │ │ │ │ │ └── btn_vvoice_pressed@3x.png │ │ │ │ ├── ic_switch_video.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_switch_video@2x.png │ │ │ │ ├── ic_switch_voice.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── ic_switch_voice@2x.png │ │ │ │ ├── netcall_bkg.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── netcall_bkg@2x.png │ │ │ │ ├── netstat_0.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── netstat_0@2x.png │ │ │ │ ├── netstat_1.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── netstat_1@2x.png │ │ │ │ ├── netstat_2.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── netstat_2@2x.png │ │ │ │ └── netstat_3.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── netstat_3@2x.png │ │ │ ├── Profile │ │ │ │ ├── Contents.json │ │ │ │ ├── profile_cardpackage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── MyCardPackageIcon@2x.png │ │ │ │ ├── profile_collection.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── MoreMyFavorites.png │ │ │ │ │ ├── MoreMyFavorites@2x.png │ │ │ │ │ └── MoreMyFavorites@3x.png │ │ │ │ ├── profile_expression.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── MoreExpressionShops@2x.png │ │ │ │ │ └── MoreExpressionShops@3x.png │ │ │ │ ├── profile_money.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── MoreMyBankCard.png │ │ │ │ │ ├── MoreMyBankCard@2x.png │ │ │ │ │ └── MoreMyBankCard@3x.png │ │ │ │ ├── profile_photo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── MoreMyAlbum.png │ │ │ │ │ ├── MoreMyAlbum@2x.png │ │ │ │ │ └── MoreMyAlbum@3x.png │ │ │ │ ├── profile_qrcode.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── qrcode.png │ │ │ │ └── profile_setting.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── MoreSetting@2x.png │ │ │ │ │ └── MoreSetting@3x.png │ │ │ ├── Setting │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_checkbox_background.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_checkbox_background@2x.png │ │ │ │ │ └── icon_checkbox_background@3x.png │ │ │ │ ├── icon_checkbox_selected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_checkbox_selected@2x.png │ │ │ │ │ └── icon_checkbox_selected@3x.png │ │ │ │ └── icon_checkbox_unselected.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_checkbox_unselected@2x.png │ │ │ │ │ └── icon_checkbox_unselected@3x.png │ │ │ ├── Whiteboard │ │ │ │ ├── btn_whiteboard_invite_normal.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_baiban@2x.png │ │ │ │ │ └── icon_baiban@3x.png │ │ │ │ ├── btn_whiteboard_invite_pressed.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_baiban_pressed_@2x.png │ │ │ │ │ └── icon_baiban_pressed_@3x.png │ │ │ │ ├── btn_whiteboard_sound_close.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_yuyin_guan_@2x.png │ │ │ │ │ └── icon_yuyin_guan_@3x.png │ │ │ │ ├── btn_whiteboard_sound_open.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_yuyin_kai_@2x.png │ │ │ │ │ └── icon_yuyin_kai_@3x.png │ │ │ │ └── icon_whiteboard_session_msg.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── icon_baiban_fasong@2x.png │ │ │ │ │ └── icon_baiban_fasong@3x-1.png │ │ │ ├── icon_gender_female.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_gender_female@2x.png │ │ │ │ └── icon_gender_female@3x.png │ │ │ ├── icon_gender_male.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_gender_male@2x.png │ │ │ │ └── icon_gender_male@3x.png │ │ │ └── images │ │ │ │ ├── Clear_color_image.imageset │ │ │ │ ├── Clear_color_image@2x.png │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── MessageVideoDownload.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MessageVideoDownload@2x.png │ │ │ │ └── MessageVideoDownload@3x.png │ │ │ │ ├── MessageVideoPlay.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── MessageVideoPlay@2x.png │ │ │ │ └── MessageVideoPlay@3x.png │ │ │ │ ├── Record_voice_disable.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Record_voice_disable@2x.png │ │ │ │ ├── SendTextViewBkg.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── SendTextViewBkg@2x.png │ │ │ │ └── SendTextViewBkg@3x.png │ │ │ │ ├── Session_Multi_Delete.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_Delete@2x.png │ │ │ │ └── Session_Multi_Delete@3x.png │ │ │ │ ├── Session_Multi_Delete_HL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── Session_Multi_Delete_HL@2x.png │ │ │ │ └── Session_Multi_Delete_HL@3x.png │ │ │ │ ├── VoiceBtnDisable_Black.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── VoiceBtnDisable_Black@2x.png │ │ │ │ ├── VoiceBtn_Black.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VoiceBtn_Black@2x.png │ │ │ │ └── VoiceBtn_Black@3x.png │ │ │ │ ├── VoiceBtn_BlackHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── VoiceBtn_BlackHL@2x.png │ │ │ │ └── VoiceBtn_BlackHL@3x.png │ │ │ │ ├── aroundfriends_bar_bg.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── aroundfriends_bar_bg@2x.png │ │ │ │ ├── avatar_user.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── DefaultAvatar@2x.png │ │ │ │ └── DefaultAvatar@3x.png │ │ │ │ ├── bk_media_card_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bk_media_card_normal@2x.png │ │ │ │ └── bk_media_card_normal@3x.png │ │ │ │ ├── bk_media_card_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bk_media_card_pressed@2x.png │ │ │ │ └── bk_media_card_pressed@3x.png │ │ │ │ ├── bk_media_snap_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_snap_normal@2x.png │ │ │ │ └── icon_snap_normal@3x.png │ │ │ │ ├── bk_media_snap_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_snap_pressed@2x.png │ │ │ │ └── icon_snap_pressed@3x.png │ │ │ │ ├── bk_media_tip_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bk_media_tip_normal@2x.png │ │ │ │ └── bk_media_tip_normal@3x.png │ │ │ │ ├── bk_media_tip_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── bk_media_tip_pressed@2x.png │ │ │ │ └── bk_media_tip_pressed@3x.png │ │ │ │ ├── btn_back_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_back_normal@2x.png │ │ │ │ └── btn_back_normal@3x.png │ │ │ │ ├── btn_bk_media_video_chat_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_bk_media_video_chat_normal@2x.png │ │ │ │ └── btn_bk_media_video_chat_normal@3x.png │ │ │ │ ├── btn_bk_media_video_chat_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_bk_media_video_chat_pressed@2x.png │ │ │ │ └── btn_bk_media_video_chat_pressed@3x.png │ │ │ │ ├── btn_cross.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── btn_cross@2x.png │ │ │ │ ├── btn_launch_button_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── btn_launch_button_normal@2x.png │ │ │ │ ├── btn_launch_button_normal_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── btn_launch_button_normal_0@2x.png │ │ │ │ ├── btn_launch_button_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── btn_launch_button_pressed@2x.png │ │ │ │ ├── btn_launch_button_pressed_0.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── btn_launch_button_pressed_0@2x.png │ │ │ │ ├── btn_media_telphone_message_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_media_telphone_message_normal@2x.png │ │ │ │ └── btn_media_telphone_message_normal@3x.png │ │ │ │ ├── btn_media_telphone_message_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── btn_media_telphone_message_pressed@2x.png │ │ │ │ └── btn_media_telphone_message_pressed@3x.png │ │ │ │ ├── custom_msg_jan.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── custom_msg_jan@2x.png │ │ │ │ ├── custom_msg_ken.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── custom_msg_ken@2x.png │ │ │ │ ├── custom_msg_pon.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── custom_msg_pon@2x.png │ │ │ │ ├── icon_about_logo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── about@2x.png │ │ │ │ └── about@3x.png │ │ │ │ ├── icon_arrow.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_arrow@2x.png │ │ │ │ └── icon_arrow@3x.png │ │ │ │ ├── icon_avatar_del.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_avatar_del@2x.png │ │ │ │ └── icon_avatar_del@3x.png │ │ │ │ ├── icon_back_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_back_normal@2x.png │ │ │ │ ├── icon_back_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_back_pressed@2x.png │ │ │ │ ├── icon_blacklist_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_blacklist_normal@2x.png │ │ │ │ └── icon_blacklist_normal@3x.png │ │ │ │ ├── icon_blacklist_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_blacklist_pressed@2x.png │ │ │ │ └── icon_blacklist_pressed@3x.png │ │ │ │ ├── icon_cell_blue_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_cell_blue_normal@2x.png │ │ │ │ ├── icon_cell_blue_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_cell_blue_pressed@2x.png │ │ │ │ ├── icon_clients.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_clients@2x.png │ │ │ │ └── icon_clients@3x.png │ │ │ │ ├── icon_computer_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_computer_normal@2x.png │ │ │ │ └── icon_computer_normal@3x.png │ │ │ │ ├── icon_computer_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_computer_pressed@2x.png │ │ │ │ └── icon_computer_pressed@3x.png │ │ │ │ ├── icon_contact_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_contacts@2x.png │ │ │ │ └── tabbar_contacts@3x.png │ │ │ │ ├── icon_contact_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_contactsHL@2x.png │ │ │ │ └── tabbar_contactsHL@3x.png │ │ │ │ ├── icon_error.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_error@2x.png │ │ │ │ └── icon_error@3x.png │ │ │ │ ├── icon_file.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── icon_file@2x.png │ │ │ │ ├── icon_file_trans_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_file_trans_normal@2x.png │ │ │ │ └── icon_file_trans_normal@3x.png │ │ │ │ ├── icon_file_trans_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_file_trans_pressed@2x.png │ │ │ │ └── icon_file_trans_pressed@3x.png │ │ │ │ ├── icon_history_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_history_normal@2x.png │ │ │ │ └── icon_history_normal@3x.png │ │ │ │ ├── icon_history_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_history_pressed@2x.png │ │ │ │ └── icon_history_pressed@3x.png │ │ │ │ ├── icon_jankenpon_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_jankenpon_normal@2x.png │ │ │ │ └── icon_jankenpon_normal@3x.png │ │ │ │ ├── icon_jankenpon_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_jankenpon_pressed@2x.png │ │ │ │ └── icon_jankenpon_pressed@3x.png │ │ │ │ ├── icon_log_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_log_normal@2x.png │ │ │ │ └── icon_log_normal@3x.png │ │ │ │ ├── icon_log_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_log_pressed@2x.png │ │ │ │ └── icon_log_pressed@3x.png │ │ │ │ ├── icon_message_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_mainframe@2x.png │ │ │ │ └── tabbar_mainframe@3x.png │ │ │ │ ├── icon_message_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_mainframeHL@2x.png │ │ │ │ └── tabbar_mainframeHL@3x.png │ │ │ │ ├── icon_muti_clients.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_muti_clients@2x.png │ │ │ │ └── icon_muti_clients@3x.png │ │ │ │ ├── icon_nickname.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_nickname@2x.png │ │ │ │ └── icon_nickname@3X.png │ │ │ │ ├── icon_notification_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_message_normal@2x.png │ │ │ │ └── icon_message_normal@3x.png │ │ │ │ ├── icon_notification_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_message_pressed@2x.png │ │ │ │ └── icon_message_pressed@3x.png │ │ │ │ ├── icon_session_info_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_session_info_normal@2x.png │ │ │ │ └── icon_session_info_normal@3x.png │ │ │ │ ├── icon_session_info_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_session_info_pressed@2x.png │ │ │ │ └── icon_session_info_pressed@3x.png │ │ │ │ ├── icon_setting_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_me@2x.png │ │ │ │ └── tabbar_me@3x.png │ │ │ │ ├── icon_setting_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_meHL@2x.png │ │ │ │ └── tabbar_meHL@3x.png │ │ │ │ ├── icon_tann_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_tann_normal@2x.png │ │ │ │ └── icon_tann_normal@3x.png │ │ │ │ ├── icon_tann_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_tann_pressed@2x.png │ │ │ │ └── icon_tann_pressed@3x.png │ │ │ │ ├── icon_team_advance_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_team_advance_normal@2x.png │ │ │ │ └── icon_team_advance_normal@3x.png │ │ │ │ ├── icon_team_advance_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_team_advance_pressed@3x.png │ │ │ │ └── icon_tean_advance_pressed@2x.png │ │ │ │ ├── icon_team_normal_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_team_normal_normal@2x.png │ │ │ │ └── icon_team_normal_normal@3x.png │ │ │ │ ├── icon_team_normal_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_team_normal_pressed@2x.png │ │ │ │ └── icon_team_normal_pressed@3x.png │ │ │ │ ├── icon_tinfo_normal.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_tinfo_normal@2x.png │ │ │ │ └── icon_tinfo_normal@3x.png │ │ │ │ ├── icon_tinfo_pressed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_tinfo_pressed@2x.png │ │ │ │ └── icon_tinfo_pressed@3x.png │ │ │ │ ├── login_input.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── login_input@2x.png │ │ │ │ ├── record_not_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── record_not_selected@2x.png │ │ │ │ └── record_not_selected@3x.png │ │ │ │ ├── record_selected.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── record_selected@2x.png │ │ │ │ └── record_selected@3x.png │ │ │ │ ├── session_snapchat_other_readed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── session_snapchat_other_readed@2x.png │ │ │ │ └── session_snapchat_other_readed@3x.png │ │ │ │ ├── session_snapchat_other_unread.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── session_snapchat_other_unread@2x.png │ │ │ │ └── session_snapchat_other_unread@3x.png │ │ │ │ ├── session_snapchat_self_readed.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── session_snapchat_self_readed@2x.png │ │ │ │ └── session_snapchat_self_readed@3x.png │ │ │ │ ├── session_snapchat_self_unread.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── session_snapchat_self_unread@2x.png │ │ │ │ └── session_snapchat_self_unread@3x.png │ │ │ │ ├── sharemore_videovoip.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── sharemore_videovoip@2x.png │ │ │ │ └── sharemore_videovoip@3x.png │ │ │ │ ├── tabbar_contacts.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_contacts.png │ │ │ │ └── tabbar_contacts@2x.png │ │ │ │ └── tabbar_contactsHL.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── tabbar_contactsHL.png │ │ │ │ └── tabbar_contactsHL@2x.png │ │ ├── NIMDemo-Prefix.pch │ │ ├── NTESAppDelegate.h │ │ ├── NTESAppDelegate.m │ │ ├── NTESGlobalMacro.h │ │ └── Supporting Files │ │ │ ├── Files │ │ │ ├── BlizzardReg.ttf │ │ │ ├── SetupOSX.mpq │ │ │ └── d3.icns │ │ │ ├── Info.plist │ │ │ ├── NIMDev.entitlements │ │ │ ├── NIMKitEmoticon.bundle │ │ │ ├── Chartlet │ │ │ │ ├── ajmd │ │ │ │ │ ├── content │ │ │ │ │ │ ├── ajmd001@2x.png │ │ │ │ │ │ ├── ajmd002@2x.png │ │ │ │ │ │ ├── ajmd003@2x.png │ │ │ │ │ │ ├── ajmd004@2x.png │ │ │ │ │ │ ├── ajmd005@2x.png │ │ │ │ │ │ ├── ajmd006@2x.png │ │ │ │ │ │ ├── ajmd007@2x.png │ │ │ │ │ │ ├── ajmd008@2x.png │ │ │ │ │ │ ├── ajmd009@2x.png │ │ │ │ │ │ ├── ajmd010@2x.png │ │ │ │ │ │ ├── ajmd011@2x.png │ │ │ │ │ │ ├── ajmd012@2x.png │ │ │ │ │ │ ├── ajmd013@2x.png │ │ │ │ │ │ ├── ajmd014@2x.png │ │ │ │ │ │ ├── ajmd015@2x.png │ │ │ │ │ │ ├── ajmd016@2x.png │ │ │ │ │ │ ├── ajmd017@2x.png │ │ │ │ │ │ ├── ajmd018@2x.png │ │ │ │ │ │ ├── ajmd019@2x.png │ │ │ │ │ │ ├── ajmd020@2x.png │ │ │ │ │ │ ├── ajmd021@2x.png │ │ │ │ │ │ ├── ajmd022@2x.png │ │ │ │ │ │ ├── ajmd023@2x.png │ │ │ │ │ │ ├── ajmd024@2x.png │ │ │ │ │ │ ├── ajmd025@2x.png │ │ │ │ │ │ ├── ajmd026@2x.png │ │ │ │ │ │ ├── ajmd027@2x.png │ │ │ │ │ │ ├── ajmd028@2x.png │ │ │ │ │ │ ├── ajmd029@2x.png │ │ │ │ │ │ ├── ajmd030@2x.png │ │ │ │ │ │ ├── ajmd031@2x.png │ │ │ │ │ │ ├── ajmd032@2x.png │ │ │ │ │ │ ├── ajmd033@2x.png │ │ │ │ │ │ ├── ajmd034@2x.png │ │ │ │ │ │ ├── ajmd035@2x.png │ │ │ │ │ │ ├── ajmd036@2x.png │ │ │ │ │ │ ├── ajmd037@2x.png │ │ │ │ │ │ ├── ajmd038@2x.png │ │ │ │ │ │ ├── ajmd039@2x.png │ │ │ │ │ │ ├── ajmd040@2x.png │ │ │ │ │ │ ├── ajmd041@2x.png │ │ │ │ │ │ ├── ajmd042@2x.png │ │ │ │ │ │ ├── ajmd043@2x.png │ │ │ │ │ │ ├── ajmd044@2x.png │ │ │ │ │ │ ├── ajmd045@2x.png │ │ │ │ │ │ ├── ajmd046@2x.png │ │ │ │ │ │ ├── ajmd047@2x.png │ │ │ │ │ │ └── ajmd048@2x.png │ │ │ │ │ └── icon │ │ │ │ │ │ ├── ajmd_s_highlighted@2x.png │ │ │ │ │ │ └── ajmd_s_normal@2x.png │ │ │ │ ├── lt │ │ │ │ │ ├── content │ │ │ │ │ │ ├── lt001@2x.png │ │ │ │ │ │ ├── lt002@2x.png │ │ │ │ │ │ ├── lt003@2x.png │ │ │ │ │ │ ├── lt004@2x.png │ │ │ │ │ │ ├── lt005@2x.png │ │ │ │ │ │ ├── lt006@2x.png │ │ │ │ │ │ ├── lt007@2x.png │ │ │ │ │ │ ├── lt008@2x.png │ │ │ │ │ │ ├── lt009@2x.png │ │ │ │ │ │ ├── lt010@2x.png │ │ │ │ │ │ ├── lt011@2x.png │ │ │ │ │ │ ├── lt012@2x.png │ │ │ │ │ │ ├── lt013@2x.png │ │ │ │ │ │ ├── lt014@2x.png │ │ │ │ │ │ ├── lt015@2x.png │ │ │ │ │ │ ├── lt016@2x.png │ │ │ │ │ │ ├── lt017@2x.png │ │ │ │ │ │ ├── lt018@2x.png │ │ │ │ │ │ ├── lt019@2x.png │ │ │ │ │ │ └── lt020@2x.png │ │ │ │ │ └── icon │ │ │ │ │ │ ├── lt_s_highlighted@2x.png │ │ │ │ │ │ └── lt_s_normal@2x.png │ │ │ │ └── xxy │ │ │ │ │ ├── content │ │ │ │ │ ├── xxy001@2x.png │ │ │ │ │ ├── xxy002@2x.png │ │ │ │ │ ├── xxy003@2x.png │ │ │ │ │ ├── xxy004@2x.png │ │ │ │ │ ├── xxy005@2x.png │ │ │ │ │ ├── xxy006@2x.png │ │ │ │ │ ├── xxy007@2x.png │ │ │ │ │ ├── xxy008@2x.png │ │ │ │ │ ├── xxy009@2x.png │ │ │ │ │ ├── xxy010@2x.png │ │ │ │ │ ├── xxy011@2x.png │ │ │ │ │ ├── xxy012@2x.png │ │ │ │ │ ├── xxy013@2x.png │ │ │ │ │ ├── xxy014@2x.png │ │ │ │ │ ├── xxy015@2x.png │ │ │ │ │ ├── xxy016@2x.png │ │ │ │ │ ├── xxy017@2x.png │ │ │ │ │ ├── xxy018@2x.png │ │ │ │ │ ├── xxy019@2x.png │ │ │ │ │ ├── xxy020@2x.png │ │ │ │ │ ├── xxy021@2x.png │ │ │ │ │ ├── xxy022@2x.png │ │ │ │ │ ├── xxy023@2x.png │ │ │ │ │ ├── xxy024@2x.png │ │ │ │ │ ├── xxy025@2x.png │ │ │ │ │ ├── xxy026@2x.png │ │ │ │ │ ├── xxy027@2x.png │ │ │ │ │ ├── xxy028@2x.png │ │ │ │ │ ├── xxy029@2x.png │ │ │ │ │ ├── xxy030@2x.png │ │ │ │ │ ├── xxy031@2x.png │ │ │ │ │ ├── xxy032@2x.png │ │ │ │ │ ├── xxy033@2x.png │ │ │ │ │ ├── xxy034@2x.png │ │ │ │ │ ├── xxy035@2x.png │ │ │ │ │ ├── xxy036@2x.png │ │ │ │ │ ├── xxy037@2x.png │ │ │ │ │ ├── xxy038@2x.png │ │ │ │ │ ├── xxy039@2x.png │ │ │ │ │ └── xxy040@2x.png │ │ │ │ │ └── icon │ │ │ │ │ ├── xxy_s_highlighted@2x.png │ │ │ │ │ └── xxy_s_normal@2x.png │ │ │ └── Emoji │ │ │ │ ├── emoj_s_normal@2x.png │ │ │ │ ├── emoj_s_pressed@2x.png │ │ │ │ ├── emoji.plist │ │ │ │ ├── emoji.xml │ │ │ │ ├── emoji_00@2x.png │ │ │ │ ├── emoji_01@2x.png │ │ │ │ ├── emoji_02@2x.png │ │ │ │ ├── emoji_03@2x.png │ │ │ │ ├── emoji_04@2x.png │ │ │ │ ├── emoji_05@2x.png │ │ │ │ ├── emoji_06@2x.png │ │ │ │ ├── emoji_07@2x.png │ │ │ │ ├── emoji_08@2x.png │ │ │ │ ├── emoji_09@2x.png │ │ │ │ ├── emoji_100@2x.png │ │ │ │ ├── emoji_101@2x.png │ │ │ │ ├── emoji_102@2x.png │ │ │ │ ├── emoji_103@2x.png │ │ │ │ ├── emoji_104@2x.png │ │ │ │ ├── emoji_105@2x.png │ │ │ │ ├── emoji_106@2x.png │ │ │ │ ├── emoji_107@2x.png │ │ │ │ ├── emoji_108@2x.png │ │ │ │ ├── emoji_109@2x.png │ │ │ │ ├── emoji_10@2x.png │ │ │ │ ├── emoji_110@2x.png │ │ │ │ ├── emoji_111@2x.png │ │ │ │ ├── emoji_112@2x.png │ │ │ │ ├── emoji_113@2x.png │ │ │ │ ├── emoji_114@2x.png │ │ │ │ ├── emoji_115@2x.png │ │ │ │ ├── emoji_116@2x.png │ │ │ │ ├── emoji_117@2x.png │ │ │ │ ├── emoji_118@2x.png │ │ │ │ ├── emoji_119@2x.png │ │ │ │ ├── emoji_11@2x.png │ │ │ │ ├── emoji_120@2x.png │ │ │ │ ├── emoji_121@2x.png │ │ │ │ ├── emoji_122@2x.png │ │ │ │ ├── emoji_123@2x.png │ │ │ │ ├── emoji_124@2x.png │ │ │ │ ├── emoji_125@2x.png │ │ │ │ ├── emoji_126@2x.png │ │ │ │ ├── emoji_127@2x.png │ │ │ │ ├── emoji_128@2x.png │ │ │ │ ├── emoji_129@2x.png │ │ │ │ ├── emoji_12@2x.png │ │ │ │ ├── emoji_130@2x.png │ │ │ │ ├── emoji_131@2x.png │ │ │ │ ├── emoji_132@2x.png │ │ │ │ ├── emoji_133@2x.png │ │ │ │ ├── emoji_134@2x.png │ │ │ │ ├── emoji_135@2x.png │ │ │ │ ├── emoji_136@2x.png │ │ │ │ ├── emoji_137@2x.png │ │ │ │ ├── emoji_138@2x.png │ │ │ │ ├── emoji_139@2x.png │ │ │ │ ├── emoji_13@2x.png │ │ │ │ ├── emoji_140@2x.png │ │ │ │ ├── emoji_141@2x.png │ │ │ │ ├── emoji_142@2x.png │ │ │ │ ├── emoji_143@2x.png │ │ │ │ ├── emoji_144@2x.png │ │ │ │ ├── emoji_145@2x.png │ │ │ │ ├── emoji_146@2x.png │ │ │ │ ├── emoji_147@2x.png │ │ │ │ ├── emoji_148@2x.png │ │ │ │ ├── emoji_149@2x.png │ │ │ │ ├── emoji_14@2x.png │ │ │ │ ├── emoji_150@2x.png │ │ │ │ ├── emoji_151@2x.png │ │ │ │ ├── emoji_152@2x.png │ │ │ │ ├── emoji_15@2x.png │ │ │ │ ├── emoji_160@2x.png │ │ │ │ ├── emoji_161@2x.png │ │ │ │ ├── emoji_162@2x.png │ │ │ │ ├── emoji_163@2x.png │ │ │ │ ├── emoji_164@2x.png │ │ │ │ ├── emoji_165@2x.png │ │ │ │ ├── emoji_166@2x.png │ │ │ │ ├── emoji_16@2x.png │ │ │ │ ├── emoji_17@2x.png │ │ │ │ ├── emoji_18@2x.png │ │ │ │ ├── emoji_19@2x.png │ │ │ │ ├── emoji_200@2x.png │ │ │ │ ├── emoji_20@2x.png │ │ │ │ ├── emoji_21@2x.png │ │ │ │ ├── emoji_22@2x.png │ │ │ │ ├── emoji_23@2x.png │ │ │ │ ├── emoji_24@2x.png │ │ │ │ ├── emoji_25@2x.png │ │ │ │ ├── emoji_26@2x.png │ │ │ │ ├── emoji_27@2x.png │ │ │ │ ├── emoji_28@2x.png │ │ │ │ ├── emoji_29@2x.png │ │ │ │ ├── emoji_30@2x.png │ │ │ │ ├── emoji_31@2x.png │ │ │ │ ├── emoji_32@2x.png │ │ │ │ ├── emoji_33@2x.png │ │ │ │ ├── emoji_34@2x.png │ │ │ │ ├── emoji_35@2x.png │ │ │ │ ├── emoji_36@2x.png │ │ │ │ ├── emoji_37@2x.png │ │ │ │ ├── emoji_38@2x.png │ │ │ │ ├── emoji_39@2x.png │ │ │ │ ├── emoji_40@2x.png │ │ │ │ ├── emoji_41@2x.png │ │ │ │ ├── emoji_42@2x.png │ │ │ │ ├── emoji_43@2x.png │ │ │ │ ├── emoji_44@2x.png │ │ │ │ ├── emoji_45@2x.png │ │ │ │ ├── emoji_46@2x.png │ │ │ │ ├── emoji_47@2x.png │ │ │ │ ├── emoji_48@2x.png │ │ │ │ ├── emoji_49@2x.png │ │ │ │ ├── emoji_50@2x.png │ │ │ │ ├── emoji_51@2x.png │ │ │ │ ├── emoji_52@2x.png │ │ │ │ ├── emoji_53@2x.png │ │ │ │ ├── emoji_54@2x.png │ │ │ │ ├── emoji_55@2x.png │ │ │ │ ├── emoji_56@2x.png │ │ │ │ ├── emoji_57@2x.png │ │ │ │ ├── emoji_58@2x.png │ │ │ │ ├── emoji_59@2x.png │ │ │ │ ├── emoji_60@2x.png │ │ │ │ ├── emoji_61@2x.png │ │ │ │ ├── emoji_62@2x.png │ │ │ │ ├── emoji_63@2x.png │ │ │ │ ├── emoji_64@2x.png │ │ │ │ ├── emoji_65@2x.png │ │ │ │ ├── emoji_66@2x.png │ │ │ │ ├── emoji_67@2x.png │ │ │ │ ├── emoji_68@2x.png │ │ │ │ ├── emoji_69@2x.png │ │ │ │ ├── emoji_70@2x.png │ │ │ │ ├── emoji_71@2x.png │ │ │ │ ├── emoji_72@2x.png │ │ │ │ ├── emoji_73@2x.png │ │ │ │ ├── emoji_74@2x.png │ │ │ │ ├── emoji_75@2x.png │ │ │ │ ├── emoji_76@2x.png │ │ │ │ ├── emoji_77@2x.png │ │ │ │ ├── emoji_78@2x.png │ │ │ │ ├── emoji_79@2x.png │ │ │ │ ├── emoji_80@2x.png │ │ │ │ ├── emoji_81@2x.png │ │ │ │ ├── emoji_82@2x.png │ │ │ │ ├── emoji_83@2x.png │ │ │ │ ├── emoji_84@2x.png │ │ │ │ ├── emoji_85@2x.png │ │ │ │ ├── emoji_86@2x.png │ │ │ │ ├── emoji_87@2x.png │ │ │ │ ├── emoji_88@2x.png │ │ │ │ ├── emoji_89@2x.png │ │ │ │ ├── emoji_90@2x.png │ │ │ │ ├── emoji_91@2x.png │ │ │ │ ├── emoji_92@2x.png │ │ │ │ ├── emoji_93@2x.png │ │ │ │ ├── emoji_94@2x.png │ │ │ │ ├── emoji_95@2x.png │ │ │ │ ├── emoji_96@2x.png │ │ │ │ ├── emoji_97@2x.png │ │ │ │ ├── emoji_98@2x.png │ │ │ │ ├── emoji_99@2x.png │ │ │ │ ├── emoji_del_normal@2x.png │ │ │ │ └── emoji_del_pressed@2x.png │ │ │ ├── NIMKitResource.bundle │ │ │ ├── bk_media_picture_normal@2x.png │ │ │ ├── bk_media_picture_normal@3x.png │ │ │ ├── bk_media_picture_pressed@2x.png │ │ │ ├── bk_media_picture_pressed@3x.png │ │ │ ├── bk_media_position_normal@2x.png │ │ │ ├── bk_media_position_normal@3x.png │ │ │ ├── bk_media_position_pressed@2x.png │ │ │ ├── bk_media_position_pressed@3x.png │ │ │ ├── bk_media_shoot_normal@2x.png │ │ │ ├── bk_media_shoot_normal@3x.png │ │ │ ├── bk_media_shoot_pressed@2x.png │ │ │ ├── bk_media_shoot_pressed@3x.png │ │ │ ├── icon_file@2x.png │ │ │ ├── icon_file@3x.png │ │ │ ├── icon_input_record_indicator@2x.png │ │ │ ├── icon_input_record_indicator@3x.png │ │ │ ├── icon_input_record_indicator_cancel@2x.png │ │ │ ├── icon_input_record_indicator_cancel@3x.png │ │ │ ├── icon_input_send_btn_normal@2x.png │ │ │ ├── icon_input_send_btn_normal@3x.png │ │ │ ├── icon_input_send_btn_pressed@2x.png │ │ │ ├── icon_input_send_btn_pressed@3x.png │ │ │ ├── icon_input_text_bg@2x.png │ │ │ ├── icon_input_text_bg@3x.png │ │ │ ├── icon_map@2x.png │ │ │ ├── icon_map@3x.png │ │ │ ├── icon_message_cell_error@2x.png │ │ │ ├── icon_message_cell_error@3x.png │ │ │ ├── icon_play_normal@2x.png │ │ │ ├── icon_play_normal@3x.png │ │ │ ├── icon_receiver_node_normal@2x.png │ │ │ ├── icon_receiver_node_normal@3x.png │ │ │ ├── icon_receiver_node_pressed@2x.png │ │ │ ├── icon_receiver_node_pressed@3x.png │ │ │ ├── icon_receiver_voice_playing@2x.png │ │ │ ├── icon_receiver_voice_playing@3x.png │ │ │ ├── icon_receiver_voice_playing_001@2x.png │ │ │ ├── icon_receiver_voice_playing_001@3x.png │ │ │ ├── icon_receiver_voice_playing_002@2x.png │ │ │ ├── icon_receiver_voice_playing_002@3x.png │ │ │ ├── icon_receiver_voice_playing_003@2x.png │ │ │ ├── icon_receiver_voice_playing_003@3x.png │ │ │ ├── icon_sender_text_node_normal@2x.png │ │ │ ├── icon_sender_text_node_normal@3x.png │ │ │ ├── icon_sender_text_node_pressed@2x.png │ │ │ ├── icon_sender_text_node_pressed@3x.png │ │ │ ├── icon_session_time_bg@2x.png │ │ │ ├── icon_session_time_bg@3x.png │ │ │ ├── icon_toolview_add_normal@2x.png │ │ │ ├── icon_toolview_add_normal@3x.png │ │ │ ├── icon_toolview_add_pressed@2x.png │ │ │ ├── icon_toolview_add_pressed@3x.png │ │ │ ├── icon_toolview_emotion_normal@2x.png │ │ │ ├── icon_toolview_emotion_normal@3x.png │ │ │ ├── icon_toolview_emotion_pressed@2x.png │ │ │ ├── icon_toolview_emotion_pressed@3x.png │ │ │ ├── icon_toolview_keyboard_normal@2x.png │ │ │ ├── icon_toolview_keyboard_normal@3x.png │ │ │ ├── icon_toolview_keyboard_pressed@2x.png │ │ │ ├── icon_toolview_keyboard_pressed@3x.png │ │ │ ├── icon_toolview_voice_normal@2x.png │ │ │ ├── icon_toolview_voice_normal@3x.png │ │ │ ├── icon_toolview_voice_pressed@2x.png │ │ │ ├── icon_toolview_voice_pressed@3x.png │ │ │ ├── receivertextnodebkg@2x.png │ │ │ ├── receivertextnodebkg@3x.png │ │ │ ├── receivertextnodebkghl@2x.png │ │ │ ├── receivertextnodebkghl@3x.png │ │ │ ├── sendertextnodebkg@2x.png │ │ │ ├── sendertextnodebkg@3x.png │ │ │ ├── sendertextnodebkghl@2x.png │ │ │ └── sendertextnodebkghl@3x.png │ │ │ ├── NIMKitSettings.bundle │ │ │ ├── NIMKitBubbleSetting.plist │ │ │ └── NIMKitGlobalSetting.plist │ │ │ ├── NIMPro.entitlements │ │ │ ├── Sounds │ │ │ ├── message.wav │ │ │ ├── video_chat_tip_HangUp.aac │ │ │ ├── video_chat_tip_OnCall.aac │ │ │ ├── video_chat_tip_onTimer.aac │ │ │ ├── video_chat_tip_receiver.aac │ │ │ ├── video_chat_tip_sender.aac │ │ │ └── video_connect_chat_tip_sender.aac │ │ │ ├── main.m │ │ │ ├── nim_debug.xcconfig │ │ │ └── nim_release.xcconfig │ ├── Podfile │ ├── Podfile.lock │ ├── Pods │ │ ├── CocoaLumberjack │ │ │ ├── Classes │ │ │ │ ├── CocoaLumberjack.h │ │ │ │ ├── CocoaLumberjack.swift │ │ │ │ ├── DDASLLogCapture.h │ │ │ │ ├── DDASLLogCapture.m │ │ │ │ ├── DDASLLogger.h │ │ │ │ ├── DDASLLogger.m │ │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ │ ├── DDAbstractDatabaseLogger.m │ │ │ │ ├── DDAssertMacros.h │ │ │ │ ├── DDFileLogger.h │ │ │ │ ├── DDFileLogger.m │ │ │ │ ├── DDLegacyMacros.h │ │ │ │ ├── DDLog+LOGV.h │ │ │ │ ├── DDLog.h │ │ │ │ ├── DDLog.m │ │ │ │ ├── DDLogMacros.h │ │ │ │ ├── DDTTYLogger.h │ │ │ │ ├── DDTTYLogger.m │ │ │ │ └── Extensions │ │ │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ │ │ ├── DDContextFilterLogFormatter.m │ │ │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ │ │ ├── DDDispatchQueueLogFormatter.m │ │ │ │ │ ├── DDMultiFormatter.h │ │ │ │ │ └── DDMultiFormatter.m │ │ │ ├── Framework │ │ │ │ └── Lumberjack │ │ │ │ │ └── CocoaLumberjack.modulemap │ │ │ ├── LICENSE.txt │ │ │ └── README.md │ │ ├── FMDB │ │ │ ├── LICENSE.txt │ │ │ ├── README.markdown │ │ │ └── src │ │ │ │ └── fmdb │ │ │ │ ├── FMDB.h │ │ │ │ ├── FMDatabase.h │ │ │ │ ├── FMDatabase.m │ │ │ │ ├── FMDatabaseAdditions.h │ │ │ │ ├── FMDatabaseAdditions.m │ │ │ │ ├── FMDatabasePool.h │ │ │ │ ├── FMDatabasePool.m │ │ │ │ ├── FMDatabaseQueue.h │ │ │ │ ├── FMDatabaseQueue.m │ │ │ │ ├── FMResultSet.h │ │ │ │ └── FMResultSet.m │ │ ├── Headers │ │ │ ├── Private │ │ │ │ ├── CocoaLumberjack │ │ │ │ │ ├── CocoaLumberjack.h │ │ │ │ │ ├── DDASLLogCapture.h │ │ │ │ │ ├── DDASLLogger.h │ │ │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ │ │ ├── DDAssertMacros.h │ │ │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ │ │ ├── DDFileLogger.h │ │ │ │ │ ├── DDLegacyMacros.h │ │ │ │ │ ├── DDLog+LOGV.h │ │ │ │ │ ├── DDLog.h │ │ │ │ │ ├── DDLogMacros.h │ │ │ │ │ ├── DDMultiFormatter.h │ │ │ │ │ └── DDTTYLogger.h │ │ │ │ ├── FMDB │ │ │ │ │ ├── FMDB.h │ │ │ │ │ ├── FMDatabase.h │ │ │ │ │ ├── FMDatabaseAdditions.h │ │ │ │ │ ├── FMDatabasePool.h │ │ │ │ │ ├── FMDatabaseQueue.h │ │ │ │ │ └── FMResultSet.h │ │ │ │ ├── M80AttributedLabel │ │ │ │ │ ├── M80AttributedLabel.h │ │ │ │ │ ├── M80AttributedLabelAttachment.h │ │ │ │ │ ├── M80AttributedLabelDefines.h │ │ │ │ │ ├── M80AttributedLabelURL.h │ │ │ │ │ └── NSMutableAttributedString+M80.h │ │ │ │ ├── Reachability │ │ │ │ │ └── Reachability.h │ │ │ │ ├── SDWebImage │ │ │ │ │ ├── NSData+ImageContentType.h │ │ │ │ │ ├── SDImageCache.h │ │ │ │ │ ├── SDWebImageCompat.h │ │ │ │ │ ├── SDWebImageDecoder.h │ │ │ │ │ ├── SDWebImageDownloader.h │ │ │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ │ │ ├── SDWebImageManager.h │ │ │ │ │ ├── SDWebImageOperation.h │ │ │ │ │ ├── SDWebImagePrefetcher.h │ │ │ │ │ ├── UIButton+WebCache.h │ │ │ │ │ ├── UIImage+GIF.h │ │ │ │ │ ├── UIImage+MultiFormat.h │ │ │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ │ │ ├── UIImageView+WebCache.h │ │ │ │ │ └── UIView+WebCacheOperation.h │ │ │ │ ├── SSZipArchive │ │ │ │ │ ├── SSZipArchive.h │ │ │ │ │ ├── SSZipCommon.h │ │ │ │ │ ├── ZipArchive.h │ │ │ │ │ ├── aes.h │ │ │ │ │ ├── aes_via_ace.h │ │ │ │ │ ├── aesopt.h │ │ │ │ │ ├── aestab.h │ │ │ │ │ ├── brg_endian.h │ │ │ │ │ ├── brg_types.h │ │ │ │ │ ├── crypt.h │ │ │ │ │ ├── entropy.h │ │ │ │ │ ├── fileenc.h │ │ │ │ │ ├── hmac.h │ │ │ │ │ ├── ioapi.h │ │ │ │ │ ├── mztools.h │ │ │ │ │ ├── prng.h │ │ │ │ │ ├── pwd2key.h │ │ │ │ │ ├── sha1.h │ │ │ │ │ ├── unzip.h │ │ │ │ │ └── zip.h │ │ │ │ ├── SVProgressHUD │ │ │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ │ │ ├── SVProgressAnimatedView.h │ │ │ │ │ ├── SVProgressHUD.h │ │ │ │ │ └── SVRadialGradientLayer.h │ │ │ │ ├── TZImagePickerController │ │ │ │ │ ├── NSBundle+TZImagePicker.h │ │ │ │ │ ├── TZAssetCell.h │ │ │ │ │ ├── TZAssetModel.h │ │ │ │ │ ├── TZGifPhotoPreviewController.h │ │ │ │ │ ├── TZImageCropManager.h │ │ │ │ │ ├── TZImageManager.h │ │ │ │ │ ├── TZImagePickerController.h │ │ │ │ │ ├── TZPhotoPickerController.h │ │ │ │ │ ├── TZPhotoPreviewCell.h │ │ │ │ │ ├── TZPhotoPreviewController.h │ │ │ │ │ ├── TZProgressView.h │ │ │ │ │ ├── TZVideoPlayerController.h │ │ │ │ │ └── UIView+Layout.h │ │ │ │ └── Toast │ │ │ │ │ └── UIView+Toast.h │ │ │ └── Public │ │ │ │ ├── CocoaLumberjack │ │ │ │ ├── CocoaLumberjack.h │ │ │ │ ├── DDASLLogCapture.h │ │ │ │ ├── DDASLLogger.h │ │ │ │ ├── DDAbstractDatabaseLogger.h │ │ │ │ ├── DDAssertMacros.h │ │ │ │ ├── DDContextFilterLogFormatter.h │ │ │ │ ├── DDDispatchQueueLogFormatter.h │ │ │ │ ├── DDFileLogger.h │ │ │ │ ├── DDLegacyMacros.h │ │ │ │ ├── DDLog+LOGV.h │ │ │ │ ├── DDLog.h │ │ │ │ ├── DDLogMacros.h │ │ │ │ ├── DDMultiFormatter.h │ │ │ │ └── DDTTYLogger.h │ │ │ │ ├── FMDB │ │ │ │ ├── FMDB.h │ │ │ │ ├── FMDatabase.h │ │ │ │ ├── FMDatabaseAdditions.h │ │ │ │ ├── FMDatabasePool.h │ │ │ │ ├── FMDatabaseQueue.h │ │ │ │ └── FMResultSet.h │ │ │ │ ├── M80AttributedLabel │ │ │ │ ├── M80AttributedLabel.h │ │ │ │ ├── M80AttributedLabelAttachment.h │ │ │ │ ├── M80AttributedLabelDefines.h │ │ │ │ ├── M80AttributedLabelURL.h │ │ │ │ └── NSMutableAttributedString+M80.h │ │ │ │ ├── Reachability │ │ │ │ └── Reachability.h │ │ │ │ ├── SDWebImage │ │ │ │ ├── NSData+ImageContentType.h │ │ │ │ ├── SDImageCache.h │ │ │ │ ├── SDWebImageCompat.h │ │ │ │ ├── SDWebImageDecoder.h │ │ │ │ ├── SDWebImageDownloader.h │ │ │ │ ├── SDWebImageDownloaderOperation.h │ │ │ │ ├── SDWebImageManager.h │ │ │ │ ├── SDWebImageOperation.h │ │ │ │ ├── SDWebImagePrefetcher.h │ │ │ │ ├── UIButton+WebCache.h │ │ │ │ ├── UIImage+GIF.h │ │ │ │ ├── UIImage+MultiFormat.h │ │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ │ ├── UIImageView+WebCache.h │ │ │ │ └── UIView+WebCacheOperation.h │ │ │ │ ├── SSZipArchive │ │ │ │ ├── SSZipArchive.h │ │ │ │ ├── SSZipCommon.h │ │ │ │ └── ZipArchive.h │ │ │ │ ├── SVProgressHUD │ │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ │ ├── SVProgressAnimatedView.h │ │ │ │ ├── SVProgressHUD.h │ │ │ │ └── SVRadialGradientLayer.h │ │ │ │ ├── TZImagePickerController │ │ │ │ ├── NSBundle+TZImagePicker.h │ │ │ │ ├── TZAssetCell.h │ │ │ │ ├── TZAssetModel.h │ │ │ │ ├── TZGifPhotoPreviewController.h │ │ │ │ ├── TZImageCropManager.h │ │ │ │ ├── TZImageManager.h │ │ │ │ ├── TZImagePickerController.h │ │ │ │ ├── TZPhotoPickerController.h │ │ │ │ ├── TZPhotoPreviewCell.h │ │ │ │ ├── TZPhotoPreviewController.h │ │ │ │ ├── TZProgressView.h │ │ │ │ ├── TZVideoPlayerController.h │ │ │ │ └── UIView+Layout.h │ │ │ │ └── Toast │ │ │ │ └── UIView+Toast.h │ │ ├── M80AttributedLabel │ │ │ ├── LICENSE │ │ │ ├── M80AttributedLabel │ │ │ │ ├── M80AttributedLabel.h │ │ │ │ ├── M80AttributedLabel.m │ │ │ │ ├── M80AttributedLabelAttachment.h │ │ │ │ ├── M80AttributedLabelAttachment.m │ │ │ │ ├── M80AttributedLabelDefines.h │ │ │ │ ├── M80AttributedLabelURL.h │ │ │ │ ├── M80AttributedLabelURL.m │ │ │ │ ├── NSMutableAttributedString+M80.h │ │ │ │ └── NSMutableAttributedString+M80.m │ │ │ └── README.md │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ │ └── project.pbxproj │ │ ├── Reachability │ │ │ ├── LICENCE.txt │ │ │ ├── README.md │ │ │ ├── Reachability.h │ │ │ └── Reachability.m │ │ ├── SDWebImage │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── SDWebImage │ │ │ │ ├── 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 │ │ │ │ ├── UIImageView+HighlightedWebCache.h │ │ │ │ ├── UIImageView+HighlightedWebCache.m │ │ │ │ ├── UIImageView+WebCache.h │ │ │ │ ├── UIImageView+WebCache.m │ │ │ │ ├── UIView+WebCacheOperation.h │ │ │ │ └── UIView+WebCacheOperation.m │ │ ├── SSZipArchive │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── SSZipArchive │ │ │ │ ├── SSZipArchive.h │ │ │ │ ├── SSZipArchive.m │ │ │ │ ├── SSZipCommon.h │ │ │ │ ├── ZipArchive.h │ │ │ │ ├── aes │ │ │ │ ├── aes.h │ │ │ │ ├── aes_via_ace.h │ │ │ │ ├── aescrypt.c │ │ │ │ ├── aeskey.c │ │ │ │ ├── aesopt.h │ │ │ │ ├── aestab.c │ │ │ │ ├── aestab.h │ │ │ │ ├── brg_endian.h │ │ │ │ ├── brg_types.h │ │ │ │ ├── entropy.c │ │ │ │ ├── entropy.h │ │ │ │ ├── fileenc.c │ │ │ │ ├── fileenc.h │ │ │ │ ├── hmac.c │ │ │ │ ├── hmac.h │ │ │ │ ├── prng.c │ │ │ │ ├── prng.h │ │ │ │ ├── pwd2key.c │ │ │ │ ├── pwd2key.h │ │ │ │ ├── sha1.c │ │ │ │ └── sha1.h │ │ │ │ └── minizip │ │ │ │ ├── crypt.h │ │ │ │ ├── ioapi.c │ │ │ │ ├── ioapi.h │ │ │ │ ├── mztools.c │ │ │ │ ├── mztools.h │ │ │ │ ├── unzip.c │ │ │ │ ├── unzip.h │ │ │ │ ├── zip.c │ │ │ │ └── zip.h │ │ ├── SVProgressHUD │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ └── SVProgressHUD │ │ │ │ ├── SVIndefiniteAnimatedView.h │ │ │ │ ├── SVIndefiniteAnimatedView.m │ │ │ │ ├── SVProgressAnimatedView.h │ │ │ │ ├── SVProgressAnimatedView.m │ │ │ │ ├── SVProgressHUD.bundle │ │ │ │ ├── angle-mask.png │ │ │ │ ├── angle-mask@2x.png │ │ │ │ ├── angle-mask@3x.png │ │ │ │ ├── error.png │ │ │ │ ├── error@2x.png │ │ │ │ ├── error@3x.png │ │ │ │ ├── info.png │ │ │ │ ├── info@2x.png │ │ │ │ ├── info@3x.png │ │ │ │ ├── success.png │ │ │ │ ├── success@2x.png │ │ │ │ └── success@3x.png │ │ │ │ ├── SVProgressHUD.h │ │ │ │ ├── SVProgressHUD.m │ │ │ │ ├── SVRadialGradientLayer.h │ │ │ │ └── SVRadialGradientLayer.m │ │ ├── TZImagePickerController │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ └── TZImagePickerController │ │ │ │ └── TZImagePickerController │ │ │ │ ├── NSBundle+TZImagePicker.h │ │ │ │ ├── NSBundle+TZImagePicker.m │ │ │ │ ├── TZAssetCell.h │ │ │ │ ├── TZAssetCell.m │ │ │ │ ├── TZAssetModel.h │ │ │ │ ├── TZAssetModel.m │ │ │ │ ├── TZGifPhotoPreviewController.h │ │ │ │ ├── TZGifPhotoPreviewController.m │ │ │ │ ├── TZImageCropManager.h │ │ │ │ ├── TZImageCropManager.m │ │ │ │ ├── TZImageManager.h │ │ │ │ ├── TZImageManager.m │ │ │ │ ├── TZImagePickerController.bundle │ │ │ │ ├── MMVideoPreviewPlay@2x.png │ │ │ │ ├── MMVideoPreviewPlayHL@2x.png │ │ │ │ ├── Root.plist │ │ │ │ ├── TableViewArrow@2x.png │ │ │ │ ├── VideoSendIcon@2x.png │ │ │ │ ├── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── navi_back@2x.png │ │ │ │ ├── photo_def_photoPickerVc@2x.png │ │ │ │ ├── photo_def_previewVc@2x.png │ │ │ │ ├── photo_number_icon@2x.png │ │ │ │ ├── photo_original_def@2x.png │ │ │ │ ├── photo_original_sel@2x.png │ │ │ │ ├── photo_sel_photoPickerVc@2x.png │ │ │ │ ├── photo_sel_previewVc@2x.png │ │ │ │ ├── preview_number_icon@2x.png │ │ │ │ ├── preview_original_def@2x.png │ │ │ │ ├── takePicture@2x.png │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── TZImagePickerController.h │ │ │ │ ├── TZImagePickerController.m │ │ │ │ ├── TZPhotoPickerController.h │ │ │ │ ├── TZPhotoPickerController.m │ │ │ │ ├── TZPhotoPreviewCell.h │ │ │ │ ├── TZPhotoPreviewCell.m │ │ │ │ ├── TZPhotoPreviewController.h │ │ │ │ ├── TZPhotoPreviewController.m │ │ │ │ ├── TZProgressView.h │ │ │ │ ├── TZProgressView.m │ │ │ │ ├── TZVideoPlayerController.h │ │ │ │ ├── TZVideoPlayerController.m │ │ │ │ ├── UIView+Layout.h │ │ │ │ └── UIView+Layout.m │ │ ├── Target Support Files │ │ │ ├── CocoaLumberjack │ │ │ │ ├── CocoaLumberjack-dummy.m │ │ │ │ ├── CocoaLumberjack-prefix.pch │ │ │ │ └── CocoaLumberjack.xcconfig │ │ │ ├── FMDB │ │ │ │ ├── FMDB-dummy.m │ │ │ │ ├── FMDB-prefix.pch │ │ │ │ └── FMDB.xcconfig │ │ │ ├── M80AttributedLabel │ │ │ │ ├── M80AttributedLabel-dummy.m │ │ │ │ ├── M80AttributedLabel-prefix.pch │ │ │ │ └── M80AttributedLabel.xcconfig │ │ │ ├── Pods-NIMDemo-NIM │ │ │ │ ├── Pods-NIMDemo-NIM-acknowledgements.markdown │ │ │ │ ├── Pods-NIMDemo-NIM-acknowledgements.plist │ │ │ │ ├── Pods-NIMDemo-NIM-dummy.m │ │ │ │ ├── Pods-NIMDemo-NIM-frameworks.sh │ │ │ │ ├── Pods-NIMDemo-NIM-resources.sh │ │ │ │ ├── Pods-NIMDemo-NIM.debug.xcconfig │ │ │ │ └── Pods-NIMDemo-NIM.release.xcconfig │ │ │ ├── Pods-NIMDemo-NIMKit │ │ │ │ ├── Pods-NIMDemo-NIMKit-acknowledgements.markdown │ │ │ │ ├── Pods-NIMDemo-NIMKit-acknowledgements.plist │ │ │ │ ├── Pods-NIMDemo-NIMKit-dummy.m │ │ │ │ ├── Pods-NIMDemo-NIMKit-frameworks.sh │ │ │ │ ├── Pods-NIMDemo-NIMKit-resources.sh │ │ │ │ ├── Pods-NIMDemo-NIMKit.debug.xcconfig │ │ │ │ └── Pods-NIMDemo-NIMKit.release.xcconfig │ │ │ ├── Reachability │ │ │ │ ├── Reachability-dummy.m │ │ │ │ ├── Reachability-prefix.pch │ │ │ │ └── Reachability.xcconfig │ │ │ ├── SDWebImage │ │ │ │ ├── SDWebImage-dummy.m │ │ │ │ ├── SDWebImage-prefix.pch │ │ │ │ └── SDWebImage.xcconfig │ │ │ ├── SSZipArchive │ │ │ │ ├── SSZipArchive-dummy.m │ │ │ │ ├── SSZipArchive-prefix.pch │ │ │ │ └── SSZipArchive.xcconfig │ │ │ ├── SVProgressHUD │ │ │ │ ├── SVProgressHUD-dummy.m │ │ │ │ ├── SVProgressHUD-prefix.pch │ │ │ │ └── SVProgressHUD.xcconfig │ │ │ ├── TZImagePickerController │ │ │ │ ├── TZImagePickerController-dummy.m │ │ │ │ ├── TZImagePickerController-prefix.pch │ │ │ │ └── TZImagePickerController.xcconfig │ │ │ └── Toast │ │ │ │ ├── Toast-dummy.m │ │ │ │ ├── Toast-prefix.pch │ │ │ │ └── Toast.xcconfig │ │ └── Toast │ │ │ ├── Toast │ │ │ └── Toast │ │ │ │ ├── UIView+Toast.h │ │ │ │ └── UIView+Toast.m │ │ │ ├── license │ │ │ └── readme.markdown │ ├── Settings.bundle │ │ ├── Root.plist │ │ └── en.lproj │ │ │ └── Root.strings │ └── 请点NIM.xcworkspace进入工程.txt └── NIMKit │ ├── NIMKit.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── NIMKit │ ├── Classes │ │ ├── Category │ │ │ ├── M80AttributedLabel+NIMKit.h │ │ │ ├── M80AttributedLabel+NIMKit.m │ │ │ ├── NIMExtensionHelper.h │ │ │ ├── NIMExtensionHelper.m │ │ │ ├── NSString+NIMKit.h │ │ │ ├── NSString+NIMKit.m │ │ │ ├── UIImage+NIM.h │ │ │ ├── UIImage+NIM.m │ │ │ ├── UITableView+NIMScrollToBottom.h │ │ │ ├── UITableView+NIMScrollToBottom.m │ │ │ ├── UIView+NIM.h │ │ │ └── UIView+NIM.m │ │ ├── Global │ │ │ ├── NIMCommonTableData.h │ │ │ ├── NIMCommonTableData.m │ │ │ ├── NIMCommonTableDelegate.h │ │ │ ├── NIMCommonTableDelegate.m │ │ │ ├── NIMCommonTableViewCell.h │ │ │ ├── NIMGlobalMacro.h │ │ │ ├── NIMKitColorButtonCell.h │ │ │ ├── NIMKitColorButtonCell.m │ │ │ ├── NIMKitDataProviderImpl.h │ │ │ ├── NIMKitDataProviderImpl.m │ │ │ ├── NIMKitSwitcherCell.h │ │ │ ├── NIMKitSwitcherCell.m │ │ │ ├── NIMKitUIConfig.h │ │ │ └── NIMKitUIConfig.m │ │ ├── NIMKit.h │ │ ├── NIMKit.m │ │ ├── Protocols │ │ │ ├── NIMCellConfig.h │ │ │ ├── NIMInputProtocol.h │ │ │ ├── NIMKitDataProvider.h │ │ │ ├── NIMKitMessageProvider.h │ │ │ ├── NIMMessageCellProtocol.h │ │ │ └── NIMSessionConfig.h │ │ └── Sections │ │ │ ├── Common │ │ │ ├── NIMAvatarImageView.h │ │ │ ├── NIMAvatarImageView.m │ │ │ ├── NIMBadgeView.h │ │ │ ├── NIMBadgeView.m │ │ │ ├── NIMCustomLeftBarView.h │ │ │ ├── NIMCustomLeftBarView.m │ │ │ ├── NIMKitMediaFetcher.h │ │ │ ├── NIMKitMediaFetcher.m │ │ │ ├── NIMKitNotificationFirer.h │ │ │ ├── NIMKitNotificationFirer.m │ │ │ ├── NIMLoadProgressView.h │ │ │ ├── NIMLoadProgressView.m │ │ │ ├── NIMMemberGroupView.h │ │ │ ├── NIMMemberGroupView.m │ │ │ ├── NIMPageView.h │ │ │ └── NIMPageView.m │ │ │ ├── Contact │ │ │ ├── Cell │ │ │ │ ├── NIMContactDataCell.h │ │ │ │ ├── NIMContactDataCell.m │ │ │ │ └── NIMContactDefines.h │ │ │ ├── ContactGroup │ │ │ │ ├── NIMGroupedDataCollection.h │ │ │ │ ├── NIMGroupedDataCollection.m │ │ │ │ ├── NIMGroupedUsrInfo.h │ │ │ │ └── NIMGroupedUsrInfo.m │ │ │ ├── NIMContactDataItem.h │ │ │ ├── NIMContactDataItem.m │ │ │ ├── NIMContactPickedView.h │ │ │ ├── NIMContactPickedView.m │ │ │ ├── NIMContactSelectConfig.h │ │ │ ├── NIMContactSelectConfig.m │ │ │ ├── NIMContactSelectTabView.h │ │ │ ├── NIMContactSelectTabView.m │ │ │ ├── NIMContactSelectViewController.h │ │ │ └── NIMContactSelectViewController.m │ │ │ ├── Input │ │ │ ├── GrowingTextView │ │ │ │ ├── NIMGrowingInternalTextView.h │ │ │ │ ├── NIMGrowingInternalTextView.m │ │ │ │ ├── NIMGrowingTextView.h │ │ │ │ └── NIMGrowingTextView.m │ │ │ ├── NIMInputAtCache.h │ │ │ ├── NIMInputAtCache.m │ │ │ ├── NIMInputAudioRecordIndicatorView.h │ │ │ ├── NIMInputAudioRecordIndicatorView.m │ │ │ ├── NIMInputBarItemType.h │ │ │ ├── NIMInputEmoticonButton.h │ │ │ ├── NIMInputEmoticonButton.m │ │ │ ├── NIMInputEmoticonContainerView.h │ │ │ ├── NIMInputEmoticonContainerView.m │ │ │ ├── NIMInputEmoticonDefine.h │ │ │ ├── NIMInputEmoticonManager.h │ │ │ ├── NIMInputEmoticonManager.m │ │ │ ├── NIMInputEmoticonParser.h │ │ │ ├── NIMInputEmoticonParser.m │ │ │ ├── NIMInputEmoticonTabView.h │ │ │ ├── NIMInputEmoticonTabView.m │ │ │ ├── NIMInputMoreContainerView.h │ │ │ ├── NIMInputMoreContainerView.m │ │ │ ├── NIMInputToolBar.h │ │ │ ├── NIMInputToolBar.m │ │ │ ├── NIMInputView.h │ │ │ └── NIMInputView.m │ │ │ ├── Model │ │ │ ├── NIMKitEvent.h │ │ │ ├── NIMKitEvent.m │ │ │ ├── NIMKitInfo.h │ │ │ ├── NIMKitInfo.m │ │ │ ├── NIMKitInfoFetchOption.h │ │ │ ├── NIMKitInfoFetchOption.m │ │ │ ├── NIMMediaItem.h │ │ │ ├── NIMMediaItem.m │ │ │ ├── NIMMessageModel.h │ │ │ ├── NIMMessageModel.m │ │ │ ├── NIMTimestampModel.h │ │ │ └── NIMTimestampModel.m │ │ │ ├── Session │ │ │ ├── Config │ │ │ │ ├── Content │ │ │ │ │ ├── NIMAudioContentConfig.h │ │ │ │ │ ├── NIMAudioContentConfig.m │ │ │ │ │ ├── NIMBaseSessionContentConfig.h │ │ │ │ │ ├── NIMBaseSessionContentConfig.m │ │ │ │ │ ├── NIMFileContentConfig.h │ │ │ │ │ ├── NIMFileContentConfig.m │ │ │ │ │ ├── NIMImageContentConfig.h │ │ │ │ │ ├── NIMImageContentConfig.m │ │ │ │ │ ├── NIMLocationContentConfig.h │ │ │ │ │ ├── NIMLocationContentConfig.m │ │ │ │ │ ├── NIMNotificationContentConfig.h │ │ │ │ │ ├── NIMNotificationContentConfig.m │ │ │ │ │ ├── NIMTextContentConfig.h │ │ │ │ │ ├── NIMTextContentConfig.m │ │ │ │ │ ├── NIMTipContentConfig.h │ │ │ │ │ ├── NIMTipContentConfig.m │ │ │ │ │ ├── NIMUnsupportContentConfig.h │ │ │ │ │ ├── NIMUnsupportContentConfig.m │ │ │ │ │ ├── NIMVideoContentConfig.h │ │ │ │ │ └── NIMVideoContentConfig.m │ │ │ │ ├── NIMCellLayoutConfig.h │ │ │ │ └── NIMCellLayoutConfig.m │ │ │ ├── Model │ │ │ │ ├── NIMKitLocationPoint.h │ │ │ │ ├── NIMKitLocationPoint.m │ │ │ │ ├── NIMKitMessageAtModel.h │ │ │ │ ├── NIMKitMessageAtModel.m │ │ │ │ ├── NIMMessageCellFactory.h │ │ │ │ ├── NIMMessageCellFactory.m │ │ │ │ ├── NIMMessageMaker.h │ │ │ │ └── NIMMessageMaker.m │ │ │ ├── Object │ │ │ │ ├── NIMKitAudioCenter.h │ │ │ │ ├── NIMKitAudioCenter.m │ │ │ │ ├── NIMSessionConfigurateProtocol.h │ │ │ │ ├── NIMSessionConfigurator.h │ │ │ │ ├── NIMSessionConfigurator.m │ │ │ │ ├── NIMSessionDataSourceImpl.h │ │ │ │ ├── NIMSessionDataSourceImpl.m │ │ │ │ ├── NIMSessionInteractorImpl.h │ │ │ │ ├── NIMSessionInteractorImpl.m │ │ │ │ ├── NIMSessionLayoutImpl.h │ │ │ │ ├── NIMSessionLayoutImpl.m │ │ │ │ ├── NIMSessionMsgDatasource.h │ │ │ │ ├── NIMSessionMsgDatasource.m │ │ │ │ ├── NIMSessionPrivateProtocol.h │ │ │ │ ├── NIMSessionTableAdapter.h │ │ │ │ └── NIMSessionTableAdapter.m │ │ │ ├── View │ │ │ │ ├── NIMMessageCell.h │ │ │ │ ├── NIMMessageCell.m │ │ │ │ ├── NIMSessionTimestampCell.h │ │ │ │ ├── NIMSessionTimestampCell.m │ │ │ │ └── SessionContentView │ │ │ │ │ ├── NIMSessionAudioContentView.h │ │ │ │ │ ├── NIMSessionAudioContentView.m │ │ │ │ │ ├── NIMSessionFileTransContentView.h │ │ │ │ │ ├── NIMSessionFileTransContentView.m │ │ │ │ │ ├── NIMSessionImageContentView.h │ │ │ │ │ ├── NIMSessionImageContentView.m │ │ │ │ │ ├── NIMSessionLocationContentView.h │ │ │ │ │ ├── NIMSessionLocationContentView.m │ │ │ │ │ ├── NIMSessionMessageContentView.h │ │ │ │ │ ├── NIMSessionMessageContentView.m │ │ │ │ │ ├── NIMSessionNetChatNotifyContentView.h │ │ │ │ │ ├── NIMSessionNetChatNotifyContentView.m │ │ │ │ │ ├── NIMSessionNotificationContentView.h │ │ │ │ │ ├── NIMSessionNotificationContentView.m │ │ │ │ │ ├── NIMSessionTextContentView.h │ │ │ │ │ ├── NIMSessionTextContentView.m │ │ │ │ │ ├── NIMSessionUnknowContentView.h │ │ │ │ │ ├── NIMSessionUnknowContentView.m │ │ │ │ │ ├── NIMSessionVideoContentView.h │ │ │ │ │ └── NIMSessionVideoContentView.m │ │ │ └── ViewController │ │ │ │ ├── NIMLocationViewController.h │ │ │ │ ├── NIMLocationViewController.m │ │ │ │ ├── NIMSessionViewController.h │ │ │ │ └── NIMSessionViewController.m │ │ │ ├── SessionList │ │ │ ├── Config │ │ │ │ ├── NIMSessionListDefaultConfig.h │ │ │ │ └── NIMSessionListDefaultConfig.m │ │ │ ├── NIMSessionListViewController.h │ │ │ ├── NIMSessionListViewController.m │ │ │ └── View │ │ │ │ ├── NIMSessionListCell.h │ │ │ │ └── NIMSessionListCell.m │ │ │ ├── Team │ │ │ ├── Model │ │ │ │ ├── NIMCardDataSourceProtocol.h │ │ │ │ ├── NIMCardMemberItem.h │ │ │ │ ├── NIMCardMemberItem.m │ │ │ │ ├── NIMTeamCardOperationItem.h │ │ │ │ ├── NIMTeamCardOperationItem.m │ │ │ │ ├── NIMTeamCardRowItem.h │ │ │ │ ├── NIMTeamCardRowItem.m │ │ │ │ ├── NIMTeamInfoData.h │ │ │ │ ├── NIMTeamInfoData.m │ │ │ │ ├── NIMUsrInfoData.h │ │ │ │ └── NIMUsrInfoData.m │ │ │ ├── NIMAdvancedTeamCardViewController.h │ │ │ ├── NIMAdvancedTeamCardViewController.m │ │ │ ├── NIMCreateTeamAnnouncement.h │ │ │ ├── NIMCreateTeamAnnouncement.m │ │ │ ├── NIMNormalTeamCardViewController.h │ │ │ ├── NIMNormalTeamCardViewController.m │ │ │ ├── NIMTeamAnnouncementListViewController.h │ │ │ ├── NIMTeamAnnouncementListViewController.m │ │ │ ├── NIMTeamMemberCardViewController.h │ │ │ ├── NIMTeamMemberCardViewController.m │ │ │ ├── NIMTeamMemberListViewController.h │ │ │ ├── NIMTeamMemberListViewController.m │ │ │ └── View │ │ │ │ ├── NIMAdvancedTeamMemberCell.h │ │ │ │ ├── NIMAdvancedTeamMemberCell.m │ │ │ │ ├── NIMTeamAnnouncementListCell.h │ │ │ │ ├── NIMTeamAnnouncementListCell.m │ │ │ │ ├── NIMTeamCardHeaderCell.h │ │ │ │ ├── NIMTeamCardHeaderCell.m │ │ │ │ ├── NIMTeamMemberCardHeaderCell.h │ │ │ │ ├── NIMTeamMemberCardHeaderCell.m │ │ │ │ ├── NIMTeamSwitchTableViewCell.h │ │ │ │ ├── NIMTeamSwitchTableViewCell.m │ │ │ │ ├── NIMTimePickerView.h │ │ │ │ └── NIMTimePickerView.m │ │ │ └── Util │ │ │ ├── NIMKitDevice.h │ │ │ ├── NIMKitDevice.m │ │ │ ├── NIMKitFileLocationHelper.h │ │ │ ├── NIMKitFileLocationHelper.m │ │ │ ├── NIMKitTimerHolder.h │ │ │ ├── NIMKitTimerHolder.m │ │ │ ├── NIMKitUtil.h │ │ │ ├── NIMKitUtil.m │ │ │ └── Spelling │ │ │ ├── NIMPinyinConverter.h │ │ │ ├── NIMPinyinConverter.m │ │ │ ├── NIMSpellingCenter.h │ │ │ └── NIMSpellingCenter.m │ ├── Supporting Files │ │ └── Info.plist │ └── Vendors │ │ ├── NIMAVChat │ │ ├── Libs │ │ │ ├── libnio.a │ │ │ ├── libnts.a │ │ │ ├── libnvs.a │ │ │ ├── libopenh264.a │ │ │ └── libopus.a │ │ └── NIMAVChat.framework │ │ │ ├── Headers │ │ │ ├── NIMAVChat.h │ │ │ ├── NIMAVChatDefs.h │ │ │ ├── NIMAVChatHeader.h │ │ │ ├── NIMAVChatNetDetectManagerProtocol.h │ │ │ ├── NIMAVChatNetDetectResult.h │ │ │ ├── NIMNetCallAudioFileMixTask.h │ │ │ ├── NIMNetCallManagerProtocol.h │ │ │ ├── NIMNetCallMeeting.h │ │ │ ├── NIMNetCallOption.h │ │ │ ├── NIMNetCallRecordingInfo.h │ │ │ ├── NIMNetCallUserInfo.h │ │ │ ├── NIMNetCallVideoCaptureParam.h │ │ │ ├── NIMRTSConference.h │ │ │ ├── NIMRTSConferenceData.h │ │ │ ├── NIMRTSConferenceManagerProtocol.h │ │ │ ├── NIMRTSManagerProtocol.h │ │ │ ├── NIMRTSOption.h │ │ │ └── NIMRTSRecordingInfo.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ └── module.modulemap │ │ │ ├── NIMAVChat │ │ │ └── _CodeSignature │ │ │ ├── CodeDirectory │ │ │ ├── CodeRequirements │ │ │ ├── CodeRequirements-1 │ │ │ ├── CodeResources │ │ │ └── CodeSignature │ │ └── NIMSDK │ │ ├── Libs │ │ ├── libaacplus.a │ │ ├── libcrypto.a │ │ ├── libevent.a │ │ └── libssl.a │ │ └── NIMSDK.framework │ │ ├── Headers │ │ ├── NIMAntiSpamOption.h │ │ ├── NIMApnsManagerProtocol.h │ │ ├── NIMAudioObject.h │ │ ├── NIMChatManagerProtocol.h │ │ ├── NIMChatroom.h │ │ ├── NIMChatroomEnterRequest.h │ │ ├── NIMChatroomManagerProtocol.h │ │ ├── NIMChatroomMember.h │ │ ├── NIMChatroomMemberRequest.h │ │ ├── NIMChatroomNotificationContent.h │ │ ├── NIMChatroomQueueRequest.h │ │ ├── NIMChatroomUpdateRequest.h │ │ ├── NIMConversationManagerProtocol.h │ │ ├── NIMCreateTeamOption.h │ │ ├── NIMCustomObject.h │ │ ├── NIMCustomSystemNotificationSetting.h │ │ ├── NIMDocTranscodingInfo.h │ │ ├── NIMDocTranscodingManagerProtocol.h │ │ ├── NIMEventSubscribeManagerProtocol.h │ │ ├── NIMFileObject.h │ │ ├── NIMGlobalDefs.h │ │ ├── NIMImageObject.h │ │ ├── NIMLocationObject.h │ │ ├── NIMLoginClient.h │ │ ├── NIMLoginManagerProtocol.h │ │ ├── NIMMediaManagerProtocol.h │ │ ├── NIMMessage.h │ │ ├── NIMMessageApnsMemberOption.h │ │ ├── NIMMessageChatroomExtension.h │ │ ├── NIMMessageObjectProtocol.h │ │ ├── NIMMessageReceipt.h │ │ ├── NIMMessageSearchOption.h │ │ ├── NIMMessageSetting.h │ │ ├── NIMNetCallNotificationContent.h │ │ ├── NIMNotificationContent.h │ │ ├── NIMNotificationObject.h │ │ ├── NIMPushNotificationSetting.h │ │ ├── NIMRecentSession.h │ │ ├── NIMResourceManagerProtocol.h │ │ ├── NIMRevokeMessageNotification.h │ │ ├── NIMSDK.h │ │ ├── NIMSDKConfig.h │ │ ├── NIMSDKHeader.h │ │ ├── NIMSession.h │ │ ├── NIMSubscribeEvent.h │ │ ├── NIMSubscribeOnlineInfo.h │ │ ├── NIMSubscribeRequest.h │ │ ├── NIMSubscribeResult.h │ │ ├── NIMSystemNotification.h │ │ ├── NIMSystemNotificationManagerProtocol.h │ │ ├── NIMTeam.h │ │ ├── NIMTeamDefs.h │ │ ├── NIMTeamManagerProtocol.h │ │ ├── NIMTeamMember.h │ │ ├── NIMTeamNotificationContent.h │ │ ├── NIMTipObject.h │ │ ├── NIMUnsupportedNotificationContent.h │ │ ├── NIMUser.h │ │ ├── NIMUserManagerProtocol.h │ │ └── NIMVideoObject.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── NIMSDK │ │ └── _CodeSignature │ │ ├── CodeDirectory │ │ ├── CodeRequirements │ │ ├── CodeRequirements-1 │ │ ├── CodeResources │ │ └── CodeSignature │ └── version.ini ├── README.md └── screenshots ├── 4.37.07.png ├── 4.37.13.png ├── 4.38.00.png ├── 4.39.21.png ├── 4.40.09.png ├── 4.40.30.png ├── 4.41.09.png ├── 4.41.33.png ├── 4.41.40.png ├── 4.41.55.png ├── 4.42.01.png ├── 4.42.07.png ├── 4.42.19.png ├── 4.42.34.png ├── 4.42.38.png ├── 4.42.51.png ├── 4.43.42.png ├── 4.44.37.png ├── 4.46.52.png └── 4.48.10.png /NIM_iOS_Demo_v3/NIMDemo/.idea/.name: -------------------------------------------------------------------------------- 1 | NIM -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/.idea/NIMDemo.iml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/.idea/xcode.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIM.xcodeproj/NIMDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIM.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@2x-1.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/AppIcon.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/1.imageset/1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/1.imageset/1.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "1.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/10.imageset/10.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/10.imageset/10.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/10.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "10.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/2.imageset/2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/2.imageset/2.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "2.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/3.imageset/3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/3.imageset/3.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/3.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "3.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/4.imageset/4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/4.imageset/4.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/4.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "4.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/5.imageset/5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/5.imageset/5.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/5.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "5.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/6.imageset/6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/6.imageset/6.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/6.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "6.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/7.imageset/7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/7.imageset/7.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/7.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "7.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/8.imageset/8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/8.imageset/8.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/8.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "8.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/9.imageset/9.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/9.imageset/9.pdf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/9.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "9.pdf" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/avatar_team.imageset/avatar_team@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Avatar/avatar_team.imageset/avatar_team@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Chatroom/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Chatroom/Cover/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Contact/contact_bg.imageset/contact_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Contact/contact_bg.imageset/contact_bg@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_bottle.imageset/ff_IconBottle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_bottle.imageset/ff_IconBottle.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_bottle.imageset/ff_IconBottle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_bottle.imageset/ff_IconBottle@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_bottle.imageset/ff_IconBottle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_bottle.imageset/ff_IconBottle@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_friends.imageset/ff_IconShowAlbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_friends.imageset/ff_IconShowAlbum.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_friends.imageset/ff_IconShowAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_friends.imageset/ff_IconShowAlbum@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_friends.imageset/ff_IconShowAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_friends.imageset/ff_IconShowAlbum@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_game.imageset/MoreGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_game.imageset/MoreGame.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_game.imageset/MoreGame@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_game.imageset/MoreGame@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_game.imageset/MoreGame@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_game.imageset/MoreGame@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_nearby.imageset/ff_IconLocationService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_nearby.imageset/ff_IconLocationService.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_nearby.imageset/ff_IconLocationService@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_nearby.imageset/ff_IconLocationService@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_nearby.imageset/ff_IconLocationService@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_nearby.imageset/ff_IconLocationService@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_programs.imageset/find_programs@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_programs.imageset/find_programs@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_scan.imageset/ff_IconQRCode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_scan.imageset/ff_IconQRCode.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_scan.imageset/ff_IconQRCode@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_scan.imageset/ff_IconQRCode@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_scan.imageset/ff_IconQRCode@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_scan.imageset/ff_IconQRCode@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_shake.imageset/ff_IconShake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_shake.imageset/ff_IconShake.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_shake.imageset/ff_IconShake@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_shake.imageset/ff_IconShake@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_shake.imageset/ff_IconShake@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_shake.imageset/ff_IconShake@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_shopping.imageset/CreditCard_ShoppingBag@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Find/find_shopping.imageset/CreditCard_ShoppingBag@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_add_normal.imageset/icon_add_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_add_normal.imageset/icon_add_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_add_pressed.imageset/icon_add_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_add_pressed.imageset/icon_add_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_remove_normal.imageset/icon_remove_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_remove_normal.imageset/icon_remove_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_team_creator.imageset/icon_team_creator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_team_creator.imageset/icon_team_creator@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_team_manager.imageset/icon_team_manager@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Group/icon_team_manager.imageset/icon_team_manager@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Input/btn_dot_gray.imageset/btn_dot_gray@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Input/btn_dot_gray.imageset/btn_dot_gray@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Input/btn_dot_green.imageset/btn_dot_green@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Input/btn_dot_green.imageset/btn_dot_green@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x-1.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage-568h@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage-800-667h@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage@2x-1.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/LaunchImage.launchimage/LaunchImage@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_bg.imageset/login_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_bg.imageset/login_bg@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_clear.imageset/login_icon_clear@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_clear.imageset/login_icon_clear@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_pwd_.imageset/login_icon_pwd_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_pwd_.imageset/login_icon_pwd_@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_usr_.imageset/login_icon_usr_@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_icon_usr_.imageset/login_icon_usr_@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_logo.imageset/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_logo.imageset/logo@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_logo.imageset/logo@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Login/login_logo.imageset/logo@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_camera_normal.imageset/btn_camera_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_camera_normal.imageset/btn_camera_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_camera_normal.imageset/btn_camera_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_camera_normal.imageset/btn_camera_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_disable.imageset/btn_mute_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_disable.imageset/btn_mute_disable@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_disable.imageset/btn_mute_disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_disable.imageset/btn_mute_disable@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_normal.imageset/btn_mute_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_normal.imageset/btn_mute_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_normal.imageset/btn_mute_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_normal.imageset/btn_mute_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_pressed.imageset/btn_mute_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_pressed.imageset/btn_mute_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_pressed.imageset/btn_mute_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_mute_pressed.imageset/btn_mute_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_record_normal.imageset/btn_record_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_record_normal.imageset/btn_record_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_record_normal.imageset/btn_record_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_record_normal.imageset/btn_record_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_switch_av.imageset/btn_switch_av@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_switch_av.imageset/btn_switch_av@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_disabled.imageset/btn_turn_disabled@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_disabled.imageset/btn_turn_disabled@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_disabled.imageset/btn_turn_disabled@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_disabled.imageset/btn_turn_disabled@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_normal.imageset/btn_turn_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_normal.imageset/btn_turn_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_normal.imageset/btn_turn_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_normal.imageset/btn_turn_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_pressed.imageset/btn_turn_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_pressed.imageset/btn_turn_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_pressed.imageset/btn_turn_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_turn_pressed.imageset/btn_turn_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_voice_disable.imageset/btn_voice_disable@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_voice_disable.imageset/btn_voice_disable@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_voice_disable.imageset/btn_voice_disable@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_voice_disable.imageset/btn_voice_disable@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_vvoice_normal.imageset/btn_vvoice_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_vvoice_normal.imageset/btn_vvoice_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_vvoice_normal.imageset/btn_vvoice_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/btn_vvoice_normal.imageset/btn_vvoice_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/ic_switch_video.imageset/ic_switch_video@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/ic_switch_video.imageset/ic_switch_video@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/ic_switch_voice.imageset/ic_switch_voice@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/ic_switch_voice.imageset/ic_switch_voice@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netcall_bkg.imageset/netcall_bkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netcall_bkg.imageset/netcall_bkg@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_0.imageset/netstat_0@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_0.imageset/netstat_0@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_1.imageset/netstat_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_1.imageset/netstat_1@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_2.imageset/netstat_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_2.imageset/netstat_2@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_3.imageset/netstat_3@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Netcall/netstat_3.imageset/netstat_3@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_collection.imageset/MoreMyFavorites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_collection.imageset/MoreMyFavorites.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_collection.imageset/MoreMyFavorites@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_collection.imageset/MoreMyFavorites@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_collection.imageset/MoreMyFavorites@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_collection.imageset/MoreMyFavorites@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_money.imageset/MoreMyBankCard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_money.imageset/MoreMyBankCard.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_money.imageset/MoreMyBankCard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_money.imageset/MoreMyBankCard@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_money.imageset/MoreMyBankCard@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_money.imageset/MoreMyBankCard@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_photo.imageset/MoreMyAlbum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_photo.imageset/MoreMyAlbum.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_photo.imageset/MoreMyAlbum@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_photo.imageset/MoreMyAlbum@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_photo.imageset/MoreMyAlbum@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_photo.imageset/MoreMyAlbum@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_qrcode.imageset/qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_qrcode.imageset/qrcode.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_setting.imageset/MoreSetting@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_setting.imageset/MoreSetting@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_setting.imageset/MoreSetting@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Profile/profile_setting.imageset/MoreSetting@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/Setting/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/icon_gender_female.imageset/icon_gender_female@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/icon_gender_female.imageset/icon_gender_female@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/icon_gender_female.imageset/icon_gender_female@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/icon_gender_female.imageset/icon_gender_female@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/icon_gender_male.imageset/icon_gender_male@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/icon_gender_male.imageset/icon_gender_male@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/icon_gender_male.imageset/icon_gender_male@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/icon_gender_male.imageset/icon_gender_male@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/Clear_color_image.imageset/Clear_color_image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/Clear_color_image.imageset/Clear_color_image@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/MessageVideoPlay.imageset/MessageVideoPlay@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/MessageVideoPlay.imageset/MessageVideoPlay@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/MessageVideoPlay.imageset/MessageVideoPlay@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/MessageVideoPlay.imageset/MessageVideoPlay@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/SendTextViewBkg.imageset/SendTextViewBkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/SendTextViewBkg.imageset/SendTextViewBkg@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/SendTextViewBkg.imageset/SendTextViewBkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/SendTextViewBkg.imageset/SendTextViewBkg@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_Black.imageset/VoiceBtn_Black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_Black.imageset/VoiceBtn_Black@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_Black.imageset/VoiceBtn_Black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_Black.imageset/VoiceBtn_Black@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_BlackHL.imageset/VoiceBtn_BlackHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_BlackHL.imageset/VoiceBtn_BlackHL@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_BlackHL.imageset/VoiceBtn_BlackHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/VoiceBtn_BlackHL.imageset/VoiceBtn_BlackHL@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/avatar_user.imageset/DefaultAvatar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/avatar_user.imageset/DefaultAvatar@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/avatar_user.imageset/DefaultAvatar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/avatar_user.imageset/DefaultAvatar@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/btn_back_normal.imageset/btn_back_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/btn_back_normal.imageset/btn_back_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/btn_back_normal.imageset/btn_back_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/btn_back_normal.imageset/btn_back_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/btn_cross.imageset/btn_cross@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/btn_cross.imageset/btn_cross@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_jan.imageset/custom_msg_jan@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_jan.imageset/custom_msg_jan@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_ken.imageset/custom_msg_ken@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_ken.imageset/custom_msg_ken@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_pon.imageset/custom_msg_pon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/custom_msg_pon.imageset/custom_msg_pon@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_about_logo.imageset/about@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_about_logo.imageset/about@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_about_logo.imageset/about@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_about_logo.imageset/about@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_arrow.imageset/icon_arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_arrow.imageset/icon_arrow@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_arrow.imageset/icon_arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_arrow.imageset/icon_arrow@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_avatar_del.imageset/icon_avatar_del@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_avatar_del.imageset/icon_avatar_del@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_avatar_del.imageset/icon_avatar_del@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_avatar_del.imageset/icon_avatar_del@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_back_normal.imageset/icon_back_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_back_normal.imageset/icon_back_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_back_pressed.imageset/icon_back_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_back_pressed.imageset/icon_back_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_clients.imageset/icon_clients@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_clients.imageset/icon_clients@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_clients.imageset/icon_clients@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_clients.imageset/icon_clients@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_contact_normal.imageset/tabbar_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_contact_normal.imageset/tabbar_contacts@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_contact_normal.imageset/tabbar_contacts@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_contact_normal.imageset/tabbar_contacts@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_error.imageset/icon_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_error.imageset/icon_error@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_error.imageset/icon_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_error.imageset/icon_error@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_file.imageset/icon_file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_file.imageset/icon_file@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_normal.imageset/icon_log_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_normal.imageset/icon_log_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_normal.imageset/icon_log_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_normal.imageset/icon_log_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_pressed.imageset/icon_log_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_pressed.imageset/icon_log_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_pressed.imageset/icon_log_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_log_pressed.imageset/icon_log_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_message_normal.imageset/tabbar_mainframe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_message_normal.imageset/tabbar_mainframe@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_message_normal.imageset/tabbar_mainframe@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_message_normal.imageset/tabbar_mainframe@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_muti_clients.imageset/icon_muti_clients@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_muti_clients.imageset/icon_muti_clients@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_muti_clients.imageset/icon_muti_clients@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_muti_clients.imageset/icon_muti_clients@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_nickname.imageset/icon_nickname@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_nickname.imageset/icon_nickname@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_nickname.imageset/icon_nickname@3X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_nickname.imageset/icon_nickname@3X.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_setting_normal.imageset/tabbar_me@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_setting_normal.imageset/tabbar_me@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_setting_normal.imageset/tabbar_me@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_setting_normal.imageset/tabbar_me@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_setting_pressed.imageset/tabbar_meHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_setting_pressed.imageset/tabbar_meHL@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_setting_pressed.imageset/tabbar_meHL@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_setting_pressed.imageset/tabbar_meHL@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_normal.imageset/icon_tann_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_normal.imageset/icon_tann_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_normal.imageset/icon_tann_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_normal.imageset/icon_tann_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_pressed.imageset/icon_tann_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_pressed.imageset/icon_tann_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_pressed.imageset/icon_tann_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tann_pressed.imageset/icon_tann_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tinfo_normal.imageset/icon_tinfo_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tinfo_normal.imageset/icon_tinfo_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tinfo_normal.imageset/icon_tinfo_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/icon_tinfo_normal.imageset/icon_tinfo_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/login_input.imageset/login_input@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/login_input.imageset/login_input@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/record_selected.imageset/record_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/record_selected.imageset/record_selected@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/record_selected.imageset/record_selected@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/record_selected.imageset/record_selected@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contacts.imageset/tabbar_contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contacts.imageset/tabbar_contacts.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contacts.imageset/tabbar_contacts@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contacts.imageset/tabbar_contacts@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contactsHL.imageset/tabbar_contactsHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contactsHL.imageset/tabbar_contactsHL.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Images.xcassets/images/tabbar_contactsHL.imageset/tabbar_contactsHL@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Files/BlizzardReg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Files/BlizzardReg.ttf -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Files/SetupOSX.mpq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Files/SetupOSX.mpq -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Files/d3.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Files/d3.icns -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd001@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd002@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd003@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd004@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd005@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd006@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd007@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd008@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd009@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd009@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd010@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd010@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd011@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd011@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd012@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd012@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd013@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd013@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd014@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd014@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd015@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd015@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd016@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd016@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd017@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd017@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd018@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd018@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd019@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd019@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd020@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd020@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd021@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd021@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd022@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd022@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd023@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd023@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd024@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd024@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd025@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd025@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd026@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd026@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd027@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd027@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd028@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd028@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd029@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd029@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd030@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd030@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd031@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd031@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd032@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd032@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd033@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd033@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd034@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd034@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd035@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd035@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd036@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd036@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd037@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd037@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd038@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd038@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd039@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd039@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd040@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd040@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd041@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd041@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd042@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd042@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd043@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd043@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd044@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd044@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd045@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd045@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd046@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd046@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd047@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd047@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd048@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/ajmd/content/ajmd048@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt001@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt002@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt003@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt004@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt005@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt006@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt007@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt008@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt009@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt009@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt010@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt010@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt011@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt011@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt012@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt012@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt013@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt013@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt014@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt014@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt015@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt015@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt016@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt016@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt017@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt017@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt018@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt018@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt019@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt019@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt020@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/content/lt020@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/icon/lt_s_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/lt/icon/lt_s_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy001@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy001@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy002@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy002@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy003@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy003@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy004@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy004@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy005@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy005@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy006@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy006@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy007@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy007@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy008@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy008@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy009@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy009@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy010@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy010@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy011@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy011@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy012@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy012@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy013@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy013@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy014@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy014@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy015@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy015@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy016@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy016@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy017@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy017@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy018@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy018@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy019@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy019@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy020@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Chartlet/xxy/content/xxy020@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoj_s_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoj_s_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoj_s_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoj_s_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_00@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_00@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_01@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_01@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_02@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_02@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_03@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_03@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_04@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_04@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_05@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_05@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_06@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_06@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_07@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_07@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_08@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_08@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_09@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_09@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_100@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_100@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_101@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_101@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_102@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_102@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_103@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_103@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_104@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_104@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_105@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_105@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_106@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_106@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_107@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_107@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_108@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_108@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_109@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_109@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_10@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_10@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_110@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_110@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_111@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_111@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_112@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_112@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_113@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_113@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_114@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_114@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_115@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_115@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_116@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_116@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_117@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_117@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_118@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_118@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_119@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_119@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_11@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_11@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_120@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_120@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_121@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_121@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_122@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_122@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_123@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_123@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_124@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_124@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_125@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_125@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_126@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_126@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_127@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_127@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_128@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_129@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_129@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_12@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_12@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_130@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_130@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_131@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_131@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_132@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_132@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_133@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_133@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_134@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_134@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_135@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_135@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_136@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_136@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_137@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_137@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_138@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_138@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_139@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_139@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_13@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_13@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_140@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_140@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_141@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_141@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_142@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_142@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_143@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_143@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_144@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_144@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_145@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_145@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_146@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_146@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_147@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_147@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_148@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_148@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_149@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_149@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_14@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_14@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_150@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_150@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_151@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_151@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_152@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_152@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_15@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_15@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_160@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_160@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_161@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_161@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_162@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_162@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_163@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_163@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_164@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_164@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_165@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_165@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_166@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_166@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_16@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_17@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_17@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_18@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_18@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_19@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_19@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_200@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_200@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_20@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_21@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_21@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_22@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_22@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_23@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_23@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_24@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_24@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_25@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_25@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_26@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_26@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_27@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_27@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_28@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_28@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_29@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_30@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_30@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_31@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_31@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_32@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_33@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_33@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_34@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_34@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_35@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_35@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_36@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_36@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_37@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_37@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_38@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_38@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_39@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_39@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_40@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_41@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_41@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_42@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_42@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_43@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_43@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_44@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_44@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_45@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_45@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_46@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_46@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_47@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_47@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_48@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_48@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_49@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_49@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_50@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_51@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_51@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_52@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_52@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_53@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_53@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_54@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_54@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_55@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_55@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_56@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_56@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_57@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_58@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_58@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_59@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_59@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_60@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_61@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_61@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_62@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_62@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_63@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_63@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_64@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_64@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_65@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_65@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_66@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_66@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_67@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_67@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_68@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_68@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_69@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_69@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_70@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_70@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_71@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_71@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_72@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_73@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_73@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_74@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_74@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_75@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_75@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_76@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_77@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_77@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_78@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_78@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_79@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_79@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_80@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_80@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_81@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_81@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_82@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_82@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_83@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_83@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_84@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_84@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_85@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_85@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_86@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_86@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_87@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_87@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_88@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_88@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_89@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_89@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_90@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_90@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_91@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_91@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_92@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_92@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_93@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_93@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_94@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_94@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_95@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_95@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_96@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_96@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_97@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_97@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_98@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_98@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_99@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_99@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_del_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_del_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_del_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitEmoticon.bundle/Emoji/emoji_del_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_picture_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_position_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/bk_media_shoot_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_file@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_file@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_file@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_file@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_send_btn_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_text_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_text_bg@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_text_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_input_text_bg@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_map@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_map@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_map@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_map@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_message_cell_error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_message_cell_error@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_message_cell_error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_message_cell_error@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_play_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_play_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_play_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_play_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_receiver_node_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_session_time_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_session_time_bg@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_session_time_bg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_session_time_bg@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_pressed@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_pressed@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_pressed@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_add_pressed@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_voice_normal@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_voice_normal@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_voice_normal@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/icon_toolview_voice_normal@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/receivertextnodebkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/receivertextnodebkg@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/receivertextnodebkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/receivertextnodebkg@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/receivertextnodebkghl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/receivertextnodebkghl@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/receivertextnodebkghl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/receivertextnodebkghl@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/sendertextnodebkg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/sendertextnodebkg@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/sendertextnodebkg@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/sendertextnodebkg@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/sendertextnodebkghl@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/sendertextnodebkghl@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/sendertextnodebkghl@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/NIMKitResource.bundle/sendertextnodebkghl@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/message.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/message.wav -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_HangUp.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_HangUp.aac -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_OnCall.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_OnCall.aac -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_onTimer.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_onTimer.aac -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_receiver.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_receiver.aac -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_sender.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_chat_tip_sender.aac -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_connect_chat_tip_sender.aac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/NIMDemo/Supporting Files/Sounds/video_connect_chat_tip_sender.aac -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/angle-mask@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/error@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/info@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@2x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Pods/SVProgressHUD/SVProgressHUD/SVProgressHUD.bundle/success@3x.png -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/CocoaLumberjack/CocoaLumberjack-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_CocoaLumberjack : NSObject 3 | @end 4 | @implementation PodsDummy_CocoaLumberjack 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/CocoaLumberjack/CocoaLumberjack-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/FMDB/FMDB-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_FMDB : NSObject 3 | @end 4 | @implementation PodsDummy_FMDB 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/FMDB/FMDB-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/M80AttributedLabel/M80AttributedLabel-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_M80AttributedLabel : NSObject 3 | @end 4 | @implementation PodsDummy_M80AttributedLabel 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/M80AttributedLabel/M80AttributedLabel-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/Pods-NIMDemo-NIM/Pods-NIMDemo-NIM-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_NIMDemo_NIM : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_NIMDemo_NIM 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/Pods-NIMDemo-NIMKit/Pods-NIMDemo-NIMKit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_NIMDemo_NIMKit : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_NIMDemo_NIMKit 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/Reachability/Reachability-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Reachability : NSObject 3 | @end 4 | @implementation PodsDummy_Reachability 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/Reachability/Reachability-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/SDWebImage/SDWebImage-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SDWebImage : NSObject 3 | @end 4 | @implementation PodsDummy_SDWebImage 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/SDWebImage/SDWebImage-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/SSZipArchive/SSZipArchive-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SSZipArchive : NSObject 3 | @end 4 | @implementation PodsDummy_SSZipArchive 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/SSZipArchive/SSZipArchive-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_SVProgressHUD : NSObject 3 | @end 4 | @implementation PodsDummy_SVProgressHUD 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/SVProgressHUD/SVProgressHUD-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_TZImagePickerController : NSObject 3 | @end 4 | @implementation PodsDummy_TZImagePickerController 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/TZImagePickerController/TZImagePickerController-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/Toast/Toast-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Toast : NSObject 3 | @end 4 | @implementation PodsDummy_Toast 5 | @end 6 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Pods/Target Support Files/Toast/Toast-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/Settings.bundle/en.lproj/Root.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/Settings.bundle/en.lproj/Root.strings -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMDemo/请点NIM.xcworkspace进入工程.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMDemo/请点NIM.xcworkspace进入工程.txt -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libnio.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libnio.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libnts.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libnts.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libnvs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libnvs.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libopenh264.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libopenh264.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libopus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/Libs/libopus.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/Info.plist -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module NIMAVChat { 2 | umbrella header "NIMAVChat.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/NIMAVChat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/NIMAVChat -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMAVChat/NIMAVChat.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/Libs/libaacplus.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/Libs/libaacplus.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/Libs/libcrypto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/Libs/libcrypto.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/Libs/libevent.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/Libs/libevent.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/Libs/libssl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/Libs/libssl.a -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/Info.plist -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module NIMSDK { 2 | umbrella header "NIMSDK.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/NIMSDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/NIMSDK -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/_CodeSignature/CodeDirectory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/_CodeSignature/CodeDirectory -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/_CodeSignature/CodeRequirements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/_CodeSignature/CodeRequirements -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/_CodeSignature/CodeRequirements-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/_CodeSignature/CodeRequirements-1 -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/_CodeSignature/CodeSignature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/NIM_iOS_Demo_v3/NIMKit/NIMKit/Vendors/NIMSDK/NIMSDK.framework/_CodeSignature/CodeSignature -------------------------------------------------------------------------------- /NIM_iOS_Demo_v3/NIMKit/version.ini: -------------------------------------------------------------------------------- 1 | 1.4.0 -------------------------------------------------------------------------------- /screenshots/4.37.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.37.07.png -------------------------------------------------------------------------------- /screenshots/4.37.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.37.13.png -------------------------------------------------------------------------------- /screenshots/4.38.00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.38.00.png -------------------------------------------------------------------------------- /screenshots/4.39.21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.39.21.png -------------------------------------------------------------------------------- /screenshots/4.40.09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.40.09.png -------------------------------------------------------------------------------- /screenshots/4.40.30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.40.30.png -------------------------------------------------------------------------------- /screenshots/4.41.09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.41.09.png -------------------------------------------------------------------------------- /screenshots/4.41.33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.41.33.png -------------------------------------------------------------------------------- /screenshots/4.41.40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.41.40.png -------------------------------------------------------------------------------- /screenshots/4.41.55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.41.55.png -------------------------------------------------------------------------------- /screenshots/4.42.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.42.01.png -------------------------------------------------------------------------------- /screenshots/4.42.07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.42.07.png -------------------------------------------------------------------------------- /screenshots/4.42.19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.42.19.png -------------------------------------------------------------------------------- /screenshots/4.42.34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.42.34.png -------------------------------------------------------------------------------- /screenshots/4.42.38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.42.38.png -------------------------------------------------------------------------------- /screenshots/4.42.51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.42.51.png -------------------------------------------------------------------------------- /screenshots/4.43.42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.43.42.png -------------------------------------------------------------------------------- /screenshots/4.44.37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.44.37.png -------------------------------------------------------------------------------- /screenshots/4.46.52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.46.52.png -------------------------------------------------------------------------------- /screenshots/4.48.10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cmdbug/ZChat/b812427e237e06265e94c778a5e1116c61c92e6b/screenshots/4.48.10.png --------------------------------------------------------------------------------